Home
last modified time | relevance | path

Searched refs:useacl (Results 1 – 3 of 3) sorted by relevance

/dokuwiki/conf/
H A Dlocal.php.dist14 //$conf['useacl'] = 1; //Use Access Control Lists to restrict access?
/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