3 declare(strict_types=1);
43 public function __construct(
int $user_id = null,
bool $read_only =
false)
47 $this->
user = $DIC->user();
48 $this->
ctrl = $DIC->ctrl();
49 $this->tpl = $DIC[
"tpl"];
50 $this->
toolbar = $DIC->toolbar();
51 $this->
lng = $DIC->language();
52 $this->obj_definition = $DIC[
"objDefinition"];
53 $this->tree = $DIC->repositoryTree();
56 $this->user_id = $this->
user->getId();
57 if (!is_null($user_id)) {
61 $this->own_id = $this->retriever->getMaybeInt(self::P_OWNID, 0);
66 $this->
ctrl->getNextClass($this);
67 $cmd = $this->
ctrl->getCmd();
81 if (
sizeof($objects)) {
82 $this->
toolbar->setFormAction($this->
ctrl->getFormAction($this,
"listObjects"));
85 $this->
toolbar->addStickyItem($sel,
true);
88 $button->setCaption(
"ok");
89 $button->setCommand(
"listObjects");
90 $this->
toolbar->addStickyItem($button);
93 foreach (array_keys($objects) as
$type) {
94 if (!$this->obj_definition->isPlugin($type)) {
95 $options[
$type] = $this->
lng->txt(
"obj_" . $type);
101 $sel->setOptions($options);
103 $sel_type = $this->retriever->getMaybeString(
'type',
'');
104 if ($sel_type !==
'') {
105 $sel->setValue($sel_type);
107 $sel_type = array_keys($options);
108 $sel_type = array_shift($sel_type);
110 $this->
ctrl->setParameter($this,
"type", $sel_type);
113 if ($sel_type ===
'') {
117 if (is_array($objects[$sel_type]) &&
sizeof($objects[$sel_type])) {
122 $this->tpl->setContent($tbl->getHTML());
129 $tbl->writeFilterToSession();
143 $parent = $this->tree->getParentId($ref_id);
144 $this->
ctrl->setParameterByClass(
"ilRepositoryGUI",
"ref_id", $parent);
145 $this->
ctrl->setParameterByClass(
"ilRepositoryGUI",
"item_ref_id", $ref_id);
146 $this->
ctrl->setParameterByClass(
"ilRepositoryGUI",
"cmd", $cmd);
147 $this->
ctrl->redirectByClass(
"ilRepositoryGUI");
152 $node = $this->tree->getNodeData($ref_id);
153 $gui_class =
"ilObj" . $this->obj_definition->getClassName($node[
"type"]) .
"GUI";
154 $path = [
"ilRepositoryGUI", $gui_class, $class];
156 if ($class ==
"ilExportGUI") {
158 $this->
ctrl->getLinkTargetByClass(
$path);
160 switch ($node[
"type"]) {
162 $export_cmd =
"exportList";
163 $path = [
"ilRepositoryGUI",
"ilGlossaryEditorGUI", $gui_class];
167 $export_cmd =
"export";
168 $path = [
"ilRepositoryGUI", $gui_class];
171 $this->
ctrl->setParameterByClass($gui_class,
"ref_id", $ref_id);
172 $this->
ctrl->setParameterByClass($gui_class,
"cmd", $export_cmd);
177 $this->
ctrl->setParameterByClass($class,
"ref_id", $ref_id);
178 $this->
ctrl->setParameterByClass($class,
"cmd", $cmd);
182 public function delete():
void 218 ilPermissionGUI::class,
230 if ($this->read_only) {
232 'Cannot perform actions when in read only mode'
ilGlobalTemplateInterface $tpl
__construct(int $user_id=null, bool $read_only=false)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
redirectCmd(int $ref_id, string $class, string $cmd=null)
redirectParentCmd(int $ref_id, string $cmd)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Table for object role permissions.
parses the objects.xml it handles the xml-description of all ilias objects
ilObjectDefinition $obj_definition
Base class for all sub item list gui's.
static getAllOwnedRepositoryObjects(int $user_id)
static lookupTxtById(string $plugin_id, string $lang_var)
static fixMissingTitles($type, array &$obj_title_map)
Try to fix missing object titles.
ilObjectRequestRetriever $retriever