Home
last modified time | relevance | path

Searched +full:admin -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang) (Results 1 – 25 of 43) sorted by path

12

/dokuwiki/bin/
H A Ddwpage.php351 $user = 'admin';
/dokuwiki/conf/
H A Ddokuwiki.php60 $conf['superuser'] = '!!not set!!'; //The admin can be user or @group or comma separated list user1,@group1,user2
/dokuwiki/data/
H A Ddeleted.files489 lib/plugins/plugin/admin.php
/dokuwiki/data/pages/wiki/
H A Dwelcome.txt20 Once you're comfortable with creating and editing pages you might want to have a look at the [[this>doku.php?do=admin&page=config|configuration settings]] (be sure to login as superuser first).
/dokuwiki/inc/Action/
H A DAdmin.php9 * Class Admin
11 * Action to show the admin interface or admin plugins
15 class Admin extends AbstractUserAction class
28 // retrieve admin plugin name from $_REQUEST['page']
/dokuwiki/inc/Extension/
H A DAdminPlugin.php6 * Admin Plugin Prototype
8 * Implements an admin interface in a plugin
16 * Return the text that is displayed at the main admin menu
33 * Return the path to the icon being displayed in the main admin menu.
34 * By default it tries to find an 'admin.svg' file in the plugin directory.
48 return DOKU_PLUGIN . $plugin . '/admin.svg';
52 * Determine position in list in admin window
63 * Return true if the plugin should be shown in the admin menu
81 * Output html of the admin page
86 * Checks if access should be granted to this admin plugi
[all...]
H A DPluginController.php16 public const PLUGIN_TYPES = ['auth', 'admin', 'syntax', 'action', 'renderer', 'helper', 'remote', 'cli'];
/dokuwiki/inc/Menu/Item/
H A DAdmin.php6 * Class Admin
8 * Opens the Admin screen. Only shown to managers or above
10 class Admin extends AbstractItem class
/dokuwiki/inc/Menu/
H A DUserMenu.php14 protected $types = ['Profile', 'Admin', 'Register', 'Login'];
/dokuwiki/inc/Ui/
H A DAdmin.php10 * Class Admin
12 * Displays the Admin screen
18 class Admin extends Ui
33 echo '<div class="ui-admin">';
34 echo p_locale_xhtml('admin');
36 $this->showMenu('admin');
47 * @param string $type admin|manager|other
98 * Display a single Admin menu item
107 echo '<a href="' . wl($ID, 'do=admin&amp;page=' . $item['plugin']) . '">';
119 * Build list of admin function
16 class Admin extends Ui { global() class
[all...]
/dokuwiki/inc/
H A Dauth.php534 * @param bool $adminonly when true checks if user is admin
588 * Check if a user is admin
H A Dcommon.php171 // set info about manager/admin status.
1305 notify($id, 'admin', $rev, $summary, $minor, $new_rev);
1337 * @param string $who Who to notify (admin|subscribers|register)
1354 if ($who == 'admin') {
H A Dpageutils.php643 if ($ACT == 'admin') return;
H A Dparserutils.php746 $Renderer->nocache(); // fallback only (and may include admin alerts), don't cache
H A Dpluginutils.php124 * Return the currently operating admin plugin or null
125 * if not on an admin plugin page
135 if (($ACT == 'admin') && ($page = $INPUT->str('page', '', true)) != '') {
136 $pluginlist = plugin_list('admin');
140 $admin_plugin = plugin_load('admin', $page);
H A Dtemplate.php13 use dokuwiki\Ui\Admin;
161 } elseif ($ACT == 'admin') {
162 // try to load admin plugin TOC
178 * Handle the admin page contents
193 $pluginlist = plugin_list('admin');
198 $plugin = plugin_load('admin', $class);
207 $admin = new Admin();
208 $admin->show();
1011 // admin function
[all...]
/dokuwiki/
H A Dinstall.php406 $output .= "\$conf['superuser'] = '@admin';\n";
439 'admin,user',
/dokuwiki/lib/plugins/acl/
H A Daction.php49 $acl = plugin_load('admin', 'acl');
H A Dadmin.php16 * All DokuWiki plugins to extend the admin function
37 * return prompt for admin menu
45 * return sort order for position in admin menu
218 $opts = ['do' => 'admin', 'page' => 'acl'];
369 echo '<input type="hidden" name="do" value="admin" />';
503 // add note if admin
647 echo '<input type="hidden" name="do" value="admin" />';
H A Dremote.php26 $apa = plugin_load('admin', 'acl');
50 $apa = plugin_load('admin', 'acl');
72 $apa = plugin_load('admin', 'acl');
/dokuwiki/lib/plugins/authad/adLDAP/
H A DadLDAP.php44 * much information on other users as you could as a domain admin.
115 * This should be set to a domain admin account
641 // Bind as a domain admin if they've set it up
716 // Cnce we've checked their details, kick back into admin mode if we have it
/dokuwiki/lib/plugins/authad/
H A Dauth.php413 $usermanager = plugin_load("admin", "usermanager", false);
431 $usermanager = plugin_load("admin", "usermanager", false);
531 $usermanager = plugin_load("admin", "usermanager", false);
546 $usermanager = plugin_load("admin", "usermanager", false);
729 // user listing needs admin priviledges
/dokuwiki/lib/plugins/config/
H A Dadmin.php4 * Configuration Manager admin plugin
18 * All DokuWiki plugins to extend the admin function
65 send_redirect(wl($ID, ['do' => 'admin', 'page' => 'config'], true, '&'));
190 echo '<input type="hidden" name="do" value="admin" />';
/dokuwiki/lib/plugins/extension/
H A Daction.php40 /** @var admin_plugin_extension $admin */
41 $admin = plugin_load('admin', 'extension');
42 if (!$admin->isAccessibleByCurrentUser()) {
H A Dadmin.php6 * DokuWiki Plugin extension (Admin Component)
13 * Admin part of the extension manager
32 * @return int sort number in admin menu

12