Home
last modified time | relevance | path

Searched refs:auth (Results 101 – 125 of 299) sorted by relevance

12345678910>>...12

/plugin/bureaucracy-au/helper/
H A Dactiontemplate.php109 $auth = $this->aclcheck($templatepage); // runas
110 if ($auth >= AUTH_READ ) {
205 $auth = $this->aclcheck($pname);
206 if ($auth < AUTH_CREATE) {
361 $auth = $this->aclcheck($id); // runas
371 $auth,
/plugin/bureaucracyau/helper/
H A Dactiontemplate.php109 $auth = $this->aclcheck($templatepage); // runas
110 if ($auth >= AUTH_READ ) {
205 $auth = $this->aclcheck($pname);
206 if ($auth < AUTH_CREATE) {
361 $auth = $this->aclcheck($id); // runas
371 $auth,
/plugin/translate/
H A Daction.php241 $auth = auth_quickaclcheck($id);
242 $auth_ok = ($auth >= AUTH_CREATE);
243 if (!$auth_ok && $auth >= AUTH_READ) {
353 $auth = auth_quickaclcheck($target_id);
354 $auth_ok = ($auth >= AUTH_CREATE);
355 if (!$auth_ok && $auth >= AUTH_READ) {
/plugin/bureaucracy/
H A Daction.php41 global $auth;
43 foreach($auth->retrieveUsers() as $username => $data) {
/plugin/publish/action/
H A Dmail.php146 global $auth;
147 $userinfo = $auth->getUserData($revinfo['user']);
171 global $auth;
182 $userinfo = $auth->getUserData($revinfo['user']);
/plugin/sfauth/
H A Daction.php26 global $auth;
27 if(!($auth instanceof auth_plugin_sfauth)) {
/plugin/bureaucracyau/
H A Daction.php41 global $auth;
43 foreach($auth->retrieveUsers() as $username => $data) {
/plugin/bureaucracy-au/
H A Daction.php41 global $auth;
43 foreach($auth->retrieveUsers() as $username => $data) {
/plugin/imgpaste/
H A Daction.php59 $auth = auth_quickaclcheck($filename);
60 if ($auth < AUTH_UPLOAD) $this->fail(403, $lang['uploadfail']);
71 $auth,
/plugin/recommend/
H A Daction.php88 global $auth;
91 if (!$auth->canDo('getUsers')) {
105 $logins = $auth->retrieveUsers(0, 10, ['user' => $lookup]);
107 $logins = array_merge($logins, $auth->retrieveUsers(0, 10, ['name' => $lookup]));
/plugin/userimportextended/
H A Dadmin.php27 global $auth;
29 if (!$auth instanceof auth_plugin_authplain) {
34 $this->_auth = $auth;
337 global $auth;
341 $user[0] = ($clean) ? $auth->cleanUser($INPUT->str('userid')) : $INPUT->str('userid');
349 if($clean) $user[4] = array_map(array($auth,'cleanGroup'),$user[4]);
/plugin/do/
H A Dhelper.php187 /** @var DokuWiki_Auth_Plugin $auth */
188 global $auth;
189 if ($auth && !$auth->isCaseSensitive()) {
329 /** @var DokuWiki_Auth_Plugin $auth */
330 global $auth;
332 if (!$auth) {
371 $info = $auth->getUserData($receiver);
/plugin/farm/install/animaltemplate/conf/
H A Dacl.auth.php.dist1 # acl.auth.php
10 # If your auth backend allows special char like spaces in groups
/plugin/usercontact/
H A Daction.php30 global $auth;
33 $userdata = $auth->getUserData($INPUT->str('name'));
/plugin/jdraw/
H A Djdraw.php10 $auth = true; //auth_quickaclcheck("{$namespace}*"); variable
11 if ($auth >= AUTH_DELETE) {
H A Dsyntax.php94 $auth = auth_quickaclcheck("{$namespace}*");
95 if ($auth >= AUTH_DELETE) {
/plugin/jsonrpc/
H A Djsonrpc.php372 $auth = auth_quickaclcheck(getNS($id).':*');
373 if($auth >= AUTH_UPLOAD) {
399 if($overwrite && (!$params['ow'] || $auth < AUTH_DELETE)) {
433 $auth = auth_quickaclcheck(getNS($id).':*');
434 … if($auth < AUTH_DELETE) return new IJR_ERROR(1, "You don't have permissions to delete files.");
682 global $auth;
687 if(!$auth)
691 if($auth->canDo('external'))
693 return $auth->trustExternal($user,$pass,false);
/plugin/likeit/
H A Dhelper.php28 global $auth;
41 $data = $auth->getUserData($user);
/plugin/glossary/
H A Dajax.php14 $INFO['userinfo'] = $auth->getUserData ($auth->cleanUser ($_SERVER['REMOTE_USER']));
/plugin/dbquery/_test/
H A DHelperTest.php46 global $auth;
49 $auth->createUser('foo', 'bar', 'My Test User', 'foo@example.com', ['one', 'two', 'three']);
/plugin/tiledblog/
H A Dajax.php16 $INFO['userinfo'] = $auth->getUserData ($auth->cleanUser ($_SERVER['REMOTE_USER']));
/plugin/listusergroup/
H A Dhelper.php49 global $auth;
58 if (!method_exists($auth,"retrieveUsers")) return '';
67 $getuser = $auth->retrieveUsers(0,-1,array('grps'=>'^'.preg_quote($grp,'/').'$'));
/plugin/starred/
H A Dhelper.php113 global $auth;
117 if ($auth && !$auth->isCaseSensitive()) {
/plugin/bureaucracy/helper/
H A Dactiontemplate.php122 $auth = $this->aclcheck($templatepage); // runas
123 if ($auth >= AUTH_READ ) {
249 $auth = $this->aclcheck($pname);
250 if ($auth < AUTH_CREATE) {
407 $auth = $this->aclcheck($id); // runas
417 $auth,
/plugin/schedule/
H A Dajax.php25 $INFO['userinfo'] = $auth->getUserData ($auth->cleanUser ($_SERVER['REMOTE_USER']));

12345678910>>...12