Skip to content
Snippets Groups Projects
Admin.php 1.28 KiB
Newer Older
<?php

namespace dokuwiki\Action;

use dokuwiki\Action\Exception\ActionException;

Andreas Gohr's avatar
Andreas Gohr committed
/**
 * Class Admin
 *
 * Action to show the admin interface or admin plugins
 *
 * @package dokuwiki\Action
 */
class Admin extends AbstractUserAction {

    /** @inheritdoc */
    public function minimumPermission() {
        global $INFO;

        if($INFO['ismanager']) {
            return AUTH_READ; // let in check later
        } else {
            return AUTH_ADMIN;
        }
    }

    public function checkPreconditions() {
        parent::checkPreconditions();

        global $INFO;
        if(!$INFO['ismanager']) {
            throw new ActionException('denied');
        }
    }

    public function preProcess() {
        global $INPUT;
        global $INFO;

        // retrieve admin plugin name from $_REQUEST['page']
Andreas Gohr's avatar
Andreas Gohr committed
        if(($page = $INPUT->str('page', '', true)) != '') {
            /** @var $plugin \DokuWiki_Admin_Plugin */
Andreas Gohr's avatar
Andreas Gohr committed
            if($plugin = plugin_getRequestAdminPlugin()) { // FIXME this method does also permission checking
                if(!$plugin->isAccessibleByCurrentUser()) {
                    throw new ActionException('denied');
                }
                $plugin->handle();
            }
        }
    }

    public function tplContent() {
        tpl_admin();
    }

}