Home
last modified time | relevance | path

Searched refs:acl (Results 51 – 75 of 148) sorted by path

123456

/plugin/davcal/vendor/sabre/dav/lib/CalDAV/
H A DPlugin.php642 $acl = $this->server->getPlugin('acl');
643 if ($acl) {
644 $acl->checkPrivileges($uri, '{' . self::NS_CALDAV . '}read-free-busy');
H A DSharedCalendar.php79 $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 DSharingPlugin.php282 $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/davcal/vendor/sabre/dav/lib/CalDAV/Principal/
H A DUser.php120 $acl = parent::getACL();
121 $acl[] = [
126 $acl[] = [
131 return $acl;
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/Schedule/
H A DInbox.php198 * @param array $acl
201 function setACL(array $acl) { argument
H A DOutbox.php149 * @param array $acl
152 function setACL(array $acl) { argument
H A DPlugin.php632 $acl = $this->server->getPlugin('acl');
636 … $acl && $acl->checkPrivileges($outboxPath, '{' . self::NS_CALDAV . '}schedule-query-freebusy');
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/Subscriptions/
H A DSubscription.php247 * @param array $acl
250 function setACL(array $acl) { argument
/plugin/davcal/vendor/sabre/dav/lib/CardDAV/
H A DAddressBook.php311 * @param array $acl
314 function setACL(array $acl) { argument
H A DAddressBookHome.php236 * @param array $acl
239 function setACL(array $acl) { argument
H A DCard.php236 * @param array $acl
239 function setACL(array $acl) { argument
/plugin/davcal/vendor/sabre/dav/lib/DAV/
H A DServer.php110 '{DAV:}acl',
111 '{DAV:}acl-restrictions',
112 '{DAV:}inherited-acl-set',
/plugin/davcal/vendor/sabre/dav/lib/DAVACL/FS/
H A DCollection.php24 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 DFile.php23 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
H A DHomeCollection.php78 $acl = [
100 $acl,
161 * @param array $acl
164 function setACL(array $acl) { argument
/plugin/davcal/vendor/sabre/dav/lib/DAVACL/
H A DIACL.php55 * @param array $acl
58 function setACL(array $acl); argument
H A DPlugin.php191 if (is_null($acl)) {
206 if (!in_array($priv, $acl)) {
478 $acl = $node->getACL();
480 $acl[] = [
486 return $acl;
507 $acl = $this->getACL($node);
509 if (is_null($acl)) return null;
515 foreach ($acl as $ace) {
923 $acl = $this->getACL($node);
924 if (!is_null($acl)) {
[all …]
H A DPrincipal.php261 * @param array $acl
264 function setACL(array $acl) { argument
H A DPrincipalCollection.php124 * @param array $acl
127 function setACL(array $acl) { argument
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/Subscriptions/
H A DSubscriptionTest.php53 $acl = [
80 $this->assertEquals($acl, $sub->getACL());
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAVACL/
H A DACLMethodTest.php15 $acl = new Plugin();
17 $server->addPlugin($acl);
33 $acl = new Plugin();
51 $acl = new Plugin();
74 $acl = new Plugin();
102 $acl = new Plugin();
127 $acl = new Plugin();
152 $acl = new Plugin();
185 $acl = new Plugin();
218 $acl = new Plugin();
[all …]
H A DMockACLNode.php11 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/davcal/vendor/sabre/dav/tests/Sabre/DAVACL/FS/
H A DCollectionTest.php10 $this->sut = new Collection($this->path, $this->acl, $this->owner);
27 $this->assertEquals($this->acl, $child->getACL());
39 $this->assertEquals($this->acl, $child->getACL());
H A DFileTest.php15 protected $acl = [ variable in Sabre\\DAVACL\\FS\\FileTest
26 $this->sut = new File($this->path, $this->acl, $this->owner);
50 $this->acl,
H A DHomeCollectionTest.php53 $acl = [
66 $this->assertEquals($acl, $child->getACL());
89 $acl = [
98 $acl,

123456