ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObject2GUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
24 
43 abstract class ilObject2GUI extends ilObjectGUI
44 {
45  public const OBJECT_ID = 0;
46  public const REPOSITORY_NODE_ID = 1;
47  public const WORKSPACE_NODE_ID = 2;
48  public const REPOSITORY_OBJECT_ID = 3;
49  public const WORKSPACE_OBJECT_ID = 4;
50  public const PORTFOLIO_OBJECT_ID = 5;
51 
54  protected ilCtrl $ctrl;
55  protected ilLanguage $lng;
56  protected ilTabsGUI $tabs_gui;
60  protected ilObjUser $user;
65  protected Factory $refinery;
69 
70  protected int $request_ref_id;
71  protected int $id_type;
72  protected ?int $parent_id;
73  protected string $type;
74  protected string $html;
75 
76  protected int $object_id;
77  protected ?int $node_id = null;
78  protected array $creation_forms = [];
82  protected $access_handler;
84 
85  public function __construct(int $id = 0, int $id_type = self::REPOSITORY_NODE_ID, int $parent_node_id = 0)
86  {
87  global $DIC;
88 
89  $this->obj_definition = $DIC["objDefinition"];
90  $this->tpl = $DIC["tpl"];
91  $this->ctrl = $DIC["ilCtrl"];
92  $this->lng = $DIC["lng"];
93  $this->tabs_gui = $DIC["ilTabs"];
94  $this->object_service = $DIC->object();
95  $this->favourites = new ilFavouritesManager();
96  $this->error = $DIC['ilErr'];
97  $this->locator = $DIC["ilLocator"];
98  $this->user = $DIC->user();
99  $this->access = $DIC->access();
100  $this->toolbar = $DIC->toolbar();
101  $this->request = $DIC->http()->request();
102  $this->post_wrapper = $DIC->http()->wrapper()->post();
103  $this->request_wrapper = $DIC->http()->wrapper()->query();
104  $this->refinery = $DIC->refinery();
105  $this->retriever = new ilObjectRequestRetriever($DIC->http()->wrapper(), $this->refinery);
106  $this->rbac_admin = $DIC->rbac()->admin();
107  $this->rbac_system = $DIC->rbac()->system();
108  $this->rbac_review = $DIC->rbac()->review();
109  $this->ui_factory = $DIC['ui.factory'];
110  $this->ui_renderer = $DIC['ui.renderer'];
111  $this->settings = $DIC['ilSetting'];
112  $this->temp_file_system = $DIC->filesystem()->temp();
113 
114  $tree = $DIC["tree"];
115 
116  $this->requested_ref_id = 0;
117  if ($this->request_wrapper->has("ref_id")) {
118  $this->requested_ref_id = $this->request_wrapper->retrieve("ref_id", $this->refinery->kindlyTo()->int());
119  }
120  $this->id_type = $id_type;
121  $this->parent_id = $parent_node_id;
122  $this->type = $this->getType();
123  $this->html = "";
124  $this->notes_service = $DIC->notes();
125 
126  $this->requested_new_type = '';
127  if ($this->request_wrapper->has("new_type")) {
128  $this->requested_new_type = $this->request_wrapper->retrieve(
129  "new_type",
130  $this->refinery->kindlyTo()->string()
131  );
132  } elseif ($this->post_wrapper->has("new_type")) {
133  $this->requested_new_type = $this->post_wrapper->retrieve(
134  "new_type",
135  $this->refinery->kindlyTo()->string()
136  );
137  }
138 
139  $params = [];
140  switch ($this->id_type) {
141  case self::REPOSITORY_NODE_ID:
142  $this->node_id = $id;
143  $this->object_id = ilObject::_lookupObjectId($this->node_id);
144  $this->tree = $tree;
145  $this->access_handler = $this->access;
146  $this->call_by_reference = true; // needed for prepareOutput()
147  $params[] = "ref_id";
148  break;
149 
150  case self::REPOSITORY_OBJECT_ID:
151  $this->object_id = $id;
152  $this->tree = $tree;
153  $this->access_handler = $this->access;
154  $params[] = "obj_id"; // ???
155  break;
156 
157  case self::WORKSPACE_NODE_ID:
158  $ilUser = $DIC["ilUser"];
159  $this->node_id = $id;
160  $this->tree = new ilWorkspaceTree($ilUser->getId());
161  $this->object_id = $this->tree->lookupObjectId($this->node_id);
162  $this->access_handler = new ilWorkspaceAccessHandler($this->tree);
163  $params[] = "wsp_id";
164  break;
165 
166  case self::WORKSPACE_OBJECT_ID:
167  $ilUser = $DIC["ilUser"];
168  $this->object_id = $id;
169  $this->tree = new ilWorkspaceTree($ilUser->getId());
170  $this->access_handler = new ilWorkspaceAccessHandler($this->tree);
171  $params[] = "obj_id"; // ???
172  break;
173 
174  case self::PORTFOLIO_OBJECT_ID:
175  $this->object_id = $id;
176  $this->access_handler = new ilPortfolioAccessHandler();
177  $params[] = "prt_id";
178  break;
179 
180  case self::OBJECT_ID:
181  $this->object_id = $id;
182  $this->access_handler = new ilDummyAccessHandler();
183  $params[] = "obj_id";
184  break;
185  }
186  $this->ctrl->saveParameter($this, $params);
187 
188 
189 
190  // old stuff for legacy code (obsolete?)
191  if (!$this->object_id) {
192  $this->creation_mode = true;
193  }
194  if ($this->node_id) {
195  // add parent node id if missing
196  if (!$this->parent_id && $this->tree) {
197  $this->parent_id = $this->tree->getParentId($this->node_id);
198  }
199  }
200  $this->ref_id = $this->node_id ?? 0;
201  $this->obj_id = $this->object_id;
202 
203  $this->assignObject();
204 
205  // set context
206  if (is_object($this->object)) {
207  $this->ctrl->setContextObject($this->object->getId(), $this->object->getType());
208  }
209 
210  $this->afterConstructor();
211  }
212 
216  protected function afterConstructor(): void
217  {
218  }
219 
223  public function executeCommand(): void
224  {
225  $next_class = $this->ctrl->getNextClass($this);
226  $cmd = $this->ctrl->getCmd();
227 
228  $this->prepareOutput();
229 
230  switch ($next_class) {
231  case "ilworkspaceaccessgui":
232  if ($this->node_id) {
233  $this->tabs_gui->activateTab("id_permissions");
234  $wspacc = new ilWorkspaceAccessGUI($this->node_id, $this->getAccessHandler());
235  $this->ctrl->forwardCommand($wspacc);
236  } else {
237  if (!$cmd) {
238  $cmd = "render";
239  }
240  $this->$cmd();
241  }
242  break;
243 
244  default:
245  if (!$cmd) {
246  $cmd = "render";
247  }
248  $this->$cmd();
249  }
250  }
251 
252  public function getIdType(): int
253  {
254  return $this->id_type;
255  }
256 
260  final protected function assignObject(): void
261  {
262  if ($this->object_id != 0) {
263  switch ($this->id_type) {
264  case self::OBJECT_ID:
265  case self::REPOSITORY_OBJECT_ID:
266  case self::WORKSPACE_OBJECT_ID:
267  case self::PORTFOLIO_OBJECT_ID:
268  $this->object = ilObjectFactory::getInstanceByObjId($this->object_id);
269  break;
270 
271  case self::REPOSITORY_NODE_ID:
272  $this->object = ilObjectFactory::getInstanceByRefId($this->node_id);
273  break;
274 
275  case self::WORKSPACE_NODE_ID:
276  // to be discussed
277  $this->object = ilObjectFactory::getInstanceByObjId($this->object_id);
278  break;
279  }
280  }
281  }
282 
286  protected function getAccessHandler()
287  {
288  return $this->access_handler;
289  }
290 
294  protected function setLocator(): void
295  {
296  if ($this->omit_locator) {
297  return;
298  }
299 
300  switch ($this->id_type) {
301  case self::REPOSITORY_NODE_ID:
302  $ref_id = $this->node_id ?: $this->parent_id;
303  $this->locator->addRepositoryItems($ref_id);
304 
305  // not so nice workaround: todo: handle locator as tabs in ilTemplate
306  if ($this->admin_mode == self::ADMIN_MODE_NONE &&
307  strtolower($this->ctrl->getCmdClass()) == "ilobjrolegui") {
308  $this->ctrl->setParameterByClass(
309  "ilobjrolegui",
310  "rolf_ref_id",
311  $this->request_wrapper->has("rolf_ref_id")
312  ? $this->request_wrapper->retrieve("rolf_ref_id", $this->refinery->kindlyTo()->string())
313  : null
314  );
315  $this->ctrl->setParameterByClass(
316  "ilobjrolegui",
317  "obj_id",
318  $this->request_wrapper->retrieve("obj_id", $this->refinery->kindlyTo()->string())
319  );
320  $this->locator->addItem(
321  $this->lng->txt("role"),
322  $this->ctrl->getLinkTargetByClass(["ilpermissiongui",
323  "ilobjrolegui"], "perm")
324  );
325  }
326 
327  // in workspace this is done in ilPersonalWorkspaceGUI
328  if ($this->object_id) {
329  $this->addLocatorItems();
330  }
331  $this->tpl->setLocator();
332 
333  break;
334 
335  case self::WORKSPACE_NODE_ID:
336  // :TODO:
337  break;
338  }
339  }
340 
344  public function delete(): void
345  {
346  switch ($this->id_type) {
347  case self::REPOSITORY_NODE_ID:
348  case self::REPOSITORY_OBJECT_ID:
349  parent::deleteObject();
350 
351  // no break
352  case self::WORKSPACE_NODE_ID:
353  case self::WORKSPACE_OBJECT_ID:
354  $this->deleteConfirmation();
355 
356  // no break
357  case self::OBJECT_ID:
358  case self::PORTFOLIO_OBJECT_ID:
359  // :TODO: should this ever occur?
360  break;
361  }
362  }
363 
367  public function confirmedDelete(): void
368  {
369  switch ($this->id_type) {
370  case self::REPOSITORY_NODE_ID:
371  case self::REPOSITORY_OBJECT_ID:
372  parent::confirmedDeleteObject();
373 
374  // no break
375  case self::WORKSPACE_NODE_ID:
376  case self::WORKSPACE_OBJECT_ID:
377  $this->deleteConfirmedObjects();
378 
379  // no break
380  case self::OBJECT_ID:
381  case self::PORTFOLIO_OBJECT_ID:
382  // :TODO: should this ever occur?
383  break;
384  }
385  }
386 
391  protected function deleteConfirmedObjects(): void
392  {
393  if (!$this->post_wrapper->has("id")) {
394  $this->tpl->setOnScreenMessage("failure", $this->lng->txt("no_checkbox"), true);
395  $this->ctrl->redirect($this, "");
396  return;
397  }
398 
399  $ids = $this->post_wrapper->retrieve(
400  "id",
401  $this->refinery->kindlyTo()->listOf($this->refinery->kindlyTo()->int())
402  );
403 
404  if (count($ids) == 0) {
405  $this->tpl->setOnScreenMessage("failure", $this->lng->txt("no_checkbox"), true);
406  $this->ctrl->redirect($this, "");
407  return;
408  }
409 
410  // #18797 - because of parent/child relations gather all nodes first
411  $del_nodes = [];
412  foreach ($ids as $node_id) {
413  $del_nodes[$node_id] = $this->tree->getNodeData($node_id);
414  }
415 
416  foreach ($del_nodes as $node_id => $node) {
417  $this->tree->deleteReference($node_id);
418  if ($this->tree->isInTree($node_id)) {
419  $this->tree->deleteTree($node);
420  }
421 
422  $this->getAccessHandler()->removePermission($node_id);
423 
424  $object = ilObjectFactory::getInstanceByObjId((int) $node["obj_id"], false);
425  if ($object) {
426  $object->delete();
427  }
428  }
429 
430  $this->tpl->setOnScreenMessage("success", $this->lng->txt("msg_removed"), true);
431  $this->ctrl->redirect($this, "");
432  }
433 
434  public function getHTML(): string
435  {
436  return parent::getHTML();
437  }
438 
442  final public function withReferences(): bool
443  {
444  return parent::withReferences();
445  }
446  final public function setCreationMode(bool $mode = true): void
447  {
448  parent::setCreationMode($mode);
449  }
450  final public function getCreationMode(): bool
451  {
452  return parent::getCreationMode();
453  }
454  final public function prepareOutput(bool $show_sub_objects = true): bool
455  {
456  return parent::prepareOutput($show_sub_objects);
457  }
458  protected function setTitleAndDescription(): void
459  {
460  parent::setTitleAndDescription();
461  }
462  final protected function omitLocator(bool $omit = true): void
463  {
464  parent::omitLocator($omit);
465  }
466  final protected function getTargetFrame(string $cmd, string $target_frame = ""): string
467  {
468  return parent::getTargetFrame($cmd, $target_frame);
469  }
470  final protected function setTargetFrame(string $cmd, string $target_frame): void
471  {
472  parent::setTargetFrame($cmd, $target_frame);
473  }
474  final public function isVisible(int $ref_id, string $type): bool
475  {
476  return parent::isVisible($ref_id, $type);
477  }
478  final protected function getCenterColumnHTML(): string
479  {
480  return parent::getCenterColumnHTML();
481  }
482  final protected function getRightColumnHTML(): string
483  {
484  return parent::getRightColumnHTML();
485  }
486  final public function setColumnSettings(ilColumnGUI $column_gui): void
487  {
488  parent::setColumnSettings($column_gui);
489  }
490  final protected function checkPermission(
491  string $perm,
492  string $cmd = "",
493  string $type = "",
494  ?int $ref_id = null
495  ): void {
496  parent::checkPermission($perm, $cmd, $type, $ref_id);
497  }
498  final protected function showPossibleSubObjects(): void
499  {
500  parent::showPossibleSubObjects();
501  }
502 
503  final protected function redirectToRefId(int $ref_id, string $cmd = ""): void
504  {
505  parent::redirectToRefId($ref_id, $cmd);
506  }
507 
508  // private function setAdminTabs() { return parent::setAdminTabs(); }
509  // final public function getAdminTabs() { return parent::getAdminTabs(); }
510  final protected function addAdminLocatorItems(bool $do_not_add_object = false): void
511  {
512  parent::addAdminLocatorItems($do_not_add_object);
513  }
514 
518  public function view(): void
519  {
520  switch ($this->id_type) {
521  case self::REPOSITORY_NODE_ID:
522  case self::REPOSITORY_OBJECT_ID:
523  parent::viewObject();
524  break;
525 
526  case self::WORKSPACE_NODE_ID:
527  case self::WORKSPACE_OBJECT_ID:
528  $this->render();
529 
530  // no break
531  case self::OBJECT_ID:
532  case self::PORTFOLIO_OBJECT_ID:
533  // :TODO: should this ever occur? do nothing or edit() ?!
534  break;
535  }
536  }
537 
543  protected function setTabs(): void
544  {
545  switch ($this->id_type) {
546  case self::REPOSITORY_NODE_ID:
547  case self::REPOSITORY_OBJECT_ID:
548  if ($this->checkPermissionBool("edit_permission")) {
549  $this->tabs_gui->addTab(
550  "id_permissions",
551  $this->lng->txt("perm_settings"),
552  $this->ctrl->getLinkTargetByClass([get_class($this), "ilpermissiongui"], "perm")
553  );
554  }
555  break;
556 
557  case self::WORKSPACE_NODE_ID:
558  case self::WORKSPACE_OBJECT_ID:
559  // only files and blogs can be shared for now
560  if (
561  $this->checkPermissionBool("edit_permission") &&
562  in_array($this->type, ["file", "blog"]) &&
564  ) {
565  $this->tabs_gui->addTab(
566  "id_permissions",
567  $this->lng->txt("wsp_permissions"),
568  $this->ctrl->getLinkTargetByClass([get_class($this), "ilworkspaceaccessgui"], "share")
569  );
570  }
571  break;
572  }
573  }
574 
578  // private function setSubObjects($a_sub_objects = "") { die("ilObject2GUI::setSubObjects() is deprecated."); }
579  // final public function getFormAction($a_cmd, $a_formaction = "") { die("ilObject2GUI::getFormAction() is deprecated."); }
580  // final protected function setFormAction($a_cmd, $a_formaction) { die("ilObject2GUI::setFormAction() is deprecated."); }
581  final protected function getReturnLocation(string $cmd, string $location = ""): string
582  {
583  die("ilObject2GUI::getReturnLocation() is deprecated.");
584  }
585  final protected function setReturnLocation(string $cmd, string $location): void
586  {
587  die("ilObject2GUI::setReturnLocation() is deprecated.");
588  }
589  final protected function showActions(): void
590  {
591  die("ilObject2GUI::showActions() is deprecated.");
592  }
593  final protected function getTabs(): void
594  {
595  die("ilObject2GUI::getTabs() is deprecated.");
596  }
597 
601  protected function addLocatorItems(): void
602  {
603  }
604 
608  abstract public function getType(): string;
609 
613  public function create(): void
614  {
615  parent::createObject();
616  }
617  public function save(): void
618  {
619  parent::saveObject();
620  }
621  public function edit(): void
622  {
623  parent::editObject();
624  }
625  public function update(): void
626  {
627  parent::updateObject();
628  }
629  public function cancel(): void
630  {
631  parent::cancelObject();
632  }
633 
637  public function putObjectInTree(ilObject $obj, ?int $parent_node_id = null): void
638  {
639  $this->object_id = $obj->getId();
640 
641  if (!$parent_node_id) {
642  $parent_node_id = $this->parent_id;
643  }
644 
645  // add new object to custom parent container
646  if ($this->retriever->has('crtptrefid')) {
647  $parent_node_id = $this->retriever->getMaybeInt('crtptrefid') ?? 0;
648  }
649 
650  switch ($this->id_type) {
651  case self::REPOSITORY_NODE_ID:
652  case self::REPOSITORY_OBJECT_ID:
653  if (!$this->node_id) {
654  $obj->createReference();
655  $this->node_id = $obj->getRefId();
656  }
657  $obj->putInTree($parent_node_id);
658  $obj->setPermissions($parent_node_id);
659 
660  // rbac log
661  $rbac_log_roles = $this->rbac_review->getParentRoleIds($this->node_id, false);
662  $rbac_log = ilRbacLog::gatherFaPa($this->node_id, array_keys($rbac_log_roles), true);
663  ilRbacLog::add(ilRbacLog::CREATE_OBJECT, $this->node_id, $rbac_log);
664 
665  $this->ctrl->setParameter($this, "ref_id", $this->node_id);
666  break;
667 
668  case self::WORKSPACE_NODE_ID:
669  case self::WORKSPACE_OBJECT_ID:
670  if (!$this->node_id) {
671  $this->node_id = $this->tree->insertObject($parent_node_id, $this->object_id);
672  }
673  $this->getAccessHandler()->setPermissions($parent_node_id, $this->node_id);
674 
675  $this->ctrl->setParameter($this, "wsp_id", $this->node_id);
676  break;
677 
678  case self::OBJECT_ID:
679  case self::PORTFOLIO_OBJECT_ID:
680  // do nothing
681  break;
682  }
683 
684  // BEGIN ChangeEvent: Record save object.
685  ilChangeEvent::_recordWriteEvent($this->object_id, $this->user->getId(), 'create');
686  // END ChangeEvent: Record save object.
687 
688  // use forced callback after object creation
689  self::handleAfterSaveCallback($obj, $this->retriever->getMaybeInt('crtcb'));
690  }
691 
695  public static function handleAfterSaveCallback(ilObject $obj, ?int $callback_ref_id)
696  {
697  global $DIC;
698  $objDefinition = $DIC["objDefinition"];
699 
700  $callback_ref_id = (int) $callback_ref_id;
701  if ($callback_ref_id) {
702  $callback_type = ilObject::_lookupType($callback_ref_id, true);
703  $class_name = "ilObj" . $objDefinition->getClassName($callback_type) . "GUI";
704  if (strtolower($class_name) == "ilobjitemgroupgui") {
705  $callback_obj = new $class_name($callback_ref_id);
706  } else {
707  $callback_obj = new $class_name(null, $callback_ref_id, true, false);
708  }
709  $callback_obj->afterSaveCallback($obj);
710  }
711  }
712 
713  protected function checkPermissionBool(
714  string $perm,
715  string $cmd = "",
716  string $type = "",
717  ?int $node_id = null
718  ): bool {
719  if ($perm == "create") {
720  if (!$node_id) {
721  $node_id = $this->parent_id;
722  }
723  if ($node_id) {
724  return $this->getAccessHandler()->checkAccess($perm . "_" . $type, $cmd, $node_id);
725  }
726  } else {
727  if (!$node_id) {
728  $node_id = $this->node_id;
729  }
730  if ($node_id) {
731  return $this->getAccessHandler()->checkAccess($perm, $cmd, $node_id);
732  }
733  }
734 
735  // if we do not have a node id, check if current user is owner
736  if ($this->obj_id && $this->object->getOwner() == $this->user->getId()) {
737  return true;
738  }
739  return false;
740  }
741 
745  protected function initHeaderAction(?string $sub_type = null, ?int $sub_id = null): ?ilObjectListGUI
746  {
747  if ($this->id_type == self::WORKSPACE_NODE_ID) {
748  if (!$this->creation_mode && $this->object_id) {
749  $dispatcher = new ilCommonActionDispatcherGUI(
751  $this->getAccessHandler(),
752  $this->getType(),
753  $this->node_id,
754  $this->object_id
755  );
756 
757  $dispatcher->setSubObject($sub_type, $sub_id);
758 
760  $this->ctrl->getLinkTarget($this, "redrawHeaderAction", "", true),
761  "",
762  $this->ctrl->getLinkTargetByClass(["ilcommonactiondispatchergui", "iltagginggui"], "")
763  );
764 
765  $lg = $dispatcher->initHeaderAction();
766 
767  if (is_object($lg)) {
768  // to enable add to desktop / remove from desktop
769  if ($this instanceof ilDesktopItemHandling) {
770  $lg->setContainerObject($this);
771  }
772 
773  // for activation checks see ilObjectGUI
774  // $lg->enableComments(true);
775  $lg->enableNotes(true);
776  // $lg->enableTags(true);
777  }
778 
779  return $lg;
780  }
781  }
782 
783  return parent::initHeaderAction($sub_type, $sub_id);
784  }
785 
789  protected function redrawHeaderAction(): void
790  {
791  parent::redrawHeaderActionObject();
792  }
793 }
getReturnLocation(string $cmd, string $location="")
Deprecated functions.
setLocator()
set Locator
delete()
delete object or referenced object (in the case of a referenced object, object data is only deleted i...
ilRbacReview $rbac_review
ilErrorHandling $error
executeCommand()
execute command
view()
view object content (repository/workspace switch)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
New implementation of ilObjectGUI.
$location
Definition: buildRTE.php:22
if(! $DIC->user() ->getId()||!ilLTIConsumerAccess::hasCustomProviderCreationAccess()) $params
Definition: ltiregstart.php:31
ilRbacAdmin $rbac_admin
confirmedDelete()
Delete objects (repository/workspace switch)
ilObjectRequestRetriever $retriever
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
prepareOutput(bool $show_sub_objects=true)
RequestWrapper $request_wrapper
setPermissions(int $parent_ref_id)
Manages favourites, currently the interface for other components, needs discussion.
ilFavouritesManager $favourites
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilObjectDefinition $obj_definition
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
ilToolbarGUI $toolbar
omitLocator(bool $omit=true)
createReference()
creates reference for object
static gatherFaPa(int $ref_id, array $role_ids, bool $add_action=false)
const CREATE_OBJECT
checkPermissionBool(string $perm, string $cmd="", string $type="", ?int $node_id=null)
getTargetFrame(string $cmd, string $target_frame="")
getType()
Functions that must be overwritten.
Column user interface class.
setCreationMode(bool $mode=true)
Class ilObjectGUI Basic methods of all Output classes.
static getInstanceByRefId(int $ref_id, bool $stop_on_error=true)
get an instance of an Ilias object by reference id
__construct(int $id=0, int $id_type=self::REPOSITORY_NODE_ID, int $parent_node_id=0)
global $DIC
Definition: shib_login.php:22
ilGlobalTemplateInterface $tpl
static _lookupObjectId(int $ref_id)
static _recordWriteEvent(int $obj_id, int $usr_id, string $action, ?int $parent_obj_id=null)
Records a write event.
putObjectInTree(ilObject $obj, ?int $parent_node_id=null)
Add object to tree at given position.
ArrayBasedRequestWrapper $post_wrapper
withReferences()
Final/Private declaration of unchanged parent methods.
Base class for all sub item list gui&#39;s.
redrawHeaderAction()
Updating icons after ajax call.
checkPermission(string $perm, string $cmd="", string $type="", ?int $ref_id=null)
ACL access handler GUI.
setTabs()
create tabs (repository/workspace switch)
setColumnSettings(ilColumnGUI $column_gui)
static add(int $action, int $ref_id, array $diff, bool $source_ref_id=false)
static getInstanceByObjId(?int $obj_id, bool $stop_on_error=true)
get an instance of an Ilias object by object id
putInTree(int $parent_ref_id)
maybe this method should be in tree object!?
lookupObjectId(int $a_node_id)
Get object id for node id.
redirectToRefId(int $ref_id, string $cmd="")
static handleAfterSaveCallback(ilObject $obj, ?int $callback_ref_id)
After creation callback.
static prepareJsLinks(string $redraw_url, string $notes_url, string $tags_url, ?ilGlobalTemplateInterface $tpl=null)
Insert js/ajax links into template.
Access handler for portfolio NOTE: This file needs to stay in the classes directory, WAC will be confused otherwise.
ilLocatorGUI $locator
deleteConfirmedObjects()
Delete objects (workspace specific) This should probably be moved elsewhere as done with RepUtil...
isVisible(int $ref_id, string $type)
afterConstructor()
Do anything that should be done after constructor in here.
Class ilRbacAdmin Core functions for role based access control.
assignObject()
create object instance as internal property (repository/workspace switch)
setTargetFrame(string $cmd, string $target_frame)
static _lookupType(int $id, bool $reference=false)
addAdminLocatorItems(bool $do_not_add_object=false)
Class ilCommonActionDispatcherGUI.
initHeaderAction(?string $sub_type=null, ?int $sub_id=null)
Add header action menu.
ilRbacSystem $rbac_system
addLocatorItems()
Functions to be overwritten.
setReturnLocation(string $cmd, string $location)
ilAccessHandler $access