ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
ICollection.php
Go to the documentation of this file.
1 <?php
2 
3 namespace Sabre\DAV;
4 
14 interface ICollection extends INode {
15 
40  function createFile($name, $data = null);
41 
48  function createDirectory($name);
49 
59  function getChild($name);
60 
66  function getChildren();
67 
74  function childExists($name);
75 
76 }
childExists($name)
Checks if a child-node with the specified name exists.
getChildren()
Returns an array with all the child nodes.
The ICollection Interface.
Definition: ICollection.php:14
The INode interface is the base interface, and the parent class of both ICollection and IFile...
Definition: INode.php:12
createFile($name, $data=null)
Creates a new file in the directory.
createDirectory($name)
Creates a new subdirectory.
getChild($name)
Returns a specific child node, referenced by its name.
$data
Definition: bench.php:6