Home
last modified time | relevance | path

Searched refs:perm (Results 1 – 10 of 10) sorted by path

/dokuwiki/inc/
H A DActionRouter.php216 $perm = $INFO['perm'];
218 $perm = auth_quickaclcheck($ID);
221 if ($perm < $action->minimumPermission()) {
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;
/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/inc/lang/ca-valencia/
H A Ddenied.txt
/dokuwiki/inc/lang/gl/
H A Dsubscr_form.txt
/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/lib/plugins/acl/lang/gl/
H A Dhelp.txt
/dokuwiki/lib/plugins/popularity/lang/gl/
H A Dintro.txt
/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;
/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']);