-
Notifications
You must be signed in to change notification settings - Fork 2
/
action.php
46 lines (36 loc) · 1.18 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
<?php
use dokuwiki\Extension\ActionPlugin;
use dokuwiki\Extension\EventHandler;
use dokuwiki\Extension\Event;
/**
* Autostart Plugin: Redirects to the namespace's start page if available
*
* @author Jesús A. Álvarez <[email protected]>
*/
class action_plugin_autostart extends ActionPlugin
{
public function page_exists($id) {
if (function_exists('page_exists'))
return page_exists($id);
else
return @file_exists(wikiFN($id));
}
public function register(EventHandler $controller)
{
$controller->register_hook('ACTION_ACT_PREPROCESS', 'AFTER', $this, 'preprocess', array ());
}
public function preprocess(Event $event, $param)
{
global $conf;
global $ID;
if (!$this->page_exists($ID)) {
if($this->page_exists($ID.':'.$conf['start']))
// start page inside namespace
$id = $ID.':'.$conf['start'];
elseif($this->page_exists($ID.':'.noNS(cleanID($ID))))
// page named like the NS inside the NS
$id = $ID.':'.noNS(cleanID($ID));
if ($id) header('Location: ' . wl($id,'',true));
}
}
}