Home
last modified time | relevance | path

Searched refs:auth (Results 201 – 225 of 299) sorted by last modified time

12345678910>>...12

/plugin/sneakyindexfix/_test/
H A Dmain.test.php12 global $auth;
17 $this->oldAuth = $auth;
34 global $auth;
36 $auth = $this->oldAuth;
/plugin/sneakyindexfix/
H A Daction.php44 global $auth;
52 if(!$auth) return AUTH_NONE;
57 if(!$auth->isCaseSensitive()) {
61 $user = auth_nameencode($auth->cleanUser($user));
62 $groups = array_map(array($auth, 'cleanGroup'), (array) $groups);
86 if(!$auth->isCaseSensitive() && $acl[1] !== '@ALL') {
/plugin/usercontact/
H A Daction.php30 global $auth;
33 $userdata = $auth->getUserData($INPUT->str('name'));
/plugin/autogroup/
H A Daction.php83 global $auth;
84 if (!$auth || !$auth->canDo('getUsers') || !$auth->canDo('modGroups')) {
101 global $auth;
107 $oldinfo = $auth->getUserData($user);
143 if ($auth->triggerUserMod('modify', array($user, $changes))) {
162 global $auth;
163 if (!$auth || !$auth->canDo('getUsers') || !$auth->canDo('modGroups')) {
170 $userCount = $auth->getUserCount();
171 $userData = $auth->retrieveUsers(0, $userCount, array());
/plugin/authsmartcard/
H A DREADME.md39 RedirectMatch ^/$ https://YOUR_DOMAIN/DOKUWIKI_PATH/lib/plugins/authsmartcard/auth/
44 To log on with your client certificate, follow this link: [[lib/plugins/authsmartcard/auth/|Authent…
/plugin/vkeyboard/
H A Dvkeyboard.js.unc1577 * @auth: http://www.scottklarr.com/topic/425/
/plugin/authsaml/
H A Daction.php58 global $ACT, $auth;
76 $auth->sucess = false;
101 global $auth;
H A Dsaml.php38 global $auth, $conf;
80 global $auth;
201 global $auth;
208 global $auth;
209 if ($auth->canDo('addUser')) {
225 global $auth, $conf;
230 if ($auth->canDo('modName')) {
235 if ($auth->canDo('modMail')) {
240 if ($auth->canDo('modGroups')) {
258 global $auth;
[all …]
/plugin/randominc/
H A Dsyntax.php222 global $INFO, $auth;
225 $userdata = $auth->getUserData($user);
/plugin/authfacebook/
H A DREADME1 A Dokuwiki auth plugin for login via Facebook
/plugin/swiftmail/Swift/Connection/
H A DSMTP.php200 public function attachAuthenticator(Swift_Authenticator $auth) argument
202 $this->authenticators[$auth->getAuthExtensionName()] = $auth;
206 $log->add("Authentication mechanism '" . $auth->getAuthExtensionName() . "' attached.");
/plugin/aclregex/
H A DREADME.md9 Install the plugin; any entries in `acl.auth.php` will now recognise PHP
H A Daction.php52 global $auth; // @var DokuWiki_Auth_Plugin $auth The global authentication handler
62 if (! $auth) {
86 if (! $auth->isCaseSensitive()) {
90 $user = auth_nameencode($auth->cleanUser($user));
91 $groups = array_map(array($auth, 'cleanGroup'), (array) $groups);
228 global $auth; // @var DokuWiki_Auth_Plugin $auth The global authentication handler
235 if (! $auth->isCaseSensitive() && $acl_subject !== '@ALL') {
/plugin/fckg/fckeditor/editor/filemanager/connectors/php/
H A Dcommands.php547 $auth = 0;
549 list($top_level,$auth) = explode(';;',$_REQUEST['TopLevel']);
/plugin/authsmf20/
H A Daction.php40 global $auth, $conf;
52 $data = $auth->getUserData($event->data['username']);
/plugin/autologoff/
H A Dhelper.php74 global $auth;
81 $info = $auth->getUserData($_SERVER['REMOTE_USER']);
/plugin/authsplit/
H A DREADME7 NOTE: This auth plugin requires DokuWiki WeatherWax (2013-05-10a) or later!
12 authsplit, while technically being an auth plugin, does NOT do any
14 method calls among TWO other auth plugins that will do the actual work:
15 - a PRIMARY auth plugin that will be used for VALIDATION of login names and
19 - a SECONDARY auth plugin that supplies ADDITIONAL user information such as
24 particularly useful auth plugin with an auth plugin that is more powerful, yet
27 The example that comes to mind is to use authhttp as PRIMARY auth plugin and
28 authplain as SECONDARY auth plugin, thereby combining the advantages of reusing
29 HTTP authentication information with an auth plugi
[all...]
H A Dplugin.info.txt6 desc Splits DokuWiki authentication among auth plugins
/plugin/cacherevisionseraser/
H A DREADME.md116 * Removed auth mechanism (Doku Wiki don�t allow non-admin users to access admins plug-ins anyway), …
/plugin/authvk/
H A Daction.php29 global $auth;
119 if(($auth->getUserData($vk_login) == false) and (!empty($vk_fullname)) ){
120 $auth->triggerUserMod('create', array($vk_login, $vk_pass, $vk_fullname, $vk_email));
/plugin/authplaincas/
H A Daction.php50 global $auth;
79 if ($auth && $auth->canDo('modPass') && actionOK('resendpwd')) {
88 global $auth;
89 $auth->logIn();
107 global $ACT, $auth, $USERINFO, $MSG;
112 !($auth && $auth->canDo('modPass') && actionOK('resendpwd'))
/plugin/groupmanager/
H A Dsyntax.php74 global $auth;
78 if (!isset($auth)) {
80 } else if (!$auth->canDo('getUsers')) {
85 $this->_auth = & $auth;
394 if (!method_exists($auth, "retrieveUsers")) return false;
843 global $auth;
845 $user[0] = ($clean) ? $auth->cleanUser($_REQUEST['userid']) : $_REQUEST['userid'];
852 if ($clean) $user[4] = array_map(array($auth, 'cleanGroup'), $user[4]);
/plugin/vbsso/includes/
H A Dapi.php67 … $auth = (class_exists('auth_plugin_authplain')) ? new auth_plugin_authplain() : new auth_plain();
76 if (!$user = $auth->getUserData($json[SHAREDAPI_EVENT_FIELD_USERNAME]) and $create_user) {
77 …if ($auth->createUser($json[SHAREDAPI_EVENT_FIELD_USERNAME], '', $json[SHAREDAPI_EVENT_FIELD_USERN…
79 $user = $auth->getUserData($json[SHAREDAPI_EVENT_FIELD_USERNAME]);
164 … $auth = (class_exists('auth_plugin_authplain')) ? new auth_plugin_authplain() : new auth_plain();
165 $auth->modifyUser($json[SHAREDAPI_EVENT_FIELD_USERNAME], $changes);
266 global $conf, $auth, $USERINFO;
268 if (!$auth) {
271 $USERINFO = $auth->getUserData($user);
/plugin/vbsso/
H A DREADME.md30 * Installed DokuWiki default auth plugin `authplain`.
/plugin/avatar/
H A Dhelper.php45 global $auth;
58 $userinfo = $auth->getUserData($user);

12345678910>>...12