summaryrefslogtreecommitdiff
path: root/lib/plugins/extension/helper
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2013-08-10 10:45:29 +0200
committerAndreas Gohr <andi@splitbrain.org>2013-08-10 10:45:29 +0200
commitdf7751c6c456e0107b11d547c159266b470470d9 (patch)
tree8fba8095ea7ebb265f6d16ca6df776600200cb1f /lib/plugins/extension/helper
parentfee60c9e19860de9edb1dd146ec7063bb9eda392 (diff)
downloadrpg-df7751c6c456e0107b11d547c159266b470470d9.tar.gz
rpg-df7751c6c456e0107b11d547c159266b470470d9.tar.bz2
nicer tabs
Diffstat (limited to 'lib/plugins/extension/helper')
-rw-r--r--lib/plugins/extension/helper/gui.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/plugins/extension/helper/gui.php b/lib/plugins/extension/helper/gui.php
index 8577a1696..7ad238af4 100644
--- a/lib/plugins/extension/helper/gui.php
+++ b/lib/plugins/extension/helper/gui.php
@@ -36,7 +36,9 @@ class helper_plugin_extension_gui extends DokuWiki_Plugin {
/* @var Doku_Plugin_Controller $plugin_controller */
global $plugin_controller;
+ echo '<div class="panelHeader">';
echo $this->locale_xhtml('intro_plugins');
+ echo '</div>';
$pluginlist = $plugin_controller->getList('', true);
sort($pluginlist);
@@ -57,7 +59,9 @@ class helper_plugin_extension_gui extends DokuWiki_Plugin {
* Display the template tab
*/
public function tabTemplates() {
+ echo '<div class="panelHeader">';
echo $this->locale_xhtml('intro_templates');
+ echo '</div>';
// FIXME do we have a real way?
$tpllist = glob(DOKU_INC.'lib/tpl/*', GLOB_ONLYDIR);
@@ -82,7 +86,9 @@ class helper_plugin_extension_gui extends DokuWiki_Plugin {
*/
public function tabSearch() {
global $INPUT;
+ echo '<div class="panelHeader">';
echo $this->locale_xhtml('intro_search');
+ echo '</div>';
$form = new Doku_Form(array('action' => $this->tabURL('', array(), '&')));
$form->addElement(form_makeTextField('q', $INPUT->str('q'), 'Search'));
@@ -113,7 +119,9 @@ class helper_plugin_extension_gui extends DokuWiki_Plugin {
* Display the template tab
*/
public function tabInstall() {
+ echo '<div class="panelHeader">';
echo $this->locale_xhtml('intro_install');
+ echo '</div>';
$form = new Doku_Form(array('action' => $this->tabURL('', array(), '&'), 'enctype' => 'multipart/form-data'));
$form->addElement(form_makeTextField('installurl', '', 'Install from URL:', '', 'block'));