ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilStructureObject.php
Go to the documentation of this file.
1 <?php
2 
20 
27 {
28  protected \ILIAS\Help\Map\MapManager $help_map;
30  public string $origin_id;
31  public ilLMTree $tree;
32 
33  public function __construct(
34  ilObjLearningModule $a_content_obj,
35  int $a_id = 0
36  ) {
37  global $DIC;
38 
39  $this->setType("st");
40  parent::__construct($a_content_obj, $a_id);
41  $this->tree = new ilLMTree($this->getLMId());
42  $this->help_map = $DIC->help()->internal()->domain()->map();
43  $this->lom_services = $DIC->learningObjectMetadata();
44  }
45 
46  public function delete(bool $a_delete_meta_data = true): void
47  {
48  // only relevant for online help authoring
49  $this->help_map->removeScreenIdsOfChapter($this->getId());
50 
51  $node_data = $this->tree->getNodeData($this->getId());
52  $this->delete_rec($this->tree, $a_delete_meta_data);
53  $this->tree->deleteTree($node_data);
54  }
55 
59  private function delete_rec(
60  ilLMTree $a_tree,
61  bool $a_delete_meta_data = true
62  ): void {
63  $childs = $a_tree->getChilds($this->getId());
64  foreach ($childs as $child) {
65  $obj = ilLMObjectFactory::getInstance($this->content_object, $child["obj_id"], false);
66  if (is_object($obj)) {
67  if ($obj->getType() == "st") {
68  $obj->delete_rec($a_tree, $a_delete_meta_data);
69  }
70  if ($obj->getType() == "pg") {
71  $obj->delete($a_delete_meta_data);
72  }
73  }
74  unset($obj);
75  }
76  parent::delete($a_delete_meta_data);
77  }
78 
82  public function copy(
83  ilObjLearningModule $a_target_lm
85  $chap = new ilStructureObject($a_target_lm);
86  $chap->setTitle($this->getTitle());
87  if ($this->getLMId() != $a_target_lm->getId()) {
88  $chap->setImportId("il__st_" . $this->getId());
89  }
90  $chap->setLMId($a_target_lm->getId());
91  $chap->setType($this->getType());
92  $chap->setDescription($this->getDescription());
93  $chap->create(true);
94  $a_copied_nodes[$this->getId()] = $chap->getId();
95 
96  // copy meta data
97  $this->lom_services->derive()
98  ->fromObject($this->getLMId(), $this->getId(), $this->getType())
99  ->forObject($a_target_lm->getId(), $chap->getId(), $this->getType());
100 
101  // copy translations
102  ilLMObjTranslation::copy($this->getId(), $chap->getId());
103 
104 
105  return $chap;
106  }
107 
108  public function exportXML(
109  ilXmlWriter $a_xml_writer,
110  int $a_inst,
111  ilLog $expLog
112  ): void {
113  $expLog->write(date("[y-m-d H:i:s] ") . "Structure Object " . $this->getId());
114  $attrs = array();
115  $a_xml_writer->xmlStartTag("StructureObject", $attrs);
116 
117  // MetaData
118  $this->exportXMLMetaData($a_xml_writer);
119 
120  // StructureObjects
121  $this->exportXMLPageObjects($a_xml_writer, $a_inst);
122 
123  // PageObjects
124  $this->exportXMLStructureObjects($a_xml_writer, $a_inst, $expLog);
125 
126  $a_xml_writer->xmlEndTag("StructureObject");
127  }
128 
129  public function exportXMLMetaData(
130  ilXmlWriter $a_xml_writer
131  ): void {
132  /*
133  * As far as I can tell, this is unused.
134  *
135  * I traced usages of this method up to ilObjContentObjectGUI::export and
136  * ilObjMediaPoolGUI::export (both via ilObjContentObject::exportXML), which have
137  * both been made redundant by the usual export mechanisms.
138  */
139  /*$md2xml = new ilMD2XML($this->getLMId(), $this->getId(), $this->getType());
140  $md2xml->setExportMode(true);
141  $md2xml->startExport();
142  $a_xml_writer->appendXML($md2xml->getXML());*/
143  }
144 
145  public function modifyExportIdentifier(
146  string $a_tag,
147  string $a_param,
148  string $a_value
149  ): string {
150  if ($a_tag == "Identifier" && $a_param == "Entry") {
151  $a_value = "il_" . IL_INST_ID . "_st_" . $this->getId();
152  }
153 
154  return $a_value;
155  }
156 
157  public static function _getPresentationTitle(
158  int $a_st_id,
159  string $a_mode = self::CHAPTER_TITLE,
160  bool $a_include_numbers = false,
161  bool $a_time_scheduled_activation = false,
162  bool $a_force_content = false,
163  int $a_lm_id = 0,
164  string $a_lang = "-",
165  bool $a_include_short = false
166  ): string {
167  global $DIC;
168 
169  $ilDB = $DIC->database();
170 
171  if ($a_lm_id == 0) {
172  $a_lm_id = ilLMObject::_lookupContObjID($a_st_id);
173  }
174 
175  if ($a_lm_id == 0) {
176  return "";
177  }
178 
179  // this is optimized when ilLMObject::preloadDataByLM is invoked (e.g. done in ilLMExplorerGUI)
180  $title = "";
181  if ($a_include_short) {
182  $title = trim(ilLMObject::_lookupShortTitle($a_st_id));
183  }
184  if ($title == "") {
185  $title = ilLMObject::_lookupTitle($a_st_id);
186  }
187 
188  // this is also optimized since ilObjectTranslation re-uses instances for one lm
189  $ot = ilObjectTranslation::getInstance($a_lm_id);
190  $languages = $ot->getLanguages();
191 
192  if ($a_lang != "-" && $ot->getContentActivated()) {
193  $lmobjtrans = new ilLMObjTranslation($a_st_id, $a_lang);
194  $trans_title = "";
195  if ($a_include_short) {
196  $trans_title = trim($lmobjtrans->getShortTitle());
197  }
198  if ($trans_title == "") {
199  $trans_title = $lmobjtrans->getTitle();
200  }
201  if ($trans_title == "") {
202  $lmobjtrans = new ilLMObjTranslation($a_st_id, $ot->getFallbackLanguage());
203  $trans_title = $lmobjtrans->getTitle();
204  }
205  if ($trans_title != "") {
206  $title = $trans_title;
207  }
208  }
209 
210  $tree = ilLMTree::getInstance($a_lm_id);
211 
212  $nr = "";
213  if ($a_include_numbers) {
214  // this is optimized, since isInTree is cached
215  if ($tree->isInTree($a_st_id)) {
216  // optimization needed from here
217 
218  // get chapter tree node
219  $query = "SELECT * FROM lm_tree WHERE child = " .
220  $ilDB->quote($a_st_id, "integer") . " AND lm_id = " .
221  $ilDB->quote($a_lm_id, "integer");
222  $tree_set = $ilDB->query($query);
223  $tree_node = $tree_set->fetchRow(ilDBConstants::FETCHMODE_ASSOC);
224  $depth = $tree_node["depth"];
225 
226  $nr = $tree->getChildSequenceNumber($tree_node, "st") . " ";
227  for ($i = $depth - 1; $i > 1; $i--) {
228  // get next parent tree node
229  $query = "SELECT * FROM lm_tree WHERE child = " .
230  $ilDB->quote($tree_node["parent"], "integer") . " AND lm_id = " .
231  $ilDB->quote($a_lm_id, "integer");
232  $tree_set = $ilDB->query($query);
233  $tree_node = $tree_set->fetchRow(ilDBConstants::FETCHMODE_ASSOC);
234  $seq = $tree->getChildSequenceNumber($tree_node, "st");
235 
236  $nr = $seq . "." . $nr;
237  }
238  }
239  }
240 
241  return $nr . $title;
242  }
243 
244  public function exportXMLPageObjects(
245  ilXmlWriter $a_xml_writer,
246  int $a_inst = 0
247  ): void {
248  $childs = $this->tree->getChilds($this->getId());
249  foreach ($childs as $child) {
250  if ($child["type"] != "pg") {
251  continue;
252  }
253 
254  // export xml to writer object
255  ilLMPageObject::_exportXMLAlias($a_xml_writer, $child["obj_id"], $a_inst);
256  }
257  }
258 
259  public function exportXMLStructureObjects(
260  ilXmlWriter $a_xml_writer,
261  int $a_inst,
262  ilLog $expLog
263  ): void {
264  $childs = $this->tree->getChilds($this->getId());
265  foreach ($childs as $child) {
266  if ($child["type"] != "st") {
267  continue;
268  }
269 
270  // export xml to writer object
271  $structure_obj = new ilStructureObject(
272  $this->getContentObject(),
273  $child["obj_id"]
274  );
275  $structure_obj->exportXML($a_xml_writer, $a_inst, $expLog);
276  unset($structure_obj);
277  }
278  }
279 
280 
281  public static function getChapterList(
282  int $a_lm_id
283  ): array {
284  $tree = new ilLMTree($a_lm_id);
285 
286  $chapters = array();
287  $ndata = $tree->getNodeData($tree->readRootId());
288  $childs = $tree->getSubTree($ndata);
289  foreach ($childs as $child) {
290  if ($child["type"] == "st") {
291  $chapters[] = $child;
292  }
293  }
294  return $chapters;
295  }
296 }
modifyExportIdentifier(string $a_tag, string $a_param, string $a_value)
static _getPresentationTitle(int $a_st_id, string $a_mode=self::CHAPTER_TITLE, bool $a_include_numbers=false, bool $a_time_scheduled_activation=false, bool $a_force_content=false, int $a_lm_id=0, string $a_lang="-", bool $a_include_short=false)
static _exportXMLAlias(ilXmlWriter $a_xml_writer, int $a_id, int $a_inst=0)
export page alias to xml
getNodeData(int $a_node_id, ?int $a_tree_pk=null)
get all information of a node.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
exportXMLPageObjects(ilXmlWriter $a_xml_writer, int $a_inst=0)
const IL_INST_ID
Definition: constants.php:40
exportXML(ilXmlWriter $a_xml_writer, int $a_inst, ilLog $expLog)
getChilds(int $a_node_id, string $a_order="", string $a_direction="ASC")
get child nodes of given node
copy(ilObjLearningModule $a_target_lm)
copy chapter
static getInstance(ilObjLearningModule $a_content_obj, int $a_id=0, bool $a_halt=true)
exportXMLStructureObjects(ilXmlWriter $a_xml_writer, int $a_inst, ilLog $expLog)
isInTree(?int $a_node_id)
get all information of a node.
setType(string $a_type)
static _lookupShortTitle(int $a_obj_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: class.ilLog.php:30
static getInstance(int $a_tree_id)
xmlEndTag(string $tag)
Writes an endtag.
static _lookupTitle(int $a_obj_id)
static getChapterList(int $a_lm_id)
delete_rec(ilLMTree $a_tree, bool $a_delete_meta_data=true)
Delete sub tree.
static copy(string $a_source_id, string $a_target_id)
Copy all translations of an object.
static getInstance(int $obj_id)
global $DIC
Definition: shib_login.php:22
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ILIAS Help Map MapManager $help_map
__construct(Container $dic, ilPlugin $plugin)
exportXMLMetaData(ilXmlWriter $a_xml_writer)
static _lookupContObjID(int $a_id)
get learning module id for lm object
xmlStartTag(string $tag, ?array $attrs=null, bool $empty=false, bool $encode=true, bool $escape=true)
Writes a starttag.
write(string $a_msg, $a_log_level=null)
logging
getChildSequenceNumber(array $a_node, string $type="")
get sequence number of node in sibling sequence
getSubTree(array $a_node, bool $a_with_data=true, array $a_type=[])
get all nodes in the subtree under specified node
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(ilObjLearningModule $a_content_obj, int $a_id=0)