summaryrefslogtreecommitdiffstats
path: root/3rdparty/Sabre/DAV/INode.php
blob: c0b96bf53775370a3374259b51196a0b26e48b1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php

/**
 * The INode interface is the base interface, and the parent class of both ICollection and IFile
 * 
 * @package Sabre
 * @subpackage DAV
 * @copyright Copyright (C) 2007-2011 Rooftop Solutions. All rights reserved.
 * @author Evert Pot (http://www.rooftopsolutions.nl/) 
 * @license http://code.google.com/p/sabredav/wiki/License Modified BSD License
 */
interface Sabre_DAV_INode {

    /**
     * Deleted the current node
     *
     * @return void 
     */
    function delete();

    /**
     * Returns the name of the node 
     * 
     * @return string 
     */
    function getName();

    /**
     * Renames the node
     *
     * @param string $name The new name
     * @return void
     */
    function setName($name);

    /**
     * Returns the last modification time, as a unix timestamp 
     * 
     * @return int 
     */
    function getLastModified();

}