Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F1820952
Node.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Size
1 KB
Subscribers
None
Node.php
View Options
<?php
namespace
Sabre\DAV\FS
;
use
Sabre\DAV
;
use
Sabre\HTTP\URLUtil
;
/**
* Base node-class
*
* The node class implements the method used by both the File and the Directory classes
*
* @copyright Copyright (C) 2007-2015 fruux GmbH (https://fruux.com/).
* @author Evert Pot (http://evertpot.com/)
* @license http://sabre.io/license/ Modified BSD License
*/
abstract
class
Node
implements
DAV\INode
{
/**
* The path to the current node
*
* @var string
*/
protected
$path
;
/**
* Sets up the node, expects a full path name
*
* @param string $path
*/
function
__construct
(
$path
)
{
$this
->
path
=
$path
;
}
/**
* Returns the name of the node
*
* @return string
*/
function
getName
()
{
list
(,
$name
)
=
URLUtil
::
splitPath
(
$this
->
path
);
return
$name
;
}
/**
* Renames the node
*
* @param string $name The new name
* @return void
*/
function
setName
(
$name
)
{
list
(
$parentPath
,
)
=
URLUtil
::
splitPath
(
$this
->
path
);
list
(,
$newName
)
=
URLUtil
::
splitPath
(
$name
);
$newPath
=
$parentPath
.
'/'
.
$newName
;
rename
(
$this
->
path
,
$newPath
);
$this
->
path
=
$newPath
;
}
/**
* Returns the last modification time, as a unix timestamp
*
* @return int
*/
function
getLastModified
()
{
return
filemtime
(
$this
->
path
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Dec 22, 11:19 PM (2 d, 21 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
905310
Default Alt Text
Node.php (1 KB)
Attached To
rDAVCAL DokuWiki DAVCal PlugIn
Event Timeline
Log In to Comment