ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilObjRepositoryRootDAV.php
Go to the documentation of this file.
1 <?php
2 
4 
13 class ilObjRepositoryRootDAV extends ilObjContainerDAV implements Sabre\DAV\ICollection
14 {
17 
26  {
27  $this->repository_root_name = $repository_root_name;
28  parent::__construct(new ilObjRootFolder(ROOT_FOLDER_ID, true), $repo_helper, $dav_helper);
29  }
30 
31  public function setName($name)
32  {
33  throw new Forbidden("It's not allowed to rename the repository root");
34  }
35 
36  public function delete()
37  {
38  throw new Forbidden("It's not allowed to delete the repository root");
39  }
40 
41  public function getName()
42  {
44  }
45 
46  public function getChildCollectionType()
47  {
48  return 'cat';
49  }
50 }
Class ilObjRootFolder.
const ROOT_FOLDER_ID
Definition: constants.php:30
Class ilWebDAVRepositoryHelper.
__construct(string $repository_root_name, ilWebDAVRepositoryHelper $repo_helper, ilWebDAVObjDAVHelper $dav_helper)
Check if given object has valid type and calls parent constructor.
Class ilObjRepositoryRootDAV.
Class ilWebDAVObjDAVHelper.
if($format !==null) $name
Definition: metadata.php:230
Class ilObjContainerDAV.
__construct(Container $dic, ilPlugin $plugin)