Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F1720909
AceConflict.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Size
861 B
Subscribers
None
AceConflict.php
View Options
<?php
namespace
Sabre\DAVACL\Exception
;
use
Sabre\DAV
;
/**
* This exception is thrown when a client attempts to set conflicting
* permissions.
*
* @copyright Copyright (C) 2007-2015 fruux GmbH (https://fruux.com/).
* @author Evert Pot (http://evertpot.com/)
* @license http://sabre.io/license/ Modified BSD License
*/
class
AceConflict
extends
DAV\Exception\Conflict
{
/**
* Adds in extra information in the xml response.
*
* This method adds the {DAV:}no-ace-conflict element as defined in rfc3744
*
* @param DAV\Server $server
* @param \DOMElement $errorNode
* @return void
*/
function
serialize
(
DAV\Server
$server
,
\DOMElement
$errorNode
)
{
$doc
=
$errorNode
->
ownerDocument
;
$np
=
$doc
->
createElementNS
(
'DAV:'
,
'd:no-ace-conflict'
);
$errorNode
->
appendChild
(
$np
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sat, Nov 23, 10:19 AM (1 d, 20 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
911086
Default Alt Text
AceConflict.php (861 B)
Attached To
rDAVCAL DokuWiki DAVCal PlugIn
Event Timeline
Log In to Comment