Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F1821376
MockACLNode.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Size
653 B
Subscribers
None
MockACLNode.php
View Options
<?php
namespace
Sabre\DAVACL
;
use
Sabre\DAV
;
use
Sabre\HTTP
;
class
MockACLNode
extends
DAV\Node
implements
IACL
{
public
$name
;
public
$acl
;
function
__construct
(
$name
,
array
$acl
=
array
())
{
$this
->
name
=
$name
;
$this
->
acl
=
$acl
;
}
function
getName
()
{
return
$this
->
name
;
}
function
getOwner
()
{
return
null
;
}
function
getGroup
()
{
return
null
;
}
function
getACL
()
{
return
$this
->
acl
;
}
function
setACL
(
array
$acl
)
{
$this
->
acl
=
$acl
;
}
function
getSupportedPrivilegeSet
()
{
return
null
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, Dec 23, 8:24 PM (31 m, 56 s ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
914182
Default Alt Text
MockACLNode.php (653 B)
Attached To
rDAVCAL DokuWiki DAVCal PlugIn
Event Timeline
Log In to Comment