Home
last modified time | relevance | path

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

/dokuwiki/inc/Action/
H A DAbstractAclAction.php11 * An action that requires the ACL subsystem to be enabled (eg. useacl=1)
23 if (!$conf['useacl']) throw new ActionAclRequiredException();
/dokuwiki/conf/
H A Dlocal.php.dist14 //$conf['useacl'] = 1; //Use Access Control Lists to restrict access?
H A Ddokuwiki.php55 $conf['useacl'] = 0; //Use Access Control Lists to restrict access?
/dokuwiki/lib/tpl/dokuwiki/
H A Dtpl_header.php45 <?php if ($conf['useacl']) : ?>
/dokuwiki/inc/Ui/
H A DEditor.php127 if ($conf['useacl'] && $INPUT->server->str('REMOTE_USER')) {
/dokuwiki/inc/
H A Dpageutils.php753 * @param bool $useacl only return pages readable by the current user, false to ignore ACLs argument
756 function page_findnearest($page, $useacl = true)
765 if (page_exists($pageid) && (!$useacl || auth_quickaclcheck($pageid) >= AUTH_READ)) {
H A Dtemplate.php377 if ($conf['useacl'] && $INPUT->server->str('REMOTE_USER')) {
1664 * @param bool $useacl Include the page only if the ACLs check out?
1667 function tpl_include_page($pageid, $print = true, $propagate = false, $useacl = true)
1670 $pageid = page_findnearest($pageid, $useacl);
1671 } elseif ($useacl && auth_quickaclcheck($pageid) == AUTH_NONE) {
1582 tpl_include_page($pageid, $print = true, $propagate = false, $useacl = true) global() argument
H A Dauth.php50 if (!$conf['useacl']) return false;
672 if (!$conf['useacl']) return AUTH_UPLOAD;
720 if (!$conf['useacl']) return AUTH_UPLOAD;
H A Dinfoutils.php36 if ($conf['useacl'] && !$INFO['ismanager']) return;
H A Dcommon.php1360 if ($conf['useacl'] && $INPUT->server->str('REMOTE_USER') && $minor) return false; //skip minors
/dokuwiki/lib/plugins/popularity/
H A Dhelper.php150 $data['conf_useacl'] = $conf['useacl'];
/dokuwiki/inc/Remote/
H A DApi.php171 if (!$conf['useacl']) return; // ACL is not enabled, so we can't check users
H A DApiCore.php140 if (!$conf['useacl']) return 0;
175 if (!$conf['useacl']) return 0;
/dokuwiki/inc/File/
H A DPageFile.php129 $is_minor_change = ($minor && $conf['useacl'] && $INPUT->server->str('REMOTE_USER'));
/dokuwiki/lib/plugins/config/settings/
H A Dconfig.metadata.php121 $meta['useacl'] = ['onoff', '_caution' => 'danger'];
/dokuwiki/
H A Dfeed.php
H A Dinstall.php405 $output .= '$conf[\'useacl\'] = 1' . ";\n";