Page MenuHomePhabricator

MockACLNode.php
No OneTemporary

MockACLNode.php

<?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

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)

Event Timeline