ILIAS
trunk Revision v12.0_alpha-1540-g00f839d5fa1
◀ ilDoc Overview
TreeProxy.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\WebDAV\Objects
;
22
26
class
TreeProxy
implements
Proxy
27
{
28
public
function
__construct
(
29
protected
int
$ref_id
,
30
protected
int
$obj_id,
31
protected
string
$title,
32
protected
int
$last_update,
33
protected
Type
$type
34
) {
35
}
36
37
public
function
getRefId
(): ?
int
38
{
39
return
$this->ref_id
;
40
}
41
42
public
function
getObjId
(): ?
int
43
{
44
return
$this->obj_id;
45
}
46
47
public
function
getLastModified
():
int
48
{
49
return
$this->last_update;
50
}
51
52
public
function
getName
(): string
53
{
54
return
$this->title;
55
}
56
57
public
function
setName
(
string
$name): void
58
{
59
$this->title = $name;
60
}
61
62
public
function
getType
():
Type
63
{
64
return
$this->type;
65
}
66
67
}
ILIAS\WebDAV\Objects\TreeProxy
Definition:
TreeProxy.php:27
ILIAS\WebDAV\Objects\TreeProxy\getName
getName()
Definition:
TreeProxy.php:52
ILIAS\WebDAV\Objects\TreeProxy\__construct
__construct(protected int $ref_id, protected int $obj_id, protected string $title, protected int $last_update, protected Type $type)
Definition:
TreeProxy.php:28
ILIAS\WebDAV\Objects\TreeProxy\setName
setName(string $name)
Definition:
TreeProxy.php:57
ILIAS\WebDAV\Objects\TreeProxy\getType
getType()
Definition:
TreeProxy.php:62
ILIAS\WebDAV\Objects\TreeProxy\getLastModified
getLastModified()
Definition:
TreeProxy.php:47
ILIAS\WebDAV\Objects\TreeProxy\getRefId
getRefId()
Definition:
TreeProxy.php:37
ILIAS\WebDAV\Objects\TreeProxy\getObjId
getObjId()
Definition:
TreeProxy.php:42
ILIAS\WebDAV\Objects\Proxy
Definition:
Proxy.php:27
$ref_id
$ref_id
Definition:
ltiauth.php:66
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
ILIAS\WebDAV\Objects
Definition:
FileCreationCallback.php:21
ILIAS\WebDAV\Objects\Type
Type
Definition:
Type.php:27
components
ILIAS
WebDAV
src
Objects
TreeProxy.php
Generated on Wed Jun 3 2026 23:07:35 for ILIAS by
1.9.4 (using
Doxyfile
)