3 declare(strict_types=1);
64 $this->
ctrl = $DIC->ctrl();
66 $this->request_wrapper = $DIC->http()->wrapper()->query();
83 return self::buildAjaxHash(
102 string $sub_type = null,
107 $node_type .
";" . $node_id .
";" . $obj_type .
";" . $obj_id .
";" .
108 $sub_type .
";" . $sub_id .
";" .
$news_id 113 $arr = explode(
";", $hash);
114 if (isset($arr[4]) && isset($arr[5])) {
118 return implode(
";", $arr);
128 $ilAccess = $DIC->access();
130 $request_wrapper = $DIC->http()->wrapper()->query();
131 $refinery = $DIC->refinery();
133 if ($request_wrapper->has(
"cadh")) {
134 $parts = explode(
";", $request_wrapper->retrieve(
"cadh", $refinery->kindlyTo()->string()));
138 $obj_type = (string)
$parts[2];
140 $sub_type = (string)
$parts[4];
144 switch ($node_type) {
145 case self::TYPE_REPOSITORY:
149 case self::TYPE_WORKSPACE:
160 if ($sub_type && $sub_id) {
161 $dispatcher->setSubObject($sub_type, $sub_id);
166 if ($node_type == self::TYPE_REPOSITORY && $obj_type !=
"poll") {
167 $dispatcher->enableCommentsSettings(
true);
180 !$this->access_handler->checkAccess(
"visible",
"", $this->node_id) &&
181 !$this->access_handler->checkAccess(
"read",
"", $this->node_id)
186 $next_class = $this->
ctrl->getNextClass($this);
188 $this->
ctrl->saveParameter($this,
"cadh");
190 switch ($next_class) {
194 if ($this->sub_type) {
198 $note_gui =
new ilNoteGUI($this->obj_id, (
int) $this->sub_id, $obj_type,
false, $this->news_id);
199 $note_gui->enablePrivateNotes();
201 $has_write = $this->access_handler->checkAccess(
"write",
"", $this->node_id);
202 if ($has_write && $this->
settings->get(
"comments_del_tutor",
"1")) {
203 $note_gui->enablePublicNotesDeletion();
207 if ($this->enable_comments_settings) {
211 $this->access_handler->checkAccess(
"edit_permissions",
"", $this->node_id)
213 $note_gui->enableCommentsSettings();
218 elseif ($this->sub_id) {
219 $note_gui->enablePublicNotes();
222 $this->
ctrl->forwardCommand($note_gui);
227 $tags_gui->setObject($this->obj_id, $this->obj_type);
228 $this->
ctrl->forwardCommand($tags_gui);
231 case "ilobjectactivationgui":
232 $parent_id = $this->retriever->getMaybeInt(
'parent_id') ?? 0;
233 $this->
ctrl->setParameter($this,
"parent_id", $parent_id);
235 $this->
ctrl->forwardCommand($act_gui);
241 $this->request_wrapper->has(
"rnsb")
243 $rating_gui->setObject($this->obj_id, $this->obj_type, $this->sub_id, $this->sub_type);
246 $rating_gui->setObject($this->obj_id, $this->obj_type);
248 $this->
ctrl->forwardCommand($rating_gui);
249 if ($this->rating_callback) {
252 $this->
ctrl->redirect($this->rating_callback[0], $this->rating_callback[1]);
266 public function setSubObject(?
string $sub_obj_type, ?
int $sub_obj_id): void
268 $this->sub_type = $sub_obj_type;
269 $this->sub_id = $sub_obj_id;
277 $this->enable_comments_settings = $value;
285 $this->rating_callback = array($gui, $cmd);
296 !$this->access_handler->checkAccess(
"visible",
"", $this->node_id) &&
297 !$this->access_handler->checkAccess(
"read",
"", $this->node_id)
304 ($this->node_type == self::TYPE_REPOSITORY) ?
309 $header_action->enableCopy(
false);
310 $header_action->enableCut(
false);
311 $header_action->enableDelete(
false);
312 $header_action->enableLink(
false);
313 $header_action->enableInfoScreen(
false);
314 $header_action->enableTimings(
false);
315 $header_action->enableSubscribe($this->node_type == self::TYPE_REPOSITORY);
317 $header_action->initItem($this->node_id, $this->obj_id, $this->obj_type);
318 $header_action->setHeaderSubObject($this->sub_type, $this->sub_id);
321 return $header_action;
static removeSubObjFromAjaxHash(string $hash)
if($clientAssertionType !='urn:ietf:params:oauth:client-assertion-type:jwt-bearer'|| $grantType !='client_credentials') $parts
setRatingCallback(object $gui, string $cmd)
Add callback for rating gui.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
initHeaderAction()
Set header action menu.
ilObjectRequestRetriever $retriever
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class ilObjectActivationGUI.
ILIAS HTTP Wrapper RequestWrapper $request_wrapper
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _getListGUIByType(string $type, int $context=ilObjectListGUI::CONTEXT_REPOSITORY)
Base class for all sub item list gui's.
bool $enable_comments_settings
static buildAjaxHash(int $node_type, ?int $node_id, string $obj_type, int $obj_id, string $sub_type=null, int $sub_id=null, int $news_id=0)
Build ajax hash.
setSubObject(?string $sub_obj_type, ?int $sub_obj_id)
Set sub object attributes.
getAjaxHash()
Build ajax hash for current (object/node) properties.
enableCommentsSettings(bool $value)
Toggle comments settings.
__construct(int $node_type, $access_handler, string $obj_type, int $node_id, int $obj_id, int $news_id=0)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ILIAS Refinery Factory $refinery
static getInstanceFromAjaxCall()
(Re-)Build instance from ajax call