Home
last modified time | relevance | path

Searched +full:perm -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang) (Results 1 – 11 of 11) sorted by relevance

/dokuwiki/inc/
H A DActionRouter.php216 $perm = $INFO['perm'];
218 $perm = auth_quickaclcheck($ID);
221 if ($perm < $action->minimumPermission()) {
H A Dsearch.php213 $info['perm'] = auth_quickaclcheck(getNS($info['id']) . ':*');
214 if (empty($opts['skipacl']) && $info['perm'] < AUTH_READ) {
280 $info['perm'] = auth_quickaclcheck(getNS($id) . ':*');
281 if (empty($opts['skipacl']) && $info['perm'] < AUTH_READ) {
540 $item['perm'] = auth_quickaclcheck($item['id'] . ':*');
542 $item['perm'] = auth_quickaclcheck($item['id']); //FIXME check namespace for media files
545 $item['perm'] = AUTH_DELETE;
552 if (empty($opts['skipacl']) && !empty($opts['sneakyacl']) && $item['perm'] < AUTH_READ) return false;
557 if (empty($opts['skipacl']) && $item['perm'] < AUTH_READ) return $return;
H A Dauth.php745 $perm = -1;
766 if ($acl[2] > $perm) {
767 $perm = $acl[2];
770 if ($perm > -1) {
772 return (int) $perm;
796 if ($acl[2] > $perm) {
797 $perm = $acl[2];
801 if ($perm != -1) {
802 return (int) $perm;
H A Dcommon.php177 $info['perm'] = auth_quickaclcheck($id);
180 if ($info['perm'] == AUTH_ADMIN) {
192 $info['perm'] = auth_aclcheck($id, '', null);
254 $info['writable'] = (is_writable($info['filepath']) && $info['perm'] >= AUTH_EDIT);
256 $info['writable'] = ($info['perm'] >= AUTH_CREATE);
417 if ($ACT != 'show' || $INFO['perm'] < AUTH_READ || isHiddenPage($ID) || !file_exists($file)) {
H A Dinfoutils.php291 msg('Your current permission for this page is ' . $INFO['perm'], 0);
H A Dmedia.php1457 // FIXME old call: media_printfile($item,$item['perm'],'',true);
1462 // FIXME old call: media_printfile_thumbs($item,$item['perm'],false,true);
/dokuwiki/lib/plugins/acl/
H A Dadmin.php149 foreach ($opt as $who => $perm) {
158 $lines[] = "$where\t$who\t$perm\n";
471 $perm = auth_aclcheck($check, $user, $groups);
475 if ($perm) {
477 if ($perm >= AUTH_DELETE) $names[] = $this->getLang('acl_perm16');
478 if ($perm >= AUTH_UPLOAD) $names[] = $this->getLang('acl_perm8');
479 if ($perm >= AUTH_CREATE) $names[] = $this->getLang('acl_perm4');
481 if ($perm >= AUTH_EDIT) $names[] = $this->getLang('acl_perm2');
482 if ($perm >= AUTH_READ) $names[] = $this->getLang('acl_perm1');
504 if ($perm
[all...]
/dokuwiki/vendor/splitbrain/php-archive/src/
H A DTar.php524 * @param int $perm
530 protected function writeRawFileHeader($name, $uid, $gid, $perm, $size, $mtime, $typeflag = '') argument
555 $perm = sprintf("%6s ", decoct($perm));
559 $data_first = pack("a100a8a8a8a12A12", $name, $perm, $uid, $gid, $size, $mtime);
614 $return['perm'] = OctDec(trim($header['perm']));
653 $fileinfo->setMode($header['perm']);
/dokuwiki/lib/exe/
H A Dmediamanager.php41 $AUTH = $INFO['perm']; // shortcut for historical reasons
/dokuwiki/inc/Remote/
H A DApiCore.php297 $perm = auth_quickaclcheck($pages[$idx]);
298 if ($perm < AUTH_READ || isHiddenPage($pages[$idx]) || !page_exists($pages[$idx])) {
302 $page = new Page($pages[$idx], 0, 0, '', null, $perm);
774 $item['perm'],
/dokuwiki/vendor/geshi/geshi/src/
H A Dgeshi.php3775 $perm = $value !== GESHI_NEVER;
3777 $this->enable_highlighting($perm);
3786 $this->lexic_permissions[$flag][$key] = $perm;
3789 $this->lexic_permissions[$flag] = $perm;