ILIAS
release_5-4 Revision v5.4.26-12-gabc799a52e6
◀ ilDoc Overview
Node.php
Go to the documentation of this file.
1
<?
php
2
3
namespace
Sabre\DAV
;
4
14
abstract
class
Node
implements
INode
{
15
23
function
getLastModified
() {
24
25
return
null
;
26
27
}
28
35
function
delete
() {
36
37
throw
new
Exception\Forbidden
(
'Permission denied to delete node'
);
38
39
}
40
48
function
setName
(
$name
) {
49
50
throw
new
Exception\Forbidden
(
'Permission denied to rename file'
);
51
52
}
53
54
}
php
An exception for terminatinating execution or to throw for unit testing.
Sabre\DAV\Exception\Forbidden
Forbidden.
Definition:
Forbidden.php:16
Sabre\DAV\Node
Node class.
Definition:
Node.php:14
Sabre\DAV\Node\setName
setName($name)
Renames the node.
Definition:
Node.php:48
Sabre\DAV\Node\getLastModified
getLastModified()
Returns the last modification time as a unix timestamp.
Definition:
Node.php:23
$name
$name
Definition:
client_example.php:35
Sabre\DAV\INode
The INode interface is the base interface, and the parent class of both ICollection and IFile.
Definition:
INode.php:12
Sabre\DAV
libs
composer
vendor
sabre
dav
lib
DAV
Node.php
Generated on Thu Oct 2 2025 19:01:03 for ILIAS by
1.9.4 (using
Doxyfile
)