Home
last modified time | relevance | path

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

123

/dokuwiki/conf/
H A Dacl.auth.php.dist1 # acl.auth.php
10 # If your auth backend allows special char like spaces in groups
H A Ddokuwiki.php65 $conf['auth_security_timeout'] = 900; //time (seconds) auth data is considered valid, set to 0 to recheck on every page view
H A Dmysql.conf.php.example3 * This is an example configuration for the mysql auth plugin.
H A Dusers.auth.php.dist1 # users.auth.php
/dokuwiki/data/
H A Ddeleted.files113 lib/plugins/authmysql/auth.php
179 lib/plugins/authpgsql/auth.php
668 inc/auth/ad.class.php
669 inc/auth/basic.class.php
670 inc/auth/ldap.class.php
671 inc/auth/mysql.class.php
672 inc/auth/pgsql.class.php
673 inc/auth/plain.class.php
813 inc/auth/punbb.class.php
896 inc/auth/lda
[all...]
/dokuwiki/data/pages/wiki/
H A Ddokuwiki.txt3 [[doku>wiki:dokuwiki|{{wiki:dokuwiki-128.png }}]] DokuWiki is a simple to use and highly versatile Open Source [[wp>wiki]] software that doesn't require a database. It is loved by users for its clean and readable [[wiki:syntax]]. The ease of maintenance, backup and integration makes it an administrator's favorite. Built in [[doku>acl|access controls]] and [[doku>auth|authentication connectors]] make DokuWiki especially useful in the enterprise context and the large number of [[doku>plugins]] contributed by its vibrant community allow for a broad range of use cases beyond a traditional wiki.
/dokuwiki/
H A Dfeed.php
/dokuwiki/inc/Action/
H A DAbstractAclAction.php22 global $auth;
24 if (!$auth instanceof AuthPlugin) throw new ActionAclRequiredException();
H A DLogin.php11 * The login form. Actual logins are handled in inc/auth.php
H A DLogout.php29 /** @var AuthPlugin $auth */
30 global $auth;
31 if (!$auth->canDo('logout')) throw new ActionDisabledException();
H A DProfile.php31 /** @var AuthPlugin $auth */
32 global $auth;
33 if (!$auth->canDo('Profile')) throw new ActionDisabledException();
H A DProfileDelete.php29 /** @var AuthPlugin $auth */
30 global $auth;
31 if (!$auth->canDo('delUser')) throw new ActionDisabledException();
H A DRegister.php31 /** @var AuthPlugin $auth */
32 global $auth;
35 if (!$auth->canDo('addUser')) throw new ActionDisabledException();
41 if (register()) { // FIXME could be moved from auth to here
H A DResendpwd.php31 /** @var AuthPlugin $auth */
32 global $auth;
36 if (!$auth->canDo('modPass')) throw new ActionDisabledException();
59 * - validating the password reset auth token
71 /* @var AuthPlugin $auth */
72 global $auth;
100 $userinfo = $auth->getUserData($user, $requireGroups = false);
117 if (!$auth->triggerUserMod('modify', [$user, ['pass' => $pass]])) {
123 if (!$auth->triggerUserMod('modify', [$user, ['pass' => $pass]])) {
146 $user = trim($auth
[all...]
/dokuwiki/inc/
H A DAjax.php286 $AUTH = auth_quickaclcheck("$ns:*");
287 if ($AUTH >= AUTH_UPLOAD) {
294 if (isset($_FILES['qqfile']['tmp_name'])) $res = media_upload($NS, $AUTH, $_FILES['qqfile']);
295 if ($INPUT->get->has('qqfile')) $res = media_upload_xhr($NS, $AUTH);
H A DPassHash.php518 * @link http://docs.djangoproject.com/en/dev/topics/auth/#passwords
536 * @link http://docs.djangoproject.com/en/dev/topics/auth/#passwords
H A Dauth.php26 * Initialize the auth system.
30 * This used to be the main() of the auth.php
40 /* @var AuthPlugin $auth */
41 global $auth;
52 // try to load auth backend from plugins
53 foreach ($plugin_controller->getList('auth') as $plugin) {
55 $auth = $plugin_controller->load('auth', $plugin);
60 if (!$auth instanceof AuthPlugin) {
65 if ($auth
[all...]
H A Dcommon.php187 // if some outside auth were used only REMOTE_USER is set
1661 /** @var AuthPlugin $auth */
1662 global $auth;
1697 if ($auth instanceof AuthPlugin) {
1698 $info = $auth->getUserData($username);
1721 if (!isset($info) && $auth instanceof AuthPlugin) {
1722 $info = $auth->getUserData($username);
/dokuwiki/inc/Extension/
H A DAuthPlugin.php6 * Auth Plugin Prototype
19 * Possible things an auth backend module may be able to
34 'external' => false, // does the module do external auth checking?
35 'logout' => true, // can the user logout again? (eg. not possible with HTTP auth)
173 * party cookies or Apache auth mechanisms and replaces
192 * @return bool true on successful auth,
210 $_SESSION[DOKU_COOKIE]['auth']['user'] = $user;
211 $_SESSION[DOKU_COOKIE]['auth']['pass'] = $pass;
212 $_SESSION[DOKU_COOKIE]['auth']['info'] = $USERINFO;
457 return ($_SESSION[DOKU_COOKIE]['auth']['tim
[all...]
H A DPluginController.php16 public const PLUGIN_TYPES = ['auth', 'admin', 'syntax', 'action', 'renderer', 'helper', 'remote', 'cli'];
/dokuwiki/inc/Remote/
H A DApiCore.php137 /** @var AuthPlugin $auth */
138 global $auth;
141 if (!$auth instanceof AuthPlugin) return 0;
145 if ($auth->canDo('external')) {
146 $ok = $auth->trustExternal($user, $pass, false);
174 global $auth;
176 if (!$auth instanceof AuthPlugin) return 0;
210 /** @var AuthPlugin $auth */
211 global $auth;
219 $userinfo = $auth
[all...]
/dokuwiki/inc/Subscriptions/
H A DBulkSubscriptionSender.php31 /** @var AuthPlugin $auth */
32 global $auth;
61 $USERINFO = $auth->getUserData($user);
H A DSubscriberManager.php241 /** @var AuthPlugin $auth */
242 global $auth;
256 $userinfo = $auth->getUserData($user);
/dokuwiki/inc/Ui/
H A DMediaDiff.php127 $auth = auth_quickaclcheck("$ns:*");
129 if ($auth < AUTH_READ || !$this->id || !$conf['mediarevisions']) return;
239 $auth = auth_quickaclcheck("$ns:*");
267 media_preview($this->id, $auth, $rev1, $rev1Meta); // $auth not used in media_preview()?
271 media_preview($this->id, $auth, $rev2, $rev2Meta);
277 media_preview_buttons($this->id, $auth, $rev1); // $auth used in media_preview_buttons()
281 media_preview_buttons($this->id, $auth, $rev2);
H A DUserProfile.php25 /** @var AuthPlugin $auth */
26 global $auth;
42 if ($auth->canDo('delUser') && actionOK('profile_delete')) {
77 /** @var AuthPlugin $auth */
78 global $auth;
95 if (!$auth->canDo('modName')) $attr['disabled'] = 'disabled';
104 if (!$auth->canDo('modMail')) $attr['disabled'] = 'disabled';
112 if ($auth->canDo('modPass')) {

123