ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
INode.php
Go to the documentation of this file.
1<?php
2
3namespace Sabre\DAV;
4
12interface INode {
13
19 function delete();
20
28 function getName();
29
36 function setName($name);
37
44 function getLastModified();
45
46}
An exception for terminatinating execution or to throw for unit testing.
The INode interface is the base interface, and the parent class of both ICollection and IFile.
Definition: INode.php:12
getLastModified()
Returns the last modification time, as a unix timestamp.
getName()
Returns the name of the node.
setName($name)
Renames the node.