ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
AclRestrictions.php
Go to the documentation of this file.
1 <?php
2 
4 
7 
17 class AclRestrictions implements XmlSerializable {
18 
38  function xmlSerialize(Writer $writer) {
39 
40  $writer->writeElement('{DAV:}grant-only');
41  $writer->writeElement('{DAV:}no-invert');
42 
43  }
44 
45 }
Objects implementing XmlSerializable can control how they are represented in Xml. ...
xmlSerialize(Writer $writer)
The xmlSerialize method is called during xml writing.
writeElement($name, $content=null)
Write a full element tag and it&#39;s contents.
Definition: Writer.php:189
The XML Writer class.
Definition: Writer.php:31