ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjItemGroup.php
Go to the documentation of this file.
1 <?php
2 
24 {
26  protected int $access_type;
27  protected int $access_begin;
28  protected int $access_end;
29  protected bool $access_visibility;
31 
32  public function __construct(
33  int $a_id = 0,
34  bool $a_reference = true
35  ) {
36  global $DIC;
37 
38  $this->log = $DIC["ilLog"];
39  $tree = $DIC->repositoryTree();
40  $objDefinition = $DIC["objDefinition"];
41  $ilDB = $DIC->database();
42 
43  $this->tree = $tree;
44  $this->obj_def = $objDefinition;
45  $this->db = $ilDB;
46 
47  $this->item_data_ar = new ilItemGroupAR();
48 
49  parent::__construct($a_id, $a_reference);
50  }
51 
52  public function setId($a_id): void
53  {
54  parent::setId($a_id);
55  $this->item_data_ar->setId($a_id);
56  }
57 
58  public function initType(): void
59  {
60  $this->type = "itgr";
61  }
62 
63  public function setHideTitle(bool $a_val): void
64  {
65  $this->item_data_ar->setHideTitle($a_val);
66  }
67 
68  public function getHideTitle(): bool
69  {
70  return $this->item_data_ar->getHideTitle();
71  }
72 
76  public function setBehaviour(int $a_val): void
77  {
78  $this->item_data_ar->setBehaviour($a_val);
79  }
80 
81  public function getListPresentation(): string
82  {
83  return $this->item_data_ar->getListPresentation();
84  }
85 
86  public function setListPresentation(string $a_val): void
87  {
88  $this->item_data_ar->setListPresentation($a_val);
89  }
90 
91  public function getTileSize(): int
92  {
93  return $this->item_data_ar->getTileSize();
94  }
95 
96  public function setTileSize(int $a_val): void
97  {
98  $this->item_data_ar->setTileSize($a_val);
99  }
100 
101  public function getBehaviour(): int
102  {
103  return $this->item_data_ar->getBehaviour();
104  }
105 
106  protected function doRead(): void
107  {
108  $this->item_data_ar = new ilItemGroupAR($this->getId());
109  }
110 
111  protected function doCreate(bool $clone_mode = false): void
112  {
113  global $DIC;
114 
115  if ($this->getId()) {
116  $this->item_data_ar->setId($this->getId());
117  $this->item_data_ar->create();
118  }
119 
120  $lng = $DIC->language();
121 
122  // add default translation
123  $obj_trans = ilObjectTranslation::getInstance($this->getId());
124  $obj_trans->addLanguage(
126  $this->getTitle(),
127  $this->getDescription(),
128  true,
129  true
130  );
131  $obj_trans->save();
132  }
133 
134  protected function doUpdate(): void
135  {
136  if ($this->getId()) {
137  $this->item_data_ar->update();
138 
139  $trans = ilObjectTranslation::getInstance($this->getId());
140  ;
141  $trans->setDefaultTitle($this->getTitle());
142  $trans->setDefaultDescription($this->getLongDescription());
143  $trans->save();
144  }
145  }
146 
147  protected function doDelete(): void
148  {
149  if ($this->getId()) {
150  $this->item_data_ar->delete();
151  }
152  }
153 
154  protected function doCloneObject(ilObject2 $new_obj, int $a_target_id, ?int $a_copy_id = null): void
155  {
156  assert($new_obj instanceof ilObjItemGroup);
157  $new_obj->setHideTitle($this->getHideTitle());
158  $new_obj->setBehaviour($this->getBehaviour());
159  $new_obj->setListPresentation($this->getListPresentation());
160  $new_obj->setTileSize($this->getTileSize());
161 
162 
163  // translations
164  $ot = ilObjectTranslation::getInstance($this->getId());
165  $ot->copy($new_obj->getId());
166  $ot2 = ilObjectTranslation::getInstance($new_obj->getId());
167  $ot2->read();
168  if ($ot2->getDefaultTitle() !== "") {
169  $new_obj->setTitle($ot2->getDefaultTitle());
170  }
171  if ($ot2->getDefaultDescription() !== "") {
172  $new_obj->setDescription($ot2->getDefaultDescription());
173  }
174 
175  $new_obj->update();
176  }
177 
178  public function cloneDependencies(int $a_target_id, int $a_copy_id): bool
179  {
180  parent::cloneDependencies($a_target_id, $a_copy_id);
181 
182  $ig_items = new ilItemGroupItems($a_target_id);
183  $ig_items->cloneItems($this->getRefId(), $a_copy_id);
184 
185  return true;
186  }
187 
189  ilContainer $a_source_container,
190  int $a_copy_id
191  ): void {
192  global $DIC;
193 
194  $ilLog = $DIC["ilLog"];
195 
196  $ilLog->write(__METHOD__ . ': Fix item group references in ' . $a_source_container->getType());
197 
198  $cwo = ilCopyWizardOptions::_getInstance($a_copy_id);
199  $mappings = $cwo->getMappings();
200 
201  $new_container_ref_id = $mappings[$a_source_container->getRefId()];
202  $ilLog->write(__METHOD__ . ': 2-' . $new_container_ref_id . '-');
203  $new_container_obj_id = ilObject::_lookupObjId($new_container_ref_id);
204 
205  $ilLog->write(__METHOD__ . ': 3' . $new_container_obj_id . '-');
206  if (ilPageObject::_exists("cont", $new_container_obj_id)) {
207  $ilLog->write(__METHOD__ . ': 4');
208  $new_page = new ilContainerPage($new_container_obj_id);
209  $new_page->buildDom();
210  ilPCResources::modifyItemGroupRefIdsByMapping($new_page, $mappings);
211  $new_page->update();
212  }
213  $ilLog->write(__METHOD__ . ': 5');
214  }
215 
216  public static function lookupHideTitle(int $a_id): bool
217  {
218  return (bool) self::lookup($a_id, "hide_title");
219  }
220 
221  public static function lookupBehaviour(int $a_id): int
222  {
223  return (int) self::lookup($a_id, "behaviour");
224  }
225 
226  protected static function lookup(int $a_id, string $a_key): string
227  {
228  global $DIC;
229 
230  $ilDB = $DIC->database();
231 
232  $set = $ilDB->query(
233  "SELECT " . $a_key . " FROM itgr_data " .
234  " WHERE id = " . $ilDB->quote($a_id, "integer")
235  );
236  $rec = $ilDB->fetchAssoc($set);
237  return $rec[$a_key];
238  }
239 }
setBehaviour(int $a_val)
Set behaviour (see ilItemGroupBehaviour)
getDefaultLanguage()
Return default language.
setListPresentation(string $a_val)
ilTree $tree
static lookupHideTitle(int $a_id)
setTitle(string $title)
static modifyItemGroupRefIdsByMapping(ilPageObject $a_page, array $mappings)
static _lookupObjId(int $ref_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setHideTitle(bool $a_val)
Container page object.
static _exists(string $a_parent_type, int $a_id, string $a_lang="", bool $a_no_cache=false)
Checks whether page exists.
ilLanguage $lng
ilObjectDefinition $obj_def
static getInstance(int $obj_id)
global $DIC
Definition: shib_login.php:22
cloneDependencies(int $a_target_id, int $a_copy_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static lookupBehaviour(int $a_id)
doCreate(bool $clone_mode=false)
static fixContainerItemGroupRefsAfterCloning(ilContainer $a_source_container, int $a_copy_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(int $a_id=0, bool $a_reference=true)
__construct(Container $dic, ilPlugin $plugin)
getLongDescription()
get object long description (stored in object_description)
doCloneObject(ilObject2 $new_obj, int $a_target_id, ?int $a_copy_id=null)
static _getInstance(int $a_copy_id)
ilItemGroupAR $item_data_ar
static lookup(int $a_id, string $a_key)
setDescription(string $description)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...