-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathaction.php
64 lines (58 loc) · 1.76 KB
/
action.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?php
use dokuwiki\Extension\ActionPlugin;
use dokuwiki\Extension\EventHandler;
use dokuwiki\Extension\Event;
/**
* Changes Plugin: List the most recent changes of the wiki
*
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
* @author Andreas Gohr <[email protected]>
* @author Mykola Ostrovskyy <[email protected]>
*/
/**
* Class action_plugin_changes
*/
class action_plugin_changes extends ActionPlugin
{
/**
* Register callbacks
* @param EventHandler $controller
*/
public function register(EventHandler $controller)
{
$controller->register_hook('PARSER_CACHE_USE', 'BEFORE', $this, 'beforeParserCacheUse');
}
/**
* Handle PARSER_CACHE_USE:BEFORE event
* @param Event $event
*/
public function beforeParserCacheUse($event)
{
global $ID;
$cache = $event->data;
if (isset($cache->mode) && ($cache->mode == 'xhtml')) {
$depends = p_get_metadata($ID, 'relation depends');
if (!empty($depends) && isset($depends['rendering'])) {
$this->addDependencies($cache, array_keys($depends['rendering']));
}
}
}
/**
* Add extra dependencies to the cache
*/
protected function addDependencies($cache, $depends)
{
// Prevent "Warning: in_array() expects parameter 2 to be array, null given"
if (!is_array($cache->depends)) {
$cache->depends = [];
}
if (!array_key_exists('files', $cache->depends)) {
$cache->depends['files'] = [];
}
foreach ($depends as $file) {
if (!in_array($file, $cache->depends['files']) && @file_exists($file)) {
$cache->depends['files'][] = $file;
}
}
}
}