ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjStudyProgrammeReferenceGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
25 {
26  public function __construct(
27  $data,
28  int $id,
29  bool $call_by_reference = true,
30  bool $prepare_output = false
31  ) {
32  $this->target_type = 'prg';
33  $this->reference_type = 'prgr';
35  }
36 
37  public static function _goto(string $target): void
38  {
39  $target = (int) $target;
41  ilObjStudyProgrammeGUI::_goto($target_ref_id . "_");
42  }
43 
44  public function saveObject(): void
45  {
46  $ilAccess = $this->access;
47 
48  if (!(int) $_REQUEST['target_id']) {
49  $this->createObject();
50  }
51  if (!$ilAccess->checkAccess('visible', '', (int) $_REQUEST['target_id'])) {
52  $this->tpl->setOnScreenMessage("failure", $this->lng->txt('permission_denied'));
53  $this->createObject();
54  }
55  if ($this->tryingToCreateCircularReference((int) $_REQUEST['target_id'], (int) $_REQUEST['ref_id'])) {
56  $this->tpl->setOnScreenMessage("failure", $this->lng->txt('prgr_may_not_create_circular_reference'));
57  $this->createObject();
58  }
59  parent::saveObject();
60  }
61 
62  public function putObjectInTree(ilObject $obj, $parent_node_id = null): void
63  {
64  // when this is called, the target already should be defined...
65  $target_obj_id = ilObject::_lookupObjId((int) $this->form->getInput('target_id'));
66  $obj->setTargetId($target_obj_id);
67  $obj->update();
68  parent::putObjectInTree($obj, $parent_node_id);
69  }
70 
71  protected function tryingToCreateCircularReference(int $obj_to_be_referenced, int $reference_position): bool
72  {
73  if ($reference_position === $obj_to_be_referenced) {
74  return true;
75  }
76  $queque = [$reference_position];
77  while ($parent = array_shift($queque)) {
78  $p_parent = (int) $this->tree->getParentId($parent);
79  if ($p_parent === $obj_to_be_referenced) {
80  return true;
81  }
82  if (ilObject::_lookupType($p_parent, true) === 'prg') {
83  $queque[] = $p_parent;
84  }
85  foreach (ilContainerReference::_lookupSourceIds(ilObject::_lookupObjId($parent)) as $parent_ref_obj_id) {
86  $ref_ids = ilObject::_getAllReferences($parent_ref_obj_id);
87  $parent_ref_ref_id = (int) array_shift($ref_ids);
88  $parent_ref_loc = (int) $this->tree->getParentId($parent_ref_ref_id);
89  if ($parent_ref_loc === $obj_to_be_referenced) {
90  return true;
91  }
92  if (ilObject::_lookupType($parent_ref_loc, true) === 'prg') {
93  $queque[] = $parent_ref_loc;
94  }
95  }
96  }
97  return false;
98  }
99 }
static _getAllReferences(int $id)
get all reference ids for object ID
static _lookupObjId(int $ref_id)
ilObjStudyProgrammeReferenceGUI: ilPermissionGUI, ilInfoScreenGUI, ilPropertyFormGUI ...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static _lookupSourceIds(int $a_target_id)
Get ids of all container references that target the object with the given id.
form( $class_path, string $cmd, string $submit_caption="")
__construct(Container $dic, ilPlugin $plugin)
ilAccessHandler $access
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)