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 – 25 of 33) sorted by relevance

12

/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/_test/tests/Remote/
H A DApiTest.php48 $conf['useacl'] = 0;
138 $conf['useacl'] = 1;
147 $conf['useacl'] = 1;
158 $conf['useacl'] = 1;
170 $conf['useacl'] = 1;
210 $conf['useacl'] = 1;
244 $conf['useacl'] = 1;
275 $conf['useacl'] = 1;
313 $conf['useacl'] = 1;
324 $conf['useacl'] = 1;
[all …]
H A DApiCoreAclCheckTest.php43 $conf['useacl'] = 0;
69 $conf['useacl'] = 1;
H A DJsonRpcServerTest.php22 $conf['useacl'] = 0;
H A DXmlRpcServerTest.php19 $conf['useacl'] = 0;
H A DApiCoreTest.php39 $conf['useacl'] = 0;
145 $conf['useacl'] = 1;
941 $conf['useacl'] = 1;
/dokuwiki/_test/conf/
H A Dlocal.php7 $conf['useacl'] = 1; //Use Access Control Lists to restrict access?
/dokuwiki/conf/
H A Dlocal.php.dist14 //$conf['useacl'] = 1; //Use Access Control Lists to restrict access?
/dokuwiki/_test/tests/inc/
H A Dchangelog_getlastrevisionat.test.php138 $oldUseacl = $conf['useacl'];
142 $conf['useacl'] = 1;
168 $conf['useacl'] = $oldUseacl;
H A Dauth_aclcheck.test.php27 $conf['useacl'] = 1;
59 $conf['useacl'] = 1;
92 $conf['useacl'] = 1;
145 $conf['useacl'] = 1;
192 $conf['useacl'] = 1;
240 $conf['useacl'] = 1;
H A Dauth_aclcheck_caseinsensitive.test.php34 $conf['useacl'] = 1;
97 $conf['useacl'] = 1;
H A Dpageutils_findnearest.test.php15 $conf['useacl'] = 1;
H A Dfulltext_backlinks.test.php46 $conf['useacl'] = 1;
H A Dfulltext_mediause.test.php59 $conf['useacl'] = 1;
/dokuwiki/_test/tests/Action/
H A DActionTest.php104 $conf['useacl'] = 1;
139 $conf['useacl'] = 1;
148 $conf['useacl'] = 0;
172 $conf['useacl'] = 1;
/dokuwiki/_test/tests/Feed/
H A DFeedMediaProcessorTest.php43 $conf['useacl'] = 1;
H A DFeedPageProcessorTest.php65 $conf['useacl'] = 1;
/dokuwiki/lib/tpl/dokuwiki/
H A Dtpl_header.php45 <?php if ($conf['useacl']) : ?>
/dokuwiki/inc/Feed/
H A DFeedItemProcessor.php121 if ($conf['useacl'] && $auth instanceof AuthPlugin) {
/dokuwiki/lib/plugins/usermanager/_test/
H A DRemoteApiTest.php33 $conf['useacl'] = 1;
/dokuwiki/inc/Remote/
H A DApi.php171 if (!$conf['useacl']) return; // ACL is not enabled, so we can't check users
/dokuwiki/inc/
H A Dpageutils.php754 * @param bool $useacl only return pages readable by the current user, false to ignore ACLs
757 function page_findnearest($page, $useacl = true) argument
766 if (page_exists($pageid) && (!$useacl || auth_quickaclcheck($pageid) >= AUTH_READ)) {
H A Dtemplate.php378 if ($conf['useacl'] && $INPUT->server->str('REMOTE_USER')) {
1666 * @param bool $useacl Include the page only if the ACLs check out?
1669 function tpl_include_page($pageid, $print = true, $propagate = false, $useacl = true) argument
1672 $pageid = page_findnearest($pageid, $useacl);
1673 } elseif ($useacl && auth_quickaclcheck($pageid) == AUTH_NONE) {
/dokuwiki/inc/Ui/
H A DEditor.php126 if ($conf['useacl'] && $INPUT->server->str('REMOTE_USER')) {
/dokuwiki/lib/plugins/popularity/
H A Dhelper.php150 $data['conf_useacl'] = $conf['useacl'];

12