| /plugin/davcal/vendor/sabre/dav/tests/Sabre/DAVACL/ |
| H A D | ACLMethodTest.php | 15 $acl = new Plugin(); 17 $server->addPlugin($acl); 19 $acl->httpAcl($server->httpRequest, $server->httpResponse); 33 $acl = new Plugin(); 40 $server->addPlugin($acl); 42 $acl->httpACL($server->httpRequest, $server->httpResponse); 51 $acl = new Plugin(); 60 $server->addPlugin($acl); 62 $this->assertFalse($acl->httpACL($server->httpRequest, $server->httpResponse)); 74 $acl = new Plugin(); [all …]
|
| H A D | SimplePluginTest.php | 134 $acl = new Plugin(); 136 $server->addPlugin($acl); 138 $this->assertEquals(array(),$acl->getCurrentUserPrincipals()); 152 $acl = new Plugin(); 154 $server->addPlugin($acl); 162 $this->assertEquals(array('principals/admin'),$acl->getCurrentUserPrincipals()); 179 $acl = new Plugin(); 181 $server->addPlugin($acl); 196 $this->assertEquals($expected,$acl->getCurrentUserPrincipals()); 199 $this->assertEquals($expected,$acl->getCurrentUserPrincipals()); [all …]
|
| H A D | MockACLNode.php | 11 public $acl; variable in Sabre\\DAVACL\\MockACLNode 13 function __construct($name, array $acl = array()) { argument 16 $this->acl = $acl; 40 return $this->acl; 44 function setACL(array $acl) { argument 46 $this->acl = $acl;
|
| /plugin/webdav/vendor/sabre/dav/lib/CalDAV/ |
| D | SharedCalendar.php | 112 $acl = []; 117 $acl[] = [ 122 $acl[] = [ 129 $acl[] = [ 134 $acl[] = [ 141 $acl[] = [ 146 $acl[] = [ 151 $acl[] = [ 156 $acl[] = [ 161 $acl[] = [ [all …]
|
| /plugin/ckgedit/fckeditor/editor/filemanager/connectors/php/ |
| D | check_acl.php | 91 $acl = preg_split('/[ \t]+/', $match); 92 if(!auth_isCaseSensitive() && $acl[1] !== '@ALL') { 93 $acl[1] = utf8_strtolower($acl[1]); 95 if(!in_array($acl[1], $groups)) { 98 if($acl[2] > AUTH_DELETE) $acl[2] = AUTH_DELETE; //no admins in the ACL! 99 if($acl[2] > $perm) { 100 $perm = $acl[2]; 121 $acl = preg_split('/[ \t]+/', $match); 122 if(!auth_isCaseSensitive() && $acl[1] !== '@ALL') { 123 $acl[1] = utf8_strtolower($acl[1]); [all …]
|
| /plugin/ckgdoku/fckeditor/editor/filemanager/connectors/php/ |
| D | check_acl.php | 91 $acl = preg_split('/[ \t]+/', $match); 92 if(!auth_isCaseSensitive() && $acl[1] !== '@ALL') { 93 $acl[1] = utf8_strtolower($acl[1]); 95 if(!in_array($acl[1], $groups)) { 98 if($acl[2] > AUTH_DELETE) $acl[2] = AUTH_DELETE; //no admins in the ACL! 99 if($acl[2] > $perm) { 100 $perm = $acl[2]; 121 $acl = preg_split('/[ \t]+/', $match); 122 if(!auth_isCaseSensitive() && $acl[1] !== '@ALL') { 123 $acl[1] = utf8_strtolower($acl[1]); [all …]
|
| /plugin/bez/mdl/ |
| H A D | Acl.php | 7 protected $acl = array(); variable in dokuwiki\\plugin\\bez\\mdl\\Acl 15 $this->acl = array_fill_keys($columns, BEZ_PERMISSION_DELETE); 17 $this->acl = array_fill_keys($columns, BEZ_PERMISSION_VIEW); 19 $this->acl = array_fill_keys($columns, BEZ_PERMISSION_NONE); 27 if (!array_key_exists($column, $this->acl)) { 31 if ($this->acl[$column] < $perm) { 32 $this->acl[$column] = $perm; 42 $this->acl[$column] = BEZ_PERMISSION_NONE; 48 return $this->acl[$col]; 52 return $this->acl; [all …]
|
| H A D | Task.php | 148 $this->acl->grant('content', BEZ_PERMISSION_CHANGE); 149 $this->acl->grant('plan_date', BEZ_PERMISSION_CHANGE); 150 $this->acl->grant('start_time', BEZ_PERMISSION_CHANGE); 151 $this->acl->grant('finish_time', BEZ_PERMISSION_CHANGE); 152 $this->acl->grant('all_day_event', BEZ_PERMISSION_CHANGE); 153 $this->acl->grant('task_program_id', BEZ_PERMISSION_CHANGE); 154 $this->acl->grant('cost', BEZ_PERMISSION_CHANGE); 158 $this->acl->grant('assignee', BEZ_PERMISSION_CHANGE); 159 $this->acl->grant('participants', BEZ_PERMISSION_CHANGE); 163 $this->acl->grant('content', BEZ_PERMISSION_CHANGE); [all …]
|
| /plugin/elasticsearch/helper/ |
| D | acl.php | 39 $acl = $hlpACL->acl; 40 ksort($acl); 43 if (isset($acl[$id])) { 45 $this->addRule($acl[$id], $rules); 47 if (isset($acl[$id]['@ALL'])) return $rules; 55 if (!$ns && isset($acl['*'])) { 56 $this->addRule($acl['*'], $rules); 58 if (isset($acl['*']['@ALL'])) { 64 if (isset($acl[$ns . ':*'])) { 65 $this->addRule($acl[$ns . ':*'], $rules); [all …]
|
| /plugin/aclinfo/ |
| D | syntax.php | 95 $acl = preg_split('/\s+/',$match); 96 if($acl[2] > AUTH_DELETE) $acl[2] = AUTH_DELETE; //no admins in the ACL! 97 if(!isset($perms[$acl[1]])) $perms[$acl[1]] = $acl[2]; 113 $acl = preg_split('/\s+/',$match); 114 if($acl[2] > AUTH_DELETE) $acl[2] = AUTH_DELETE; //no admins in the ACL! 115 if(!isset($perms[$acl[1]])) $perms[$acl[1]] = $acl[2];
|
| /plugin/davcal/vendor/sabre/dav/lib/DAVACL/FS/ |
| H A D | Collection.php | 24 protected $acl; variable in Sabre\\DAVACL\\FS\\Collection 37 * @param array $acl ACL rules. 40 function __construct($path, array $acl, $owner = null) { argument 43 $this->acl = $acl; 67 return new self($path, $this->acl, $this->owner); 71 return new File($path, $this->acl, $this->owner); 117 return $this->acl; 126 * @param array $acl 129 function setACL(array $acl) { argument
|
| H A D | File.php | 23 protected $acl; variable in Sabre\\DAVACL\\FS\\File 36 * @param array $acl ACL rules. 39 function __construct($path, array $acl, $owner = null) { argument 42 $this->acl = $acl; 87 return $this->acl; 96 * @param array $acl 99 function setACL(array $acl) { argument
|
| /plugin/davcal/vendor/sabre/dav/lib/CalDAV/ |
| H A D | SharedCalendar.php | 79 $acl = parent::getACL(); 80 $acl[] = [ 86 $acl[] = [ 92 $acl[] = [ 98 return $acl; 111 $acl = parent::getChildACL(); 112 $acl[] = [ 119 $acl[] = [ 125 return $acl;
|
| H A D | Calendar.php | 278 $acl = [ 302 $acl[] = [ 307 $acl[] = [ 314 return $acl; 327 $acl = [ 347 $acl[] = [ 352 $acl[] = [ 359 return $acl; 368 * @param array $acl 371 function setACL(array $acl) { argument
|
| H A D | SharingPlugin.php | 282 $acl = $this->server->getPlugin('acl'); 285 if ($acl) { 286 $acl->checkPrivileges($path, '{DAV:}write'); 310 $acl = $this->server->getPlugin('acl'); 313 if ($acl) { 314 $acl->checkPrivileges($path, '{DAV:}write'); 354 $acl = $this->server->getPlugin('acl'); 357 if ($acl) { 358 $acl->checkPrivileges($path, '{DAV:}write'); 382 $acl = $this->server->getPlugin('acl'); [all …]
|
| /plugin/autlogin/ |
| D | script.js | 1 acl = { variable 6 addEvent($('acl__tree'),'click',acl.treehandler); 86 acl.treetoggle(e.target); 101 frm.elements['id'].value = acl.hsc(acl.parseatt(e.target.search)['id']); 103 frm.elements['ns'].value = acl.hsc(acl.parseatt(e.target.search)['ns']); 109 frm2.elements['id'].value = acl.hsc(acl.parseatt(e.target.search)['id']); 111 frm2.elements['ns'].value = acl.hsc(acl.parseatt(e.target.search)['ns']); 117 frm3.elements['id'].value = acl.hsc(acl.parseatt(e.target.search)['id']); 119 frm3.elements['ns'].value = acl.hsc(acl.parseatt(e.target.search)['ns']); 133 addInitEvent(acl.init);
|
| D | ajax.php | 24 $acl = plugin_load('admin','autlogin'); variable 25 $acl->handle(); 42 $data = $acl->_get_tree($ns,$ns); 46 echo $acl->_html_li_acl($item); 48 echo $acl->_html_list_acl($item);
|
| /plugin/nodisp/ |
| D | action.php | 30 $acl = auth_quickaclcheck($ID); 31 if($acl < $matches[1]) { 42 $acl = auth_quickaclcheck($ID); 43 if($acl < $matches[1]) { 54 $acl = auth_quickaclcheck($ID); 55 if($acl < $this->groupLevel($matches[1])) { 66 $acl = auth_quickaclcheck($ID); 67 if($acl < $this->groupLevel($matches[1])) { 80 $acl = auth_quickaclcheck($ID); 81 if($acl < $this->groupLevel($matches[1])) {
|
| /plugin/iptrust2/ |
| D | action.php | 115 $acl = preg_split('/\s+/',$match); 116 if($acl[2] > AUTH_DELETE) $acl[2] = AUTH_DELETE; //no admins in the ACL! 117 if(!isset($perms[$acl[1]])) $perms[$acl[1]] = $acl[2]; 133 $acl = preg_split('/\s+/',$match); 134 if($acl[2] > AUTH_DELETE) $acl[2] = AUTH_DELETE; //no admins in the ACL! 135 if(!isset($perms[$acl[1]])) $perms[$acl[1]] = $acl[2];
|
| /plugin/fckg/fckeditor/editor/filemanager/connectors/php/ |
| D | check_acl.php | 86 $acl = preg_split('/\s+/',$match); 87 if($acl[2] > AUTH_DELETE) $acl[2] = AUTH_DELETE; //no admins in the ACL! 88 if($acl[2] > $perm){ 89 $perm = $acl[2]; 111 $acl = preg_split('/\s+/',$match); 112 if($acl[2] > AUTH_DELETE) $acl[2] = AUTH_DELETE; //no admins in the ACL! 113 if($acl[2] > $perm){ 114 $perm = $acl[2]; 245 $acl = $acl_file; 261 $len = count($acl); [all …]
|
| /plugin/approve/action/ |
| H A D | approve.php | 28 $acl = $this->loadHelper('approve_acl'); 30 if (!$acl->useApproveHere($INFO['id'])) return; 52 $acl = $this->loadHelper('approve_acl'); 54 if (!$acl->useApproveHere($INFO['id'])) return; 69 $acl = $this->loadHelper('approve_acl'); 73 if (!$acl->useApproveHere($INFO['id'])) return; 74 if (!$acl->clientCanApprove($INFO['id'])) return; 90 $acl = $this->loadHelper('approve_acl'); 94 if (!$acl->useApproveHere($INFO['id'])) return; 95 if (!$acl->clientCanMarkReadyForApproval($INFO['id'])) return; [all …]
|
| /plugin/webdav/vendor/sabre/dav/lib/DAVACL/FS/ |
| D | Collection.php | 27 protected $acl; variable in Sabre\\DAVACL\\FS\\Collection 40 * @param array $acl ACL rules. 43 function __construct($path, array $acl, $owner = null) { argument 46 $this->acl = $acl; 70 return new self($path, $this->acl, $this->owner); 74 return new File($path, $this->acl, $this->owner); 107 return $this->acl;
|
| D | File.php | 25 protected $acl; variable in Sabre\\DAVACL\\FS\\File 38 * @param array $acl ACL rules. 41 function __construct($path, array $acl, $owner = null) { argument 44 $this->acl = $acl; 76 return $this->acl;
|
| /plugin/davcal/vendor/sabre/dav/tests/Sabre/DAVACL/Xml/Property/ |
| H A D | ACLTest.php | 13 $acl = new Acl([]); 14 $this->assertInstanceOf('Sabre\DAVACL\Xml\Property\ACL', $acl); 20 $acl = new Acl([]); 21 $xml = (new DAV\Server())->xml->write('{DAV:}root', $acl); 44 $acl = new Acl($privileges); 45 $xml = (new DAV\Server())->xml->write('{DAV:}root', $acl, '/'); 94 $acl = new Acl($privileges); 95 $xml = (new DAV\Server())->xml->write('{DAV:}root', $acl, '/'); 324 $acl = new Acl($privileges); 338 $this->assertEquals($expected, $acl->toHtml($html));
|
| /plugin/sneakyindexfix/ |
| D | action.php | 85 $acl = preg_split('/[ \t]+/', $match); 86 if(!$auth->isCaseSensitive() && $acl[1] !== '@ALL') { 87 $acl[1] = utf8_strtolower($acl[1]); 89 if(!in_array($acl[1], $groups)) { 92 if($acl[2] > AUTH_NONE) {
|