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
}
Sabre\DAV
Sabre\DAV\Node\getLastModified
getLastModified()
Returns the last modification time as a unix timestamp.
Definition:
Node.php:23
Sabre\DAV\Node\setName
setName($name)
Renames the node.
Definition:
Node.php:48
Sabre\DAV\Node
Node class.
Definition:
Node.php:14
Sabre\DAV\INode
The INode interface is the base interface, and the parent class of both ICollection and IFile...
Definition:
INode.php:12
$name
$name
Definition:
client_example.php:35
php
libs
composer
vendor
sabre
dav
lib
DAV
Node.php
Generated on Thu Feb 27 2025 19:01:17 for ILIAS by
1.8.13 (using
Doxyfile
)