ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilLMPageObject.php
Go to the documentation of this file.
1 <?php
2 
32 {
33  protected bool $halt_on_error;
34  protected array $files_contained;
35  protected array $mobs_contained;
36  protected bool $contains_int_link;
38 
39  public function __construct(
40  ilObjLearningModule $a_content_obj,
41  int $a_id = 0,
42  bool $a_halt = true
43  ) {
44  parent::__construct($a_content_obj, $a_id);
45  $this->setType("pg");
46  $this->id = $a_id;
47 
48  $this->contains_int_link = false;
49  $this->mobs_contained = array();
50  $this->files_contained = array();
51  $this->halt_on_error = $a_halt;
52 
53  if ($a_id != 0) {
54  $this->read();
55  }
56  }
57 
58  public function read(): void
59  {
60  parent::read();
61  $this->page_object = new ilLMPage($this->id, 0);
62  }
63 
64  public function create(
65  bool $a_upload = false,
66  bool $a_omit_page_object_creation = false,
67  int $a_layout_id = 0
68  ): void {
69  parent::create($a_upload);
70  if ($a_omit_page_object_creation) {
71  return;
72  }
73  if (!is_object($this->page_object)) {
74  $this->page_object = new ilLMPage();
75  }
76  $this->page_object->setId($this->getId());
77  $this->page_object->setParentId($this->getLMId());
78  if ($a_layout_id == 0) {
79  $this->page_object->create(false);
80  } else {
81  $this->page_object->createWithLayoutId($a_layout_id);
82  }
83  }
84 
85  public function delete(bool $a_delete_meta_data = true): void
86  {
87  parent::delete($a_delete_meta_data);
88  $this->page_object->delete();
89  }
90 
91  // copy page
92  public function copy(
93  ilObjLearningModule $a_target_lm
94  ): ilLMPageObject {
95  // copy page
96  $lm_page = new ilLMPageObject($a_target_lm);
97  $lm_page->setTitle($this->getTitle());
98  $lm_page->setShortTitle($this->getShortTitle());
99  $lm_page->setLayout($this->getLayout());
100  $lm_page->setLMId($a_target_lm->getId());
101  $lm_page->setType($this->getType());
102  $lm_page->setDescription($this->getDescription());
103  $lm_page->setImportId("il__pg_" . $this->getId());
104  $lm_page->create(true); // setting "upload" flag to true prevents creating of meta data
105 
106  // check whether export id already exists in the target lm
107  $del_exp_id = false;
108  $exp_id = ilLMPageObject::getExportId($this->getLMId(), $this->getId());
109  if (trim($exp_id) != "") {
110  if (ilLMPageObject::existsExportID($a_target_lm->getId(), $exp_id)) {
111  $del_exp_id = true;
112  }
113  }
114 
115  // copy meta data
116  $this->lom_services->derive()
117  ->fromObject($this->getLMId(), $this->getId(), $this->getType())
118  ->forObject($a_target_lm->getId(), $lm_page->getId(), $this->getType());
119 
120  // check whether export id already exists in the target lm
121  if ($del_exp_id) {
122  ilLMPageObject::saveExportId($a_target_lm->getId(), $lm_page->getId(), "");
123  } else {
125  $a_target_lm->getId(),
126  $lm_page->getId(),
127  trim($exp_id)
128  );
129  }
130 
131  // copy page content and activation
132  $page = $lm_page->getPageObject();
133  $this->page_object->copy($page->getId(), $page->getParentType(), $page->getParentId());
134  $lm_page->read(); // this gets the updated page object into lm page
135 
136  // copy translations
137  ilLMObjTranslation::copy($this->getId(), $lm_page->getId());
138 
139  return $lm_page;
140  }
141 
145  public function copyToOtherContObject(
146  ilObjLearningModule $a_cont_obj,
147  array &$a_copied_nodes
148  ): ilLMPageObject {
149  // copy page
150  $lm_page = new ilLMPageObject($a_cont_obj);
151  $lm_page->setTitle($this->getTitle());
152  $lm_page->setShortTitle($this->getShortTitle());
153  $lm_page->setLMId($a_cont_obj->getId());
154  $lm_page->setImportId("il__pg_" . $this->getId());
155  $lm_page->setType($this->getType());
156  $lm_page->setDescription($this->getDescription());
157  $lm_page->create(true); // setting "upload" flag to true prevents creating of meta data
158  $a_copied_nodes[$this->getId()] = $lm_page->getId();
159 
160  // copy meta data
161  $this->lom_services->derive()
162  ->fromObject($this->getLMId(), $this->getId(), $this->getType())
163  ->forObject($a_cont_obj->getId(), $lm_page->getId(), $this->getType());
164 
165  // copy page content
166  $page = $lm_page->getPageObject();
167  $page->setXMLContent($this->page_object->getXMLContent());
168  $page->buildDom();
169  $page->update();
170 
171  return $lm_page;
172  }
173 
174 
178  public function assignPageObject(ilLMPage $a_page_obj): void
179  {
180  $this->page_object = $a_page_obj;
181  }
182 
183 
187  public function getPageObject(): ilLMPage
188  {
189  return $this->page_object;
190  }
191 
192  public function setId(int $a_id): void
193  {
194  $this->id = $a_id;
195  }
196 
197  public function getId(): int
198  {
199  return $this->id;
200  }
201 
202  public static function getPageList(int $lm_id): array
203  {
204  return ilLMObject::getObjectList($lm_id, "pg");
205  }
206 
210  public static function getPagesWithLinksList(
211  int $a_lm_id,
212  string $a_par_type
213  ): array {
214  $pages = ilLMPageObject::getPageList($a_lm_id);
215  $linked_pages = ilLMPage::getPagesWithLinks($a_par_type, $a_lm_id);
216  $result = array();
217  foreach ($pages as $page) {
218  if (isset($linked_pages[$page["obj_id"]])) {
219  $result[] = $page;
220  }
221  }
222  return $result;
223  }
224 
230  public static function _getPresentationTitle(
231  int $a_pg_id,
232  string $a_mode = self::CHAPTER_TITLE,
233  bool $a_include_numbers = false,
234  bool $a_time_scheduled_activation = false,
235  bool $a_force_content = false,
236  int $a_lm_id = 0,
237  string $a_lang = "-",
238  bool $a_include_short = false
239  ): string {
240  if ($a_mode == self::NO_HEADER && !$a_force_content) {
241  return "";
242  }
243 
244  $cur_cnt = 0;
245 
246  if ($a_lm_id == 0) {
247  $a_lm_id = ilLMObject::_lookupContObjID($a_pg_id);
248  }
249 
250  if ($a_lm_id == 0) {
251  return "";
252  }
253 
254  // this is optimized when ilLMObject::preloadDataByLM is invoked (e.g. done in ilLMExplorerGUI)
255  $title = "";
256  if ($a_include_short) {
257  $title = trim(ilLMObject::_lookupShortTitle($a_pg_id));
258  }
259  if ($title == "") {
260  $title = ilLMObject::_lookupTitle($a_pg_id);
261  }
262 
263  // this is also optimized since ilObjectTranslation re-uses instances for one lm
264  $ot = ilObjectTranslation::getInstance($a_lm_id);
265  $languages = $ot->getLanguages();
266 
267  if ($a_lang != "-" && $ot->getContentActivated()) {
268  $lmobjtrans = new ilLMObjTranslation($a_pg_id, $a_lang);
269  $trans_title = "";
270  if ($a_include_short) {
271  $trans_title = trim($lmobjtrans->getShortTitle());
272  }
273  if ($trans_title == "") {
274  $trans_title = $lmobjtrans->getTitle();
275  }
276  if ($trans_title == "") {
277  $lmobjtrans = new ilLMObjTranslation($a_pg_id, $ot->getFallbackLanguage());
278  $trans_title = $lmobjtrans->getTitle();
279  }
280  if ($trans_title != "") {
281  $title = $trans_title;
282  }
283  }
284 
285  if ($a_mode == self::PAGE_TITLE) {
286  return $title;
287  }
288 
289  $tree = ilLMTree::getInstance($a_lm_id);
290 
291  if ($tree->isInTree($a_pg_id)) {
292  $pred_node = $tree->fetchPredecessorNode($a_pg_id, "st");
293  $childs = $tree->getChildsByType($pred_node["obj_id"], "pg");
294  $cnt_str = "";
295  if (count($childs) > 1) {
296  $cnt = 0;
297  foreach ($childs as $child) {
299  $child["obj_id"],
300  ilObject::_lookupType($a_lm_id),
301  $a_time_scheduled_activation
302  );
303 
304  if (!$active) {
305  $act_data = ilLMPage::_lookupActivationData((int) $child["obj_id"], ilObject::_lookupType($a_lm_id));
306  if ($act_data["show_activation_info"] &&
307  (ilUtil::now() < $act_data["activation_start"])) {
308  $active = true;
309  }
310  }
311 
312  if ($child["type"] != "pg" || $active) {
313  $cnt++;
314  }
315  if ($child["obj_id"] == $a_pg_id) {
316  $cur_cnt = $cnt;
317  }
318  }
319  if ($cnt > 1) {
320  $cnt_str = " (" . $cur_cnt . "/" . $cnt . ")";
321  }
322  }
324  $pred_node["obj_id"],
325  self::CHAPTER_TITLE,
326  $a_include_numbers,
327  false,
328  false,
329  0,
330  $a_lang,
331  true
332  ) . $cnt_str;
333  } else {
334  return $title;
335  }
336  }
337 
341  public function exportXML(
342  ilXmlWriter $a_xml_writer,
343  string $a_mode = "normal",
344  int $a_inst = 0
345  ): void {
346  $attrs = array();
347  $a_xml_writer->xmlStartTag("PageObject", $attrs);
348 
349  switch ($a_mode) {
350  case "normal":
351  // MetaData
352  $this->exportXMLMetaData($a_xml_writer);
353 
354  // PageContent
355  $this->exportXMLPageContent($a_xml_writer, $a_inst);
356  break;
357 
358  case "alias":
359  $attrs = array();
360  $attrs["OriginId"] = "il_" . $a_inst .
361  "_pg_" . $this->getId();
362  $a_xml_writer->xmlElement("PageAlias", $attrs);
363  break;
364  }
365  $a_xml_writer->xmlEndTag("PageObject");
366  }
367 
371  public static function _exportXMLAlias(
372  ilXmlWriter $a_xml_writer,
373  int $a_id,
374  int $a_inst = 0
375  ): void {
376  $attrs = array();
377  $a_xml_writer->xmlStartTag("PageObject", $attrs);
378 
379  $attrs = array();
380  $attrs["OriginId"] = "il_" . $a_inst .
381  "_pg_" . $a_id;
382  $a_xml_writer->xmlElement("PageAlias", $attrs);
383 
384  $a_xml_writer->xmlEndTag("PageObject");
385  }
386 
387  public function exportXMLMetaData(
388  ilXmlWriter $a_xml_writer
389  ): void {
390  /*
391  * As far as I can tell, this is unused.
392  *
393  * I traced usages of this method up to ilObjContentObjectGUI::export and
394  * ilObjMediaPoolGUI::export (both via ilObjContentObject::exportXML), which have
395  * both been made redundant by the usual export mechanisms.
396  */
397  /*$md2xml = new ilMD2XML($this->getLMId(), $this->getId(), $this->getType());
398  $md2xml->setExportMode(true);
399  $md2xml->startExport();
400  $a_xml_writer->appendXML($md2xml->getXML());*/
401  }
402 
403  public function modifyExportIdentifier(
404  string $a_tag,
405  string $a_param,
406  string $a_value
407  ): string {
408  if ($a_tag == "Identifier" && $a_param == "Entry") {
409  $a_value = "il_" . IL_INST_ID . "_pg_" . $this->getId();
410  }
411 
412  return $a_value;
413  }
414 
415  public function exportXMLPageContent(
416  ilXmlWriter $a_xml_writer,
417  int $a_inst = 0
418  ): void {
419  $this->page_object->buildDom();
420  $this->page_object->insertInstIntoIDs($a_inst);
421  $this->mobs_contained = $this->page_object->collectMediaObjects(false);
422  $this->files_contained = ilPCFileList::collectFileItems($this->page_object, $this->page_object->getDomDoc());
423  $xml = $this->page_object->getXMLFromDom(false, false, false, "", true);
424  $xml = str_replace("&", "&amp;", $xml);
425  $a_xml_writer->appendXML($xml);
426 
427  $this->page_object->freeDom();
428  }
429 
434  public function getQuestionIds(): array
435  {
437  $this->content_object->getType(),
438  $this->getId()
439  );
440  }
441 
446  public function getMediaObjectIds(): array
447  {
448  return $this->mobs_contained;
449  }
450 
455  public function getFileItemIds(): array
456  {
457  return $this->files_contained;
458  }
459 
460 
464  public static function queryQuestionsOfLearningModule(
465  int $a_lm_id,
466  string $a_order_field,
467  string $a_order_dir,
468  int $a_offset,
469  int $a_limit
470  ): array {
471  global $DIC;
472 
473  $ilDB = $DIC->database();
474 
475  // count query
476  $count_query = "SELECT count(pq.question_id) cnt ";
477 
478  // basic query
479  $query = "SELECT pq.page_id, pq.question_id ";
480 
481  $from = " FROM page_question pq JOIN lm_tree t ON (t.lm_id = " . $ilDB->quote($a_lm_id, "integer") .
482  " AND pq.page_id = t.child and pq.page_parent_type = " . $ilDB->quote("lm", "text") . ") " .
483  " WHERE t.lm_id = " . $ilDB->quote($a_lm_id, "integer");
484  $count_query .= $from;
485  $query .= $from;
486 
487  // count query
488  $set = $ilDB->query($count_query);
489  $cnt = 0;
490  if ($rec = $ilDB->fetchAssoc($set)) {
491  $cnt = $rec["cnt"];
492  }
493 
494  $offset = $a_offset;
495  $limit = $a_limit;
496  if ($a_limit > 0) {
497  $ilDB->setLimit($limit, $offset);
498  }
499 
500  // set query
501  $set = $ilDB->query($query);
502  $result = array();
503  while ($rec = $ilDB->fetchAssoc($set)) {
504  $result[] = $rec;
505  }
506  return array("cnt" => $cnt, "set" => $result);
507  }
508 
512  public static function insertPagesFromTemplate(
513  int $lm_id,
514  int $num,
515  int $node_id,
516  bool $first_child,
517  int $layout_id,
518  string $title = ""
519  ): array {
520  global $DIC;
521 
522  $lng = $DIC->language();
523 
524  if ($title == "") {
525  $title = $lng->txt("cont_new_page");
526  }
527  $lm_tree = new ilLMTree($lm_id);
528  $lm = new ilObjLearningModule($lm_id, false);
529  if (!$first_child) { // insert after node id
530  $parent_id = $lm_tree->getParentId($node_id);
531  $target = $node_id;
532  } else { // insert as first child
533  $parent_id = $node_id;
534  $target = ilTree::POS_FIRST_NODE;
535  }
536 
537  $page_ids = array();
538  for ($i = 1; $i <= $num; $i++) {
539  $page = new ilLMPageObject($lm);
540  $page->setTitle($title);
541  $page->setLMId($lm->getId());
542  $page->create(false, false, $layout_id);
543  ilLMObject::putInTree($page, $parent_id, $target);
544  $page_ids[] = $page->getId();
545  }
546  $page_ids = array_reverse($page_ids);
547  return $page_ids;
548  }
549 }
static _lookupActive(int $a_id, string $a_parent_type, bool $a_check_scheduled_activation=false, string $a_lang="-")
lookup activation status
static queryQuestionsOfLearningModule(int $a_lm_id, string $a_order_field, string $a_order_dir, int $a_offset, int $a_limit)
Get questions of learning module.
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
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const IL_INST_ID
Definition: constants.php:40
static getPagesWithLinks(string $a_parent_type, int $a_parent_id, string $a_lang="-")
Get all pages for parent object that contain internal links.
getPageObject()
get assigned page object
static getExportId(int $a_lm_id, int $a_lmobj_id, string $a_type="pg")
getQuestionIds()
Get question ids note: this method must be called afer exportXMLPageContent.
setType(string $a_type)
exportXMLMetaData(ilXmlWriter $a_xml_writer)
static _lookupShortTitle(int $a_obj_id)
static getObjectList(int $lm_id, string $type="")
static _lookupActivationData(int $a_id, string $a_parent_type, string $a_lang="-")
Lookup activation data.
appendXML(string $a_str)
append xml string to document
static now()
Return current timestamp in Y-m-d H:i:s format.
static getInstance(int $a_tree_id)
modifyExportIdentifier(string $a_tag, string $a_param, string $a_value)
create(bool $a_upload=false, bool $a_omit_page_object_creation=false, int $a_layout_id=0)
static putInTree(ilLMObject $a_obj, int $a_parent_id=0, int $a_target_node_id=0)
put this object into content object tree
xmlEndTag(string $tag)
Writes an endtag.
static _lookupTitle(int $a_obj_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
const POS_FIRST_NODE
static collectFileItems(ilPageObject $a_page, DOMDocument $a_domdoc)
Get all file items that are used within the page.
static copy(string $a_source_id, string $a_target_id)
Copy all translations of an object.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getFileItemIds()
get ids of all file items within the page note: this method must be called afer exportXMLPageContent ...
__construct(ilObjLearningModule $a_content_obj, int $a_id=0, bool $a_halt=true)
static getInstance(int $obj_id)
static insertPagesFromTemplate(int $lm_id, int $num, int $node_id, bool $first_child, int $layout_id, string $title="")
Insert (multiple) pages templates at node.
global $DIC
Definition: shib_login.php:22
static getPagesWithLinksList(int $a_lm_id, string $a_par_type)
Get all pages of lm that contain any internal links.
existsExportID(int $a_lm_id, int $a_exp_id, string $a_type="pg")
Does export ID exist in lm?
assignPageObject(ilLMPage $a_page_obj)
assign page object
getMediaObjectIds()
get ids of all media objects within the page note: this method must be called afer exportXMLPageConte...
copy(ilObjLearningModule $a_target_lm)
exportXML(ilXmlWriter $a_xml_writer, string $a_mode="normal", int $a_inst=0)
export page object to xml (see ilias_co.dtd)
static saveExportId(int $a_lm_id, int $a_lmobj_id, string $a_exp_id, string $a_type="pg")
static _getPresentationTitle(int $a_pg_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)
presentation title doesn&#39;t have to be page title, it may be chapter title + page title or chapter tit...
static getPageList(int $lm_id)
__construct(Container $dic, ilPlugin $plugin)
global $lng
Definition: privfeed.php:31
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.
xmlElement(string $tag, $attrs=null, $data=null, $encode=true, $escape=true)
Writes a basic element (no children, just textual content)
static _lookupType(int $id, bool $reference=false)
exportXMLPageContent(ilXmlWriter $a_xml_writer, int $a_inst=0)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _getQuestionIdsForPage(string $a_parent_type, int $a_page_id, string $a_lang="-")
copyToOtherContObject(ilObjLearningModule $a_cont_obj, array &$a_copied_nodes)
copy a page to another content object (learning module / dlib book)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...