ILIAS
release_5-4 Revision v5.4.26-12-gabc799a52e6
|
Public Member Functions | |
getETag () | |
Returns the ETag for a file. More... | |
getLastModified () | |
Returns the last modification time, as a unix timestamp. More... | |
getName () | |
Returns the name of the node. More... | |
Public Member Functions inherited from Sabre\DAV\File | |
put ($data) | |
Replaces the contents of the file. More... | |
get () | |
Returns the data. More... | |
getSize () | |
Returns the size of the file, in bytes. More... | |
getETag () | |
Returns the ETag for a file. More... | |
getContentType () | |
Returns the mime-type for a file. More... | |
Public Member Functions inherited from Sabre\DAV\Node | |
getLastModified () | |
Returns the last modification time as a unix timestamp. More... | |
delete () | |
Deletes the current node. More... | |
setName ($name) | |
Renames the node. More... | |
Definition at line 323 of file ServerPreconditionTest.php.
Sabre\DAV\ServerPreconditionsNode::getETag | ( | ) |
Returns the ETag for a file.
An ETag is a unique identifier representing the current version of the file. If the file changes, the ETag MUST change.
Return null if the ETag can not effectively be determined.
The ETag must be surrounded by double-quotes, so something like this would make a valid ETag:
return '"someetag"';
Implements Sabre\DAV\IFile.
Definition at line 325 of file ServerPreconditionTest.php.
Sabre\DAV\ServerPreconditionsNode::getLastModified | ( | ) |
Returns the last modification time, as a unix timestamp.
Return null if the information is not available.
Implements Sabre\DAV\INode.
Definition at line 331 of file ServerPreconditionTest.php.
Sabre\DAV\ServerPreconditionsNode::getName | ( | ) |
Returns the name of the node.
This is used to generate the url.
Implements Sabre\DAV\INode.
Definition at line 338 of file ServerPreconditionTest.php.