* @author HÃ¥kan Sandell */ class Admin extends Ui { protected $menu; /** * Display the UI element * * @return void */ public function show() { $this->menu = $this->getPluginList(); echo '
'; echo p_locale_xhtml('admin'); $this->showSecurityCheck(); $this->showAdminMenu(); $this->showManagerMenu(); $this->showVersion(); $this->showPluginMenu(); echo '
'; } /** * Display the standard admin tasks */ protected function showAdminMenu() { /** @var \DokuWiki_Auth_Plugin $auth */ global $auth; global $INFO; if(!$INFO['isadmin']) return; // user manager only if the auth backend supports it if(!$auth || !$auth->canDo('getUsers') ) { if(isset($this->menu['usermanager'])) unset($this->menu['usermanager']); } echo ''; } /** * Display the standard manager tasks */ protected function showManagerMenu() { echo ''; } /** * Display all the remaining plugins */ protected function showPluginMenu() { if(!count($this->menu)) return; echo p_locale_xhtml('adminplugins'); echo ''; } /** * Display the DokuWiki version */ protected function showVersion() { echo '
'; echo getVersion(); echo '
'; } /** * data security check * * simple check if the 'savedir' is relative and accessible when appended to DOKU_URL * * it verifies either: * 'savedir' has been moved elsewhere, or * has protection to prevent the webserver serving files from it */ protected function showSecurityCheck() { global $conf; if(substr($conf['savedir'], 0, 2) !== './') return; echo ' Your data directory seems to be protected properly.'; } /** * Display a single Admin menu item * * @param array $item */ protected function showMenuItem($item) { global $ID; if(blank($item['prompt'])) return; echo '
  • '; } /** * Build list of admin functions from the plugins that handle them * * Checks the current permissions to decide on manager or admin plugins * * @return array list of plugins with their properties */ protected function getPluginList() { global $INFO; global $conf; $pluginlist = plugin_list('admin'); $menu = array(); foreach($pluginlist as $p) { /** @var \DokuWiki_Admin_Plugin $obj */ if(($obj = plugin_load('admin', $p)) === null) continue; // check permissions if($obj->forAdminOnly() && !$INFO['isadmin']) continue; $menu[$p] = array( 'plugin' => $p, 'prompt' => $obj->getMenuText($conf['lang']), 'icon' => $obj->getMenuIcon(), 'sort' => $obj->getMenuSort(), ); } // sort by name, then sort uasort( $menu, function ($a, $b) { $strcmp = strcasecmp($a['prompt'], $b['prompt']); if($strcmp != 0) return $strcmp; if($a['sort'] == $b['sort']) return 0; return ($a['sort'] < $b['sort']) ? -1 : 1; } ); return $menu; } }