ILIAS
trunk Revision v12.0_alpha-1540-g00f839d5fa1
◀ ilDoc Overview
MountPoint.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\WebDAV\Entity
;
22
23
use Sabre\DAV\ICollection;
24
use Sabre\DAV\INode;
25
use Sabre\DAV\Exception\NotFound;
26
30
class
MountPoint
extends
Container
implements ICollection
31
{
32
#[\Override]
33
public
function
getName
(): string
34
{
35
return
'MountPoint'
;
36
}
37
38
#[\Override]
39
public
function
getChild
($name):
INode
40
{
41
return
$this->
factory
->get($name) ??
throw
new
NotFound($name);
42
}
43
44
}
factory
factory()
Definition:
UITestHelper.php:61
ILIAS\WebDAV\Entity\Container
Definition:
Container.php:32
ILIAS\WebDAV\Entity\MountPoint
Definition:
MountPoint.php:31
ILIAS\WebDAV\Entity\MountPoint\getName
getName()
Definition:
MountPoint.php:33
ILIAS\WebDAV\Entity\MountPoint\getChild
getChild($name)
Definition:
MountPoint.php:39
ILIAS\UI\Component\Tree\Node
Definition:
AsyncNode.php:21
ILIAS\WebDAV\Entity
Definition:
BaseContainer.php:21
components
ILIAS
WebDAV
src
Entity
MountPoint.php
Generated on Wed Jun 3 2026 23:07:35 for ILIAS by
1.9.4 (using
Doxyfile
)