19 declare(strict_types=1);
45 ->retrieve(
"ref_id",
$container->refinery()->kindlyTo()->int());
50 $language->loadLanguageModule(
"tala");
51 $language->loadLanguageModule(
'etal');
70 $cmd = $this->
ctrl->getCmd();
71 $next_class = $this->
ctrl->getNextClass($this);
74 switch ($next_class) {
75 case 'ilpermissiongui':
76 parent::prepareOutput();
77 $this->tabs_gui->activateTab(
'perm_settings');
79 $this->
ctrl->forwardCommand($ilPermissionGUI);
81 case 'ilinfoscreengui':
82 parent::prepareOutput();
83 $this->tabs_gui->activateTab(
'info_short');
85 $this->
ctrl->forwardCommand($ilInfoScreenGUI);
87 case strtolower(ilObjTalkTemplateGUI::class):
89 $ilTalkTemplateGUI->setAdminMode($this->admin_mode);
90 $this->
ctrl->setParameter(
95 $this->
tabs->setBackTarget(
96 $this->
lng->txt(
'obj_tala'),
97 $this->
ctrl->getLinkTarget($this,
'view')
99 $this->
ctrl->clearParameters($this);
100 $this->
ctrl->forwardCommand($ilTalkTemplateGUI);
103 parent::executeCommand();
112 # all possible create permissions 113 parent::setTitleAndDescription();
114 $this->tpl->setTitle($this->
lng->txt(
"objs_tala"));
115 $this->tpl->setDescription($this->
lng->txt(
"objs_tala"));
117 $this->tpl->setTitleIcon(
"", $this->
lng->txt(
"obj_" . $this->object->getType()));
126 array_keys($subtypes),
127 $this->
lng->txt(
'other'),
136 $subtypes = $this->obj_definition->getCreatableSubObjects(
139 $this->
object->getRefId()
145 fn($key) => $this->
access->checkAccess(
'create_' . $key,
'', $this->ref_id, $this->type),
152 $this->tabs_gui->activateTab(
'view_content');
154 if (!$this->rbacsystem->checkAccess(
"read", $this->getRefId())) {
155 if ($this->rbacsystem->checkAccess(
"visible", $this->getRefId())) {
156 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"msg_no_perm_read"));
157 $this->
ctrl->redirectByClass(strtolower(ilInfoScreenGUI::class),
'');
160 $this->
ilias->raiseError($this->
lng->txt(
"msg_no_perm_read"), $this->
ilias->error_obj->WARNING);
163 parent::renderObject();
194 $read_access_ref_id = $this->rbacsystem->checkAccess(
'visible,read', $this->
object->getRefId());
195 if ($read_access_ref_id) {
196 $this->tabs_gui->addTab(
'view_content', $this->
lng->txt(
"content"), $this->
ctrl->getLinkTarget($this,
"view"));
197 $this->tabs_gui->addTab(
199 $this->
lng->txt(
'tab_info'),
200 $this->
ctrl->getLinkTargetByClass([
201 strtolower(self::class),
202 strtolower(ilInfoScreenGUI::class)
206 if ($this->tree->getSavedNodeData($this->object->getRefId())) {
207 $this->tabs_gui->addTarget(
'trash', $this->
ctrl->getLinkTarget($this,
'trash'),
'trash', get_class($this));
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setTitleAndDescription()
called by prepare output
getCreatableObjectTypes()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Parent class of all container content GUIs.
getItemPresentation( $include_empty_blocks=true, ?string $lang=null)
Class ilObjTalkTemplateGUI.
const MODE_ADMINISTRATION
Class ilObjForumAdministration.
isActiveAdministrationPanel()
Class ilObjTalkTemplateAdministrationGUI GUI class.
const STD_FIELD_OBJECT_TYPE
getContentGUI()
Filter the view by talk templates because the talk series objects are also children of the talk templ...
Render add new item selector.
__construct(Container $dic, ilPlugin $plugin)
ILIAS Container InternalGUIService $gui
Class ilContainerGUI This is a base GUI class for all container objects in ILIAS: root folder...
buildGroup(string $create_target_class, array $obj_types_in_group, string $title, array $subtypes)
returnObject()
Not completely sure why this is necessary, after creation of talk templates the redirect leads here...