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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
<?php
/**
* DokuWiki Plugin extension (Helper Component)
*
* @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html
* @author Andreas Gohr <andi@splitbrain.org>
*/
// must be run within Dokuwiki
if(!defined('DOKU_INC')) die();
/**
* Class helper_plugin_extension_list takes care of the overall GUI
*/
class helper_plugin_extension_gui extends DokuWiki_Plugin {
protected $tabs = array('plugins', 'templates', 'search');
/**
* display the plugin tab
*/
public function tabPlugins(){
/* @var Doku_Plugin_Controller $plugin_controller */
global $plugin_controller;
echo $this->locale_xhtml('intro_plugins');
$pluginlist = $plugin_controller->getList('', true);
/* @var helper_plugin_extension_extension $extension */
$extension = $this->loadHelper('extension_extension');
/* @var helper_plugin_extension_list $list */
$list = $this->loadHelper('extension_list');
$list->start_form();
foreach ($pluginlist as $name) {
$extension->setExtension($name, false);
$list->add_row($extension, $name == $this->infoFor);
}
$list->end_form();
$list->render();
}
/**
* Display the template tab
*/
public function tabTemplates(){
echo $this->locale_xhtml('intro_templates');
// FIXME do we have a real way?
$tpllist = glob(DOKU_INC.'lib/tpl/*', GLOB_ONLYDIR);
$tpllist = array_map('basename', $tpllist);
/* @var helper_plugin_extension_extension $extension */
$extension = $this->loadHelper('extension_extension');
/* @var helper_plugin_extension_list $list */
$list = $this->loadHelper('extension_list');
$list->start_form();
foreach ($tpllist as $name) {
$extension->setExtension($name, true);
$list->add_row($extension, $name == $this->infoFor);
}
$list->end_form();
$list->render();
}
/**
* Display the search tab
*/
public function tabSearch(){
echo $this->locale_xhtml('intro_search');
}
/**
* Print the tab navigation
*
* @fixme style active one
*/
public function tabNavigation() {
echo '<ul class="tabs">';
foreach(array('plugins', 'templates', 'search') as $tab) {
$url = $this->tabURL($tab);
if($this->currentTab() == $tab) {
$class = 'class="active"';
} else {
$class = '';
}
echo '<li '.$class.'><a href="'.$url.'">'.$this->getLang('tab_'.$tab).'</a></li>';
}
echo '</ul>';
}
/**
* Return the currently selected tab
*
* @return string
*/
public function currentTab() {
global $INPUT;
$tab = $INPUT->str('tab', 'plugins', true);
if(!in_array($tab, $this->tabs)) $tab = 'plugins';
return $tab;
}
/**
* Create an URL inside the extension manager
*
* @param string $tab tab to load, empty for current tab
* @param array $params associative array of parameter to set
*
* @return string
*/
public function tabURL($tab = '', $params = array()) {
global $ID;
if(!$tab) $tab = $this->currentTab();
$defaults = array(
'do' => 'admin',
'page' => 'extension',
'tab' => $tab,
);
return wl($ID, array_merge($defaults, $params));
}
}
|