3 declare(strict_types=1);
32 $this->target_type =
'prg';
33 $this->reference_type =
'prgr';
37 public static function _goto(
int $target): void
47 if (!(
int) $_REQUEST[
'target_id']) {
50 if (!$ilAccess->checkAccess(
'visible',
'', (
int) $_REQUEST[
'target_id'])) {
51 $this->tpl->setOnScreenMessage(
"failure", $this->
lng->txt(
'permission_denied'));
55 $this->tpl->setOnScreenMessage(
"failure", $this->
lng->txt(
'prgr_may_not_create_circular_reference'));
65 $obj->setTargetId($target_obj_id);
67 parent::putObjectInTree($obj, $parent_node_id);
72 if ($reference_position === $obj_to_be_referenced) {
75 $queque = [$reference_position];
76 while ($parent = array_shift($queque)) {
77 $p_parent = (
int) $this->tree->getParentId($parent);
78 if ($p_parent === $obj_to_be_referenced) {
82 $queque[] = $p_parent;
86 $parent_ref_ref_id = (
int) array_shift($ref_ids);
87 $parent_ref_loc = (
int) $this->tree->getParentId($parent_ref_ref_id);
88 if ($parent_ref_loc === $obj_to_be_referenced) {
92 $queque[] = $parent_ref_loc;
static _getAllReferences(int $id)
get all reference ids for object ID
static _goto(string $target)
static _lookupObjId(int $ref_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _goto(int $target)
form( $class_path, string $cmd)
static _lookupSourceIds(int $a_target_id)
Get ids of all container references that target the object with the given id.
__construct(Container $dic, ilPlugin $plugin)
static _lookupTargetRefId(int $a_obj_id)
__construct( $data, int $id, bool $call_by_reference=true, bool $prepare_output=false)
putObjectInTree(ilObject $obj, $parent_node_id=null)
static _lookupType(int $id, bool $reference=false)
tryingToCreateCircularReference(int $obj_to_be_referenced, int $reference_position)