Home
last modified time | relevance | path

Searched refs:auth (Results 1 – 25 of 299) sorted by path

12345678910>>...12

/plugin/404manager/_test/
H A Dmanager.test.php55 $aclReadOnlyFile = constant_parameters::$DIR_RESOURCES . '/acl.auth.read_only.php';
82 $aclReadOnlyFile = constant_parameters::$DIR_RESOURCES . '/acl.auth.read_only.php';
123 $aclReadOnlyFile = constant_parameters::$DIR_RESOURCES . '/acl.auth.read_only.php';
166 $aclReadOnlyFile = constant_parameters::$DIR_RESOURCES . '/acl.auth.read_only.php';
210 $aclReadOnlyFile = constant_parameters::$DIR_RESOURCES . '/acl.auth.read_only.php';
261 $aclReadOnlyFile = constant_parameters::$DIR_RESOURCES . '/acl.auth.read_only.php';
310 $aclReadOnlyFile = constant_parameters::$DIR_RESOURCES . '/acl.auth.read_only.php';
/plugin/acknowledge/admin/
H A Dreport.php91 /** @var AuthPlugin $auth */
92 global $auth;
96 $user = $auth->cleanUser($user);
97 $userinfo = $auth->getUserData($user, true);
/plugin/acknowledge/
H A Dhelper.php139 /** @var AuthPlugin $auth */
140 global $auth;
142 if (!$auth->canDo('getUsers')) {
152 $users = $auth->retrieveUsers();
303 /** @var AuthPlugin $auth */
304 global $auth;
318 array_keys($auth->retrieveUsers(0, 0, ['grps' => substr($item, 1)]))
/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/adfs/phpsaml/
H A DCHANGELOG77 * Be able to get at the auth object the last processed ID
79 * Reset errorReason attribute of the auth object after each Process method
H A DREADME.md597 $auth = new OneLogin_Saml2_Auth();
675 $auth = new OneLogin_Saml2_Auth();
676 $auth->login($newTargetUrl);
770 $errors = $auth->getErrors();
777 if (!$auth->isAuthenticated()) {
911 $errors = $auth->getErrors();
1040 $auth->logout($newTargetUrl);
1103 $auth->login();
1106 $auth->login($returnTo);
1108 $auth->logout();
[all …]
/plugin/adfs/phpsaml/lib/Saml/
H A DAuthRequest.php9 protected $auth; variable in OneLogin_Saml_AuthRequest
19 $this->auth = new OneLogin_Saml2_Auth($settings);
34 $settings = $this->auth->getSettings();
42 $url = OneLogin_Saml2_Utils::redirect($this->auth->getSSOurl(), $parameters, true);
H A DMetadata.php14 $auth = new OneLogin_Saml2_Auth($settings);
15 $this->_settings = $auth->getSettings();
H A DResponse.php15 $auth = new OneLogin_Saml2_Auth($oldSettings);
16 $settings = $auth->getSettings();
/plugin/advanced/lang/en/
H A Dconfig.txt17 | | ''acl.auth.php'' | see [[doku>acl]]…
18 | | ''users.auth.php'' | see [[doku>acl]]…
/plugin/advanced/lang/en/config/
H A Dacl.txt5 Access restrictions are saved in a file called ''conf/acl.auth.php'', which should be writable by t…
13 …ver the //admin// permission of //255// can not be used in the ''conf/acl.auth.php'' file. It is o…
H A Dusers.txt20 * [[doku>auth:plain]]
/plugin/aichat/
H A DEmbeddings.php246 global $auth;
268 if ($auth && auth_quickaclcheck($chunk->getPage()) < AUTH_READ) continue;
H A Dhelper.php78 global $auth;
82 if (!$auth) return true;
/plugin/aichat/vendor/mehrab-wj/tiktoken-php/data/
H A Dvocab.bpe39097 auth ored
41363 auth ors
/plugin/approve/
H A Dadmin.php74 /* @var DokuWiki_Auth_Plugin $auth */
75 global $auth;
122 $user = $auth->getUserData($approver);
136 if ($auth->canDo('getUsers')) {
139 if ($auth->canDo('getGroups')) {
140 foreach($auth->retrieveGroups() as $group) {
144 foreach($auth->retrieveUsers() as $login => $data) {
148 // in case your auth plugin can do groups, but not list them (like the default one),
150 if (!$auth->canDo('getGroups')) {
/plugin/approve/syntax/
H A Dtable.php128 /** @var DokuWiki_Auth_Plugin $auth */
129 global $auth;
220 $user = $auth->getUserData($by);
228 $user = $auth->getUserData($approver);
/plugin/archiveupload/
H A Daction.php235 if(@file_exists($dir.'/'.$fn_new) && (!$_POST['ow'] || $auth < AUTH_DELETE)){
/plugin/authchained/
H A Dplugin.info.txt5 name chained auth plugin
/plugin/authdiscourse/
H A Daction.php40 global $auth, $lang;
42 $loginurl = $auth->getLoginURL();
/plugin/authfacebook/
H A DREADME1 A Dokuwiki auth plugin for login via Facebook
/plugin/authg2fa/
H A Dadmin.php35 global $auth;
39 if (!isset($auth)) {
42 } else if (!$auth->canDo('getUsers')) {
48 $this->_auth = & $auth;
/plugin/authgoogle/google/
H A DGoogle_Client.php69 static $auth; variable in Google_Client
105 self::$auth = new $apiConfig['authClass']();
127 return self::$auth->authenticate($service, $code);
322 self::$auth->revokeToken($token);
334 return self::$auth->verifyIdToken($token);
342 self::$auth->setAssertionCredentials($creds);
373 self::$auth->requestVisibleActions =
405 return Google_Client::$auth;
/plugin/authgoogle/google/io/
H A DGoogle_CurlIO.php63 $request = Google_Client::$auth->sign($request);

12345678910>>...12