3 declare(strict_types=1);
86 public function __construct(
int $id = 0,
int $id_type = self::REPOSITORY_NODE_ID,
int $parent_node_id = 0)
90 $this->obj_definition = $DIC[
"objDefinition"];
91 $this->tpl = $DIC[
"tpl"];
92 $this->
ctrl = $DIC[
"ilCtrl"];
93 $this->
lng = $DIC[
"lng"];
94 $this->tabs_gui = $DIC[
"ilTabs"];
95 $this->object_service = $DIC->object();
97 $this->error = $DIC[
'ilErr'];
98 $this->
locator = $DIC[
"ilLocator"];
99 $this->
user = $DIC->user();
100 $this->
access = $DIC->access();
101 $this->
toolbar = $DIC->toolbar();
102 $this->post_wrapper = $DIC->http()->wrapper()->post();
103 $this->request_wrapper = $DIC->http()->wrapper()->query();
106 $this->rbac_admin = $DIC->rbac()->admin();
107 $this->rbac_system = $DIC->rbac()->system();
108 $this->rbac_review = $DIC->rbac()->review();
110 $tree = $DIC[
"tree"];
112 $this->requested_ref_id = 0;
113 if ($this->request_wrapper->has(
"ref_id")) {
114 $this->requested_ref_id = $this->request_wrapper->retrieve(
"ref_id", $this->
refinery->kindlyTo()->int());
117 $this->parent_id = $parent_node_id;
118 $this->type = $this->
getType();
120 $this->notes_service = $DIC->notes();
122 $this->requested_new_type =
'';
123 if ($this->request_wrapper->has(
"new_type")) {
124 $this->requested_new_type = $this->request_wrapper->retrieve(
126 $this->
refinery->kindlyTo()->string()
128 } elseif ($this->post_wrapper->has(
"new_type")) {
129 $this->requested_new_type = $this->post_wrapper->retrieve(
131 $this->
refinery->kindlyTo()->string()
136 switch ($this->id_type) {
137 case self::REPOSITORY_NODE_ID:
138 $this->node_id =
$id;
142 $this->call_by_reference =
true;
146 case self::REPOSITORY_OBJECT_ID:
147 $this->object_id =
$id;
153 case self::WORKSPACE_NODE_ID:
155 $this->node_id =
$id;
162 case self::WORKSPACE_OBJECT_ID:
164 $this->object_id =
$id;
170 case self::PORTFOLIO_OBJECT_ID:
171 $this->object_id =
$id;
176 case self::OBJECT_ID:
177 $this->object_id =
$id;
187 if (!$this->object_id) {
188 $this->creation_mode =
true;
190 if ($this->node_id) {
192 if (!$this->parent_id && $this->tree) {
193 $this->parent_id = $this->tree->getParentId($this->node_id);
196 $this->ref_id = $this->node_id ?? 0;
202 if (is_object($this->
object)) {
203 $this->
ctrl->setContextObject($this->
object->getId(), $this->
object->getType());
221 $next_class = $this->
ctrl->getNextClass($this);
222 $cmd = $this->
ctrl->getCmd();
226 switch ($next_class) {
227 case "ilworkspaceaccessgui":
228 if ($this->node_id) {
229 $this->tabs_gui->activateTab(
"id_permissions");
231 $this->
ctrl->forwardCommand($wspacc);
258 if ($this->object_id != 0) {
259 switch ($this->id_type) {
260 case self::OBJECT_ID:
261 case self::REPOSITORY_OBJECT_ID:
262 case self::WORKSPACE_OBJECT_ID:
263 case self::PORTFOLIO_OBJECT_ID:
267 case self::REPOSITORY_NODE_ID:
271 case self::WORKSPACE_NODE_ID:
292 if ($this->omit_locator) {
296 switch ($this->id_type) {
297 case self::REPOSITORY_NODE_ID:
302 if ($this->admin_mode == self::ADMIN_MODE_NONE &&
303 strtolower($this->
ctrl->getCmdClass()) ==
"ilobjrolegui") {
304 $this->
ctrl->setParameterByClass(
307 $this->request_wrapper->has(
"rolf_ref_id")
308 ? $this->request_wrapper->retrieve(
"rolf_ref_id", $this->
refinery->kindlyTo()->string())
311 $this->
ctrl->setParameterByClass(
314 $this->request_wrapper->retrieve(
"obj_id", $this->refinery->kindlyTo()->string())
317 $this->
lng->txt(
"role"),
318 $this->
ctrl->getLinkTargetByClass(array(
"ilpermissiongui",
319 "ilobjrolegui"),
"perm")
324 if ($this->object_id) {
327 $this->tpl->setLocator();
331 case self::WORKSPACE_NODE_ID:
340 public function delete():
void 342 switch ($this->id_type) {
343 case self::REPOSITORY_NODE_ID:
344 case self::REPOSITORY_OBJECT_ID:
345 parent::deleteObject();
348 case self::WORKSPACE_NODE_ID:
349 case self::WORKSPACE_OBJECT_ID:
350 $this->deleteConfirmation();
353 case self::OBJECT_ID:
354 case self::PORTFOLIO_OBJECT_ID:
365 switch ($this->id_type) {
366 case self::REPOSITORY_NODE_ID:
367 case self::REPOSITORY_OBJECT_ID:
368 parent::confirmedDeleteObject();
371 case self::WORKSPACE_NODE_ID:
372 case self::WORKSPACE_OBJECT_ID:
376 case self::OBJECT_ID:
377 case self::PORTFOLIO_OBJECT_ID:
389 if (!$this->post_wrapper->has(
"id")) {
390 $this->tpl->setOnScreenMessage(
"failure", $this->
lng->txt(
"no_checkbox"),
true);
391 $this->
ctrl->redirect($this,
"");
395 $ids = $this->post_wrapper->retrieve(
400 if (count($ids) == 0) {
401 $this->tpl->setOnScreenMessage(
"failure", $this->
lng->txt(
"no_checkbox"),
true);
402 $this->
ctrl->redirect($this,
"");
407 $del_nodes = array();
408 foreach ($ids as $node_id) {
409 $del_nodes[
$node_id] = $this->tree->getNodeData($node_id);
412 foreach ($del_nodes as $node_id => $node) {
413 $this->tree->deleteReference($node_id);
414 if ($this->tree->isInTree($node_id)) {
415 $this->tree->deleteTree($node);
426 $this->tpl->setOnScreenMessage(
"success", $this->
lng->txt(
"msg_removed"),
true);
427 $this->
ctrl->redirect($this,
"");
432 return parent::getHTML();
440 return parent::withReferences();
444 parent::setCreationMode($mode);
448 return parent::getCreationMode();
452 return parent::prepareOutput($show_sub_objects);
456 parent::setTitleAndDescription();
460 parent::omitLocator($omit);
468 parent::setTargetFrame($cmd, $target_frame);
472 return parent::isVisible($ref_id, $type);
476 return parent::getCenterColumnHTML();
480 return parent::getRightColumnHTML();
484 parent::setColumnSettings($column_gui);
492 parent::checkPermission($perm, $cmd, $type,
$ref_id);
496 parent::showPossibleSubObjects();
500 parent::cancelDeleteObject();
504 parent::redirectToRefId($ref_id, $cmd);
508 return parent::fillCloneTemplate($tpl_varname, $type);
515 parent::addAdminLocatorItems($do_not_add_object);
523 switch ($this->id_type) {
524 case self::REPOSITORY_NODE_ID:
525 case self::REPOSITORY_OBJECT_ID:
526 parent::viewObject();
529 case self::WORKSPACE_NODE_ID:
530 case self::WORKSPACE_OBJECT_ID:
534 case self::OBJECT_ID:
535 case self::PORTFOLIO_OBJECT_ID:
548 switch ($this->id_type) {
549 case self::REPOSITORY_NODE_ID:
550 case self::REPOSITORY_OBJECT_ID:
552 $this->tabs_gui->addTab(
554 $this->
lng->txt(
"perm_settings"),
555 $this->
ctrl->getLinkTargetByClass(array(get_class($this),
"ilpermissiongui"),
"perm")
560 case self::WORKSPACE_NODE_ID:
561 case self::WORKSPACE_OBJECT_ID:
565 in_array($this->type, array(
"file",
"blog")) &&
568 $this->tabs_gui->addTab(
570 $this->
lng->txt(
"wsp_permissions"),
571 $this->
ctrl->getLinkTargetByClass(array(get_class($this),
"ilworkspaceaccessgui"),
"share")
586 die(
"ilObject2GUI::getReturnLocation() is deprecated.");
590 die(
"ilObject2GUI::setReturnLocation() is deprecated.");
594 die(
"ilObject2GUI::showActions() is deprecated.");
598 die(
"ilObject2GUI::getTabs() is deprecated.");
611 abstract public function getType(): string;
618 parent::createObject();
622 parent::saveObject();
626 parent::editObject();
630 parent::updateObject();
634 parent::cancelObject();
644 $forms = parent::initCreationForms($new_type);
647 if ($this->id_type == self::WORKSPACE_NODE_ID) {
648 unset($forms[self::CFORM_CLONE]);
656 parent::importFileObject($this->parent_id);
664 $this->object_id = $obj->
getId();
666 if (!$parent_node_id) {
671 if ($this->retriever->has(
'crtptrefid')) {
672 $parent_node_id = $this->retriever->getMaybeInt(
'crtptrefid') ?? 0;
675 switch ($this->id_type) {
676 case self::REPOSITORY_NODE_ID:
677 case self::REPOSITORY_OBJECT_ID:
678 if (!$this->node_id) {
686 $rbac_log_roles = $this->rbac_review->getParentRoleIds($this->node_id,
false);
690 $this->
ctrl->setParameter($this,
"ref_id", $this->node_id);
693 case self::WORKSPACE_NODE_ID:
694 case self::WORKSPACE_OBJECT_ID:
695 if (!$this->node_id) {
696 $this->node_id = $this->tree->insertObject($parent_node_id, $this->object_id);
700 $this->
ctrl->setParameter($this,
"wsp_id", $this->node_id);
703 case self::OBJECT_ID:
704 case self::PORTFOLIO_OBJECT_ID:
714 self::handleAfterSaveCallback($obj, $this->retriever->getMaybeInt(
'crtcb'));
723 $objDefinition = $DIC[
"objDefinition"];
725 $callback_ref_id = (
int) $callback_ref_id;
726 if ($callback_ref_id) {
728 $class_name =
"ilObj" . $objDefinition->getClassName($callback_type) .
"GUI";
729 if (strtolower($class_name) ==
"ilobjitemgroupgui") {
730 $callback_obj =
new $class_name($callback_ref_id);
732 $callback_obj =
new $class_name(null, $callback_ref_id,
true,
false);
734 $callback_obj->afterSaveCallback($obj);
744 if ($perm ==
"create") {
749 return $this->
getAccessHandler()->checkAccess($perm .
"_" . $type, $cmd, $node_id);
761 if ($this->obj_id && $this->
object->getOwner() == $this->
user->getId()) {
772 if ($this->id_type == self::WORKSPACE_NODE_ID) {
773 if (!$this->creation_mode && $this->object_id) {
782 $dispatcher->setSubObject($sub_type, $sub_id);
785 $this->
ctrl->getLinkTarget($this,
"redrawHeaderAction",
"",
true),
787 $this->
ctrl->getLinkTargetByClass([
"ilcommonactiondispatchergui",
"iltagginggui"],
"")
790 $lg = $dispatcher->initHeaderAction();
792 if (is_object($lg)) {
795 $lg->setContainerObject($this);
800 $lg->enableNotes(
true);
808 return parent::initHeaderAction($sub_type, $sub_id);
816 parent::redrawHeaderActionObject();
821 if ($this->id_type == self::WORKSPACE_NODE_ID) {
826 $plink->setIncludePermanentLinkText(
false);
827 return $plink->getHTML();
getReturnLocation(string $cmd, string $location="")
Deprecated functions.
checkPermission(string $perm, string $cmd="", string $type="", int $ref_id=null)
delete()
delete object or referenced object (in the case of a referenced object, object data is only deleted i...
ilRbacReview $rbac_review
static gatherFaPa(int $a_ref_id, array $a_role_ids, bool $a_add_action=false)
initCreationForms(string $new_type)
Init creation forms.
executeCommand()
execute command
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
view()
view object content (repository/workspace switch)
fillCloneTemplate(?string $tpl_varname, string $type)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
New implementation of ilObjectGUI.
$location
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
if(! $DIC->user() ->getId()||!ilLTIConsumerAccess::hasCustomProviderCreationAccess()) $params
static prepareJsLinks(string $redraw_url, string $notes_url, string $tags_url, ilGlobalTemplateInterface $tpl=null)
Insert js/ajax links into template.
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)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
RequestWrapper $request_wrapper
putObjectInTree(ilObject $obj, int $parent_node_id=null)
Add object to tree at given position.
setPermissions(int $parent_ref_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const REPOSITORY_OBJECT_ID
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...
omitLocator(bool $omit=true)
createReference()
creates reference for object
parses the objects.xml it handles the xml-description of all ilias objects
static add(int $a_action, int $a_ref_id, array $a_diff, bool $a_source_ref_id=false)
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.
Interface RequestWrapper.
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)
const PORTFOLIO_OBJECT_ID
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.
ArrayBasedRequestWrapper $post_wrapper
withReferences()
Final/Private declaration of unchanged parent methods.
Base class for all sub item list gui's.
const WORKSPACE_OBJECT_ID
redrawHeaderAction()
Updating icons after ajax call.
setTabs()
create tabs (repository/workspace switch)
setColumnSettings(ilColumnGUI $column_gui)
getPermanentLinkWidget(string $append=null, bool $center=false)
ilObjectService $object_service
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.
Error Handling & global info handling uses PEAR error class.
redirectToRefId(int $ref_id, string $cmd="")
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static handleAfterSaveCallback(ilObject $obj, ?int $callback_ref_id)
After creation callback.
Access handler for portfolio NOTE: This file needs to stay in the classes directory, WAC will be confused otherwise.
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)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
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)