ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilPageObject.php
Go to the documentation of this file.
1 <?php
2 
19 define("IL_INSERT_BEFORE", 0);
20 define("IL_INSERT_AFTER", 1);
21 define("IL_INSERT_CHILD", 2);
22 
23 /*
24 
25  - move dom related code to PageDom class/interface
26  - move ilDB dependency to ar object
27  - move internal links related code to extra class
28  - make factory available through DIC, opt allow decentralized factory parts
29  - PC types
30  -- internal links used/implemented?
31  -- styles used/implemented?
32  - application classes need
33  -- page object
34  --- page object should return php5 domdoc (getDom() vs getDomDoc()?)
35  esp. plugins should use this
36  -- remove content element hook, if content is not allowed
37  - PC types could move to components (e.g. blog, login)
38  - How to modularize xsl?
39  -- read from db?
40  -- xml entries say that xslt code is used -> read file and include in
41  main xslt file
42 
43 */
44 
46 
52 abstract class ilPageObject
53 {
54  protected \ILIAS\COPage\Dom\DomUtil $dom_util;
55  protected \ILIAS\COPage\Link\LinkManager $link;
56  protected \ILIAS\COPage\PC\PCDefinition $pc_definition;
57  protected int $create_user = 0;
61  protected array $id_elements;
62  public int $old_nr;
63  protected bool $page_not_found = false;
64  protected bool $show_page_act_info = false;
66  public static array $exists = array();
67  protected ilDBInterface $db;
68  protected ilObjUser $user;
69  protected ilLanguage $lng;
70  protected ilTree $tree;
72  protected int $id;
73  public ?DOMDocument $dom = null;
74  public string $xml = "";
75  public string $encoding = "";
76  public DomNode $node;
77  public string $cur_dtd = "ilias_pg_9.dtd";
78  public bool $contains_int_link = false;
79  public bool $needs_parsing = false;
80  public string $parent_type = "";
81  public int $parent_id = 0;
82  public array $update_listeners = [];
83  public int $update_listener_cnt = 0;
84  public ?object $offline_handler = null; // see LMPresentation handleCodeParagraph
85  public bool $dom_builded = false;
86  public bool $history_saved = false;
87  protected string $language = "-";
88  protected static array $activation_data = array();
89  protected bool $import_mode = false;
90  protected ilLogger $log;
91  protected ?array $page_record = array();
92  protected bool $active = false;
94  protected string $rendermd5 = "";
95  protected string $renderedcontent = "";
96  protected string $renderedtime = "";
97  protected string $lastchange = "";
98  public int $last_change_user = 0;
99  protected bool $contains_question = false;
100  protected array $hier_ids = [];
101  protected ?string $activationstart = null; // IL_CAL_DATETIME format
102  protected ?string $activationend = null; // IL_CAL_DATETIME format
103  protected \ILIAS\COPage\ReadingTime\ReadingTimeManager $reading_time_manager;
104  protected $concrete_lang = "";
105  protected \ILIAS\COPage\ID\ContentIdManager $content_id_manager;
106  protected \ILIAS\COPage\Page\PageManager $page_manager;
107  protected \ILIAS\COPage\Style\StyleManager $style_manager;
108  protected \ILIAS\COPage\PC\DomainService $pc_service;
109 
110  final public function __construct(
111  int $a_id = 0,
112  int $a_old_nr = 0,
113  string $a_lang = "-"
114  ) {
115  global $DIC;
116  $this->obj_definition = $DIC["objDefinition"];
117  $this->db = $DIC->database();
118  $this->user = $DIC->user();
119  $this->lng = $DIC->language();
120  $this->tree = $DIC->repositoryTree();
121  $this->log = ilLoggerFactory::getLogger('copg');
122  $this->lom_services = $DIC->learningObjectMetadata();
123 
124  $this->reading_time_manager = new ILIAS\COPage\ReadingTime\ReadingTimeManager();
125 
126  $this->parent_type = $this->getParentType();
127  $this->id = $a_id;
128  $this->setLanguage($a_lang);
129 
130  $this->contains_int_link = false;
131  $this->needs_parsing = false;
132  $this->update_listeners = array();
133  $this->update_listener_cnt = 0;
134  $this->dom_builded = false;
135  $this->page_not_found = false;
136  $this->old_nr = $a_old_nr;
137  $this->encoding = "UTF-8";
138  $this->id_elements =
139  array("PageContent",
140  "TableRow",
141  "TableData",
142  "ListItem",
143  "FileItem",
144  "Section",
145  "Tab",
146  "ContentPopup",
147  "GridCell"
148  );
149  $this->setActive(true);
150  $this->show_page_act_info = false;
151 
152  if ($a_id != 0) {
153  $this->read();
154  }
155 
156  $this->initPageConfig();
157  $this->afterConstructor();
158  $domain = $DIC->copage()
159  ->internal()
160  ->domain();
161  $this->content_id_manager = $domain
162  ->contentIds($this);
163  $this->page_manager = $domain->page();
164  $this->pc_service = $domain->pc();
165  $this->pc_definition = $domain->pc()->definition();
166  $this->link = $domain->link();
167  $this->style_manager = $domain->style();
168  $this->dom_util = $domain->domUtil();
169  }
170 
171  public function setContentIdManager(
172  \ILIAS\COPage\ID\ContentIdManager $content_id_manager
173  ): void {
174  $this->content_id_manager = $content_id_manager;
175  }
176 
177  public function afterConstructor(): void
178  {
179  }
180 
181  abstract public function getParentType(): string;
182 
183  public function initPageConfig(): void
184  {
186  $this->setPageConfig($cfg);
187  }
188 
193  public function setLanguage(string $a_val): void
194  {
195  $this->language = $a_val;
196  }
197 
198  public function getLanguage(): string
199  {
200  return $this->language;
201  }
202 
203  public function setPageConfig(ilPageConfig $a_val): void
204  {
205  $this->page_config = $a_val;
206  }
207 
208  public function setConcreteLang(string $a_val)
209  {
210  $this->concrete_lang = $a_val;
211  }
212 
213  public function getConcreteLang(): string
214  {
215  return $this->concrete_lang;
216  }
217 
218  public function getPageConfig(): ilPageConfig
219  {
220  return $this->page_config;
221  }
222 
223  public function setRenderMd5(string $a_rendermd5): void
224  {
225  $this->rendermd5 = $a_rendermd5;
226  }
227 
228  public function getRenderMd5(): string
229  {
230  return $this->rendermd5;
231  }
232 
233  public function setRenderedContent(string $a_renderedcontent): void
234  {
235  $this->renderedcontent = $a_renderedcontent;
236  }
237 
238  public function getRenderedContent(): string
239  {
240  return $this->renderedcontent;
241  }
242 
243  public function setRenderedTime(string $a_renderedtime): void
244  {
245  $this->renderedtime = $a_renderedtime;
246  }
247 
248  public function getRenderedTime(): string
249  {
250  return $this->renderedtime;
251  }
252 
253  public function setLastChange(string $a_lastchange): void
254  {
255  $this->lastchange = $a_lastchange;
256  }
257 
258  public function getLastChange(): string
259  {
260  return $this->lastchange;
261  }
262 
263  public function setLastChangeUser(int $a_val): void
264  {
265  $this->last_change_user = $a_val;
266  }
267 
268  public function getLastChangeUser(): int
269  {
271  }
272 
273  public function setShowActivationInfo(bool $a_val): void
274  {
275  $this->show_page_act_info = $a_val;
276  }
277 
278  public function getShowActivationInfo(): bool
279  {
281  }
282 
283  public function getCreationUserId(): int
284  {
285  return $this->create_user;
286  }
287 
291  public function read(): void
292  {
293  $this->setActive(true);
294  if ($this->old_nr == 0) {
295  $query = "SELECT * FROM page_object" .
296  " WHERE page_id = " . $this->db->quote($this->id, "integer") .
297  " AND parent_type=" . $this->db->quote($this->getParentType(), "text") .
298  " AND lang = " . $this->db->quote($this->getLanguage(), "text");
299  $pg_set = $this->db->query($query);
300  if (!$this->page_record = $this->db->fetchAssoc($pg_set)) {
301  throw new ilCOPageNotFoundException("Error: Page " . $this->id . " is not in database" .
302  " (parent type " . $this->getParentType() . ", lang: " . $this->getLanguage() . ").");
303  }
304  $this->setActive($this->page_record["active"]);
305  $this->setActivationStart($this->page_record["activation_start"]);
306  $this->setActivationEnd($this->page_record["activation_end"]);
307  $this->setShowActivationInfo($this->page_record["show_activation_info"]);
308  } else {
309  $query = "SELECT * FROM page_history" .
310  " WHERE page_id = " . $this->db->quote($this->id, "integer") .
311  " AND parent_type=" . $this->db->quote($this->getParentType(), "text") .
312  " AND nr = " . $this->db->quote($this->old_nr, "integer") .
313  " AND lang = " . $this->db->quote($this->getLanguage(), "text");
314  $pg_set = $this->db->query($query);
315  $this->page_record = $this->db->fetchAssoc($pg_set);
316  }
317  if (!$this->page_record) {
318  throw new ilCOPageNotFoundException("Error: Page " . $this->id . " is not in database" .
319  " (parent type " . $this->getParentType() . ", lang: " . $this->getLanguage() . ").");
320  }
321  $this->xml = $this->page_record["content"];
322  $this->setParentId((int) $this->page_record["parent_id"]);
323  $this->last_change_user = (int) ($this->page_record["last_change_user"] ?? 0);
324  $this->create_user = (int) ($this->page_record["create_user"] ?? 0);
325  $this->setRenderedContent((string) ($this->page_record["rendered_content"] ?? ""));
326  $this->setRenderMd5((string) ($this->page_record["render_md5"] ?? ""));
327  $this->setRenderedTime((string) ($this->page_record["rendered_time"] ?? ""));
328  $this->setLastChange((string) ($this->page_record["last_change"] ?? ""));
329  }
330 
335  public static function _exists(
336  string $a_parent_type,
337  int $a_id,
338  string $a_lang = "",
339  bool $a_no_cache = false
340  ): bool {
341  global $DIC;
342 
343  $db = $DIC->database();
344 
345  if (!$a_no_cache && isset(self::$exists[$a_parent_type . ":" . $a_id . ":" . $a_lang])) {
346  return self::$exists[$a_parent_type . ":" . $a_id . ":" . $a_lang];
347  }
348 
349  $and_lang = "";
350  if ($a_lang != "") {
351  $and_lang = " AND lang = " . $db->quote($a_lang, "text");
352  }
353 
354  $query = "SELECT page_id FROM page_object WHERE page_id = " . $db->quote($a_id, "integer") . " " .
355  "AND parent_type = " . $db->quote($a_parent_type, "text") . $and_lang;
356  $set = $db->query($query);
357  if ($row = $db->fetchAssoc($set)) {
358  self::$exists[$a_parent_type . ":" . $a_id . ":" . $a_lang] = true;
359  return true;
360  } else {
361  self::$exists[$a_parent_type . ":" . $a_id . ":" . $a_lang] = false;
362  return false;
363  }
364  }
365 
369  public static function _existsAndNotEmpty(
370  string $a_parent_type,
371  int $a_id,
372  string $a_lang = "-"
373  ): bool {
374  return ilPageUtil::_existsAndNotEmpty($a_parent_type, $a_id, $a_lang);
375  }
376 
380  public function buildDom(bool $a_force = false)
381  {
382  if ($this->dom_builded && !$a_force) {
383  return true;
384  }
385  $error = null;
386  if ($this->getXMLContent() === "") {
387  $this->setXMLContent("<PageObject></PageObject>");
388  }
389  $this->dom = $this->dom_util->docFromString($this->getXMLContent(true), $error);
390  $path = "//PageObject";
391  if (is_null($this->dom)) {
392  throw new ilCOPageException("Invalid page xml (" .
393  $this->getId() . "," . $this->getLanguage() . "): " . $this->getXMLContent(true));
394  }
395  $nodes = $this->dom_util->path($this->dom, $path);
396  if (count($nodes) == 1) {
397  $this->node = $nodes->item(0);
398  } else {
399  throw new ilCOPageException("Invalid page xml (" .
400  $this->getId() . "," . $this->getLanguage() . "): " . $this->getXMLContent(true));
401  }
402 
403  if (empty($error)) {
404  $this->dom_builded = true;
405  return true;
406  } else {
407  return $error;
408  }
409  }
410 
411  public function freeDom(): void
412  {
413  unset($this->dom);
414  }
415 
419  public function getDomDoc(): DOMDocument
420  {
421  return $this->dom;
422  }
423 
424  public function setId(int $a_id): void
425  {
426  $this->id = $a_id;
427  }
428 
429  public function getId(): int
430  {
431  return $this->id;
432  }
433 
434  public function setParentId(int $a_id): void
435  {
436  $this->parent_id = $a_id;
437  }
438 
439  public function getParentId(): int
440  {
441  return $this->parent_id;
442  }
443 
447  public function addUpdateListener(
448  object $a_object,
449  string $a_method,
450  $a_parameters = ""
451  ): void {
453  $this->update_listeners[$cnt]["object"] = $a_object;
454  $this->update_listeners[$cnt]["method"] = $a_method;
455  $this->update_listeners[$cnt]["parameters"] = $a_parameters;
456  $this->update_listener_cnt++;
457  }
458 
459  public function callUpdateListeners(): void
460  {
461  for ($i = 0; $i < $this->update_listener_cnt; $i++) {
462  $object = $this->update_listeners[$i]["object"];
463  $method = $this->update_listeners[$i]["method"];
464  $parameters = $this->update_listeners[$i]["parameters"];
465  $object->$method($parameters);
466  }
467  }
468 
469  public function setActive(bool $a_active): void
470  {
471  $this->active = $a_active;
472  }
473 
474  public function getActive(
475  bool $a_check_scheduled_activation = false
476  ): bool {
477  if ($a_check_scheduled_activation && !$this->active) {
478  $start = new ilDateTime($this->getActivationStart(), IL_CAL_DATETIME);
479  $end = new ilDateTime($this->getActivationEnd(), IL_CAL_DATETIME);
480  $now = new ilDateTime(time(), IL_CAL_UNIX);
481  if (!ilDateTime::_before($now, $start) && !ilDateTime::_after($now, $end)) {
482  return true;
483  }
484  }
485  return $this->active;
486  }
487 
491  public static function preloadActivationDataByParentId(int $a_parent_id): void
492  {
493  global $DIC;
494 
495  $db = $DIC->database();
496  $set = $db->query(
497  "SELECT page_id, parent_type, lang, active, activation_start, activation_end, show_activation_info FROM page_object " .
498  " WHERE parent_id = " . $db->quote($a_parent_id, "integer")
499  );
500  while ($rec = $db->fetchAssoc($set)) {
501  self::$activation_data[$rec["page_id"] . ":" . $rec["parent_type"] . ":" . $rec["lang"]] = $rec;
502  }
503  }
504 
508  public static function _lookupActive(
509  int $a_id,
510  string $a_parent_type,
511  bool $a_check_scheduled_activation = false,
512  string $a_lang = "-"
513  ): bool {
514  global $DIC;
515 
516  $db = $DIC->database();
517 
518  // language must be set at least to "-"
519  if ($a_lang == "") {
520  $a_lang = "-";
521  }
522 
523  if (isset(self::$activation_data[$a_id . ":" . $a_parent_type . ":" . $a_lang])) {
524  $rec = self::$activation_data[$a_id . ":" . $a_parent_type . ":" . $a_lang];
525  } else {
526  $set = $db->queryF(
527  "SELECT active, activation_start, activation_end FROM page_object WHERE page_id = %s" .
528  " AND parent_type = %s AND lang = %s",
529  array("integer", "text", "text"),
530  array($a_id, $a_parent_type, $a_lang)
531  );
532  $rec = $db->fetchAssoc($set);
533  if (!$rec) {
534  return true;
535  }
536  }
537 
538  $rec["n"] = ilUtil::now();
539  if (!$rec["active"] && $a_check_scheduled_activation) {
540  if ($rec["n"] >= $rec["activation_start"] &&
541  $rec["n"] <= $rec["activation_end"]) {
542  return true;
543  }
544  }
545 
546  return (bool) $rec["active"];
547  }
548 
552  public static function _isScheduledActivation(
553  int $a_id,
554  string $a_parent_type,
555  string $a_lang = "-"
556  ): bool {
557  global $DIC;
558 
559  $db = $DIC->database();
560 
561  // language must be set at least to "-"
562  if ($a_lang == "") {
563  $a_lang = "-";
564  }
565 
566  //echo "<br>";
567  //var_dump(self::$activation_data); exit;
568  if (isset(self::$activation_data[$a_id . ":" . $a_parent_type . ":" . $a_lang])) {
569  $rec = self::$activation_data[$a_id . ":" . $a_parent_type . ":" . $a_lang];
570  } else {
571  $set = $db->queryF(
572  "SELECT active, activation_start, activation_end FROM page_object WHERE page_id = %s" .
573  " AND parent_type = %s AND lang = %s",
574  array("integer", "text", "text"),
575  array($a_id, $a_parent_type, $a_lang)
576  );
577  $rec = $db->fetchAssoc($set);
578  }
579 
580  if (!$rec["active"] && $rec["activation_start"] != "") {
581  return true;
582  }
583 
584  return false;
585  }
586 
590  public static function _writeActive(
591  int $a_id,
592  string $a_parent_type,
593  bool $a_active
594  ): void {
595  global $DIC;
596 
597  $db = $DIC->database();
598 
599  // language must be set at least to "-"
600  $a_lang = "-";
601 
602  $db->manipulateF(
603  "UPDATE page_object SET active = %s, activation_start = %s, " .
604  " activation_end = %s WHERE page_id = %s" .
605  " AND parent_type = %s AND lang = %s",
606  array("int", "timestamp", "timestamp", "integer", "text", "text"),
607  array((int) $a_active, null, null, $a_id, $a_parent_type, $a_lang)
608  );
609  }
610 
614  public static function _lookupActivationData(
615  int $a_id,
616  string $a_parent_type,
617  string $a_lang = "-"
618  ): array {
619  global $DIC;
620 
621  $db = $DIC->database();
622 
623  // language must be set at least to "-"
624  if ($a_lang == "") {
625  $a_lang = "-";
626  }
627 
628  if (isset(self::$activation_data[$a_id . ":" . $a_parent_type . ":" . $a_lang])) {
629  $rec = self::$activation_data[$a_id . ":" . $a_parent_type . ":" . $a_lang];
630  } else {
631  $set = $db->queryF(
632  "SELECT active, activation_start, activation_end, show_activation_info FROM page_object WHERE page_id = %s" .
633  " AND parent_type = %s AND lang = %s",
634  array("integer", "text", "text"),
635  array($a_id, $a_parent_type, $a_lang)
636  );
637  $rec = $db->fetchAssoc($set);
638  if (!$rec) {
639  return [
640  "active" => 1,
641  "activation_start" => null,
642  "activation_end" => null,
643  "show_activation_info" => 0
644  ];
645  }
646  }
647 
648  return $rec;
649  }
650 
651  public static function lookupParentId(int $a_id, string $a_type): int
652  {
653  global $DIC;
654 
655  $db = $DIC->database();
656 
657  $res = $db->query("SELECT parent_id FROM page_object WHERE page_id = " . $db->quote($a_id, "integer") . " " .
658  "AND parent_type=" . $db->quote($a_type, "text"));
659  $rec = $db->fetchAssoc($res);
660  return (int) ($rec["parent_id"] ?? 0);
661  }
662 
663  public static function _writeParentId(string $a_parent_type, int $a_pg_id, int $a_par_id): void
664  {
665  global $DIC;
666 
667  $db = $DIC->database();
668  $db->manipulateF(
669  "UPDATE page_object SET parent_id = %s WHERE page_id = %s" .
670  " AND parent_type = %s",
671  array("integer", "integer", "text"),
672  array($a_par_id, $a_pg_id, $a_parent_type)
673  );
674  }
675 
679  public function setActivationStart(?string $a_activationstart): void
680  {
681  if ($a_activationstart == "") {
682  $a_activationstart = null;
683  }
684  $this->activationstart = $a_activationstart;
685  }
686 
687  public function getActivationStart(): ?string
688  {
689  return $this->activationstart;
690  }
691 
696  public function setActivationEnd(?string $a_activationend): void
697  {
698  if ($a_activationend == "") {
699  $a_activationend = null;
700  }
701  $this->activationend = $a_activationend;
702  }
703 
704  public function getActivationEnd(): ?string
705  {
706  return $this->activationend;
707  }
708 
712  public function getContentObject(
713  string $a_hier_id,
714  string $a_pc_id = ""
715  ): ?ilPageContent {
716  $node = $this->page_manager->content($this->getDomDoc())->getContentDomNode(
717  $a_hier_id,
718  $a_pc_id
719  );
720  $this->log->debug("getContentObject: " . " $a_hier_id, $a_pc_id, " . $node->nodeName);
721  return $this->pc_service->getByNode($node, $this);
722  }
723 
727  public function getContentObjectForPcId(string $pcid): ?ilPageContent
728  {
729  $hier_ids = $this->getHierIdsForPCIds([$pcid]);
730  return $this->getContentObject($hier_ids[$pcid], $pcid);
731  }
732 
736  public function getParentContentObjectForPcId(string $pcid): ?ilPageContent
737  {
738  $content_object = $this->getContentObjectForPcId($pcid);
739  $node = $content_object->getDomNode();
740  $node = $node->parentNode;
741  while ($node) {
742  if ($node->nodeName == "PageContent") {
743  $pcid = $node->getAttribute("PCID");
744  if ($pcid != "") {
745  return $this->getContentObjectForPcId($pcid);
746  }
747  }
748  $node = $node->parentNode;
749  }
750  return null;
751  }
752 
753  public function getContentDomNode(string $a_hier_id, string $a_pc_id = ""): ?DOMNode
754  {
755  $cm = $this->page_manager->content($this->getDomDoc());
756  return $cm->getContentDomNode($a_hier_id, $a_pc_id);
757  }
758 
759  public function getDomNodeForPCId(string $pc_id): ?DOMNode
760  {
761  return $this->getContentDomNode("", $pc_id);
762  }
763 
770  public function setXMLContent(string $a_xml, string $a_encoding = "UTF-8"): void
771  {
772  $this->encoding = $a_encoding;
773  $this->xml = $a_xml;
774  }
775 
780  public function appendXMLContent(string $a_xml): void
781  {
782  $this->xml .= $a_xml;
783  }
784 
788  public function getXMLContent(bool $a_incl_head = false): string
789  {
790  // build full http path for XML DOCTYPE header.
791  // Under windows a relative path doesn't work :-(
792  if ($a_incl_head) {
793  //echo "+".$this->encoding."+";
794  $enc_str = (!empty($this->encoding))
795  ? "encoding=\"" . $this->encoding . "\""
796  : "";
797  return "<?xml version=\"1.0\" $enc_str ?>" .
798  "<!DOCTYPE PageObject SYSTEM \"" . $this->getIliasAbsolutePath() . "/components/ILIAS/Export/xml/" . $this->cur_dtd . "\">" .
799  $this->xml;
800  } else {
801  return $this->xml;
802  }
803  }
804 
805  protected function getIliasAbsolutePath(): string
806  {
807  return ILIAS_ABSOLUTE_PATH;
808  }
809 
815  public function copyXmlContent(
816  bool $a_clone_mobs = false,
817  int $a_new_parent_id = 0,
818  int $obj_copy_id = 0,
819  bool $self_ass = true
820  ): string {
821  $cm = $this->page_manager->contentFromXml($this->getXMLContent());
822  return $cm->copyXmlContent(
823  $this,
824  $a_clone_mobs,
825  $a_new_parent_id,
826  $obj_copy_id,
827  $self_ass
828  );
829  }
830 
831  // @todo 1: begin: generalize, remove concrete dependencies
832 
833 
840  public function handleDeleteContent(?DOMNode $a_node = null, $move_operation = false): void
841  {
842  $pm = $this->page_manager->content($this->getDomDoc());
843  $pm->handleDeleteContent($this, $a_node, $move_operation);
844  }
845 
850  public function getXMLFromDom(
851  bool $a_incl_head = false,
852  bool $a_append_mobs = false,
853  bool $a_append_bib = false,
854  string $a_append_str = "",
855  bool $a_omit_pageobject_tag = false,
856  int $style_id = 0,
857  bool $offline = false
858  ): string {
859  if ($a_incl_head) {
860  //echo "\n<br>#".$this->encoding."#";
861  return $this->dom_util->dump($this->node);
862  } else {
863  // append multimedia object elements
864  if ($a_append_mobs || $a_append_bib) {
865  $mobs = "";
866  $bibs = "";
867  if ($a_append_mobs) {
868  $mobs = $this->getMultimediaXML($offline);
869  }
870  if ($a_append_bib) {
871  // deprecated
872  // $bibs = $this->getBibliographyXML();
873  }
874  $trans = $this->getLanguageVariablesXML($style_id);
875  //echo htmlentities($this->dom->dump_node($this->node)); exit;
876  return "<dummy>" . $this->dom_util->dump($this->node) . $mobs . $bibs . $trans . $a_append_str . "</dummy>";
877  } else {
878  if (is_object($this->dom)) {
879  if ($a_omit_pageobject_tag) {
880  $xml = "";
881  foreach ($this->node->childNodes as $child) {
882  $xml .= $this->dom_util->dump($child);
883  }
884  } else {
885  $xml = $this->dom_util->dump($this->node);
886  $xml = preg_replace('/<\?xml[^>]*>/i', "", $xml);
887  $xml = preg_replace('/<!DOCTYPE[^>]*>/i', "", $xml);
888 
889  // don't use dump_node. This gives always entities.
890  //return $this->dom->dump_node($this->node);
891  }
892  return $xml;
893  } else {
894  return "";
895  }
896  }
897  }
898  }
899 
903  public function getLanguageVariablesXML(int $style_id = 0): string
904  {
905  $xml = "<LVs>";
906  $lang_vars = array(
907  "ed_paste_clip",
908  "ed_edit",
909  "ed_edit_prop",
910  "ed_delete",
911  "ed_moveafter",
912  "ed_movebefore",
913  "ed_go",
914  "ed_class",
915  "ed_width",
916  "ed_align_left",
917  "ed_align_right",
918  "ed_align_center",
919  "ed_align_left_float",
920  "ed_align_right_float",
921  "ed_delete_item",
922  "ed_new_item_before",
923  "ed_new_item_after",
924  "ed_copy_clip",
925  "please_select",
926  "ed_split_page",
927  "ed_item_up",
928  "ed_item_down",
929  "ed_split_page_next",
930  "ed_enable",
931  "de_activate",
932  "ed_paste",
933  "ed_edit_multiple",
934  "ed_cut",
935  "ed_copy",
936  "ed_insert_templ",
937  "ed_click_to_add_pg",
938  "download"
939  );
940 
941  // collect lang vars from pc elements
942  $defs = $this->pc_definition->getPCDefinitions();
943  foreach ($defs as $def) {
944  $lang_vars[] = "pc_" . $def["pc_type"];
945  $lang_vars[] = "ed_insert_" . $def["pc_type"];
946 
947  $cl = $def["pc_class"];
948  $lvs = call_user_func($def["pc_class"] . '::getLangVars');
949  foreach ($lvs as $lv) {
950  $lang_vars[] = $lv;
951  }
952  }
953 
954  // workaround for #30561, should go to characteristic manager
955  $dummy_pc = new ilPCSectionGUI($this, null, "");
956  $dummy_pc->setStyleId($style_id);
957  foreach (["section", "table", "flist_li", "list_u", "list_o",
958  "table", "table_cell"] as $type) {
959  $dummy_pc->getCharacteristicsOfCurrentStyle([$type]);
960  foreach ($dummy_pc->getCharacteristics() as $char => $txt) {
961  $xml .= "<LV name=\"char_" . $type . "_" . $char . "\" value=\"" . $txt . "\"/>";
962  }
963  }
964  $type = "media_cont";
965  $dummy_pc = new ilPCMediaObjectGUI($this, null, "");
966  $dummy_pc->setStyleId($style_id);
967  $dummy_pc->getCharacteristicsOfCurrentStyle([$type]);
968  foreach ($dummy_pc->getCharacteristics() as $char => $txt) {
969  $xml .= "<LV name=\"char_" . $type . "_" . $char . "\" value=\"" . $txt . "\"/>";
970  }
971  foreach (["text_block", "heading1", "heading2", "heading3"] as $type) {
972  $dummy_pc = new ilPCParagraphGUI($this, null, "");
973  $dummy_pc->setStyleId($style_id);
974  $dummy_pc->getCharacteristicsOfCurrentStyle([$type]);
975  foreach ($dummy_pc->getCharacteristics() as $char => $txt) {
976  $xml .= "<LV name=\"char_" . $type . "_" . $char . "\" value=\"" . $txt . "\"/>";
977  }
978  }
979  foreach ($lang_vars as $lang_var) {
980  $xml .= $this->getLangVarXML($lang_var);
981  }
982  $xml .= "</LVs>";
983  return $xml;
984  }
985 
986  protected function getLangVarXML(string $var): string
987  {
988  $val = $this->lng->txt("cont_" . $var);
989  $val = str_replace('"', "&quot;", $val);
990  return "<LV name=\"$var\" value=\"" . $val . "\"/>";
991  }
992 
993  public function getFirstParagraphText(): string
994  {
995  return $this->pc_service->paragraph()->getFirstParagraphText($this);
996  }
997 
998  public function getParagraphForPCID(string $pcid): ?ilPCParagraph
999  {
1000  return $this->pc_service->paragraph()->getParagraphForPCID($this, $pcid);
1001  }
1002 
1003 
1010  // @todo: can we do this better
1011  public function setContainsIntLink(bool $a_contains_link): void
1012  {
1013  $this->contains_int_link = $a_contains_link;
1014  }
1015 
1020  // @todo: can we do this better
1021  public function containsIntLink(): bool
1022  {
1023  return $this->contains_int_link;
1024  }
1025 
1026  public function setImportMode(bool $a_val): void
1027  {
1028  $this->import_mode = $a_val;
1029  }
1030 
1031  public function getImportMode(): bool
1032  {
1033  return $this->import_mode;
1034  }
1035 
1036  public function needsImportParsing(?bool $a_parse = null): bool
1037  {
1038  if ($a_parse === true) {
1039  $this->needs_parsing = true;
1040  }
1041  if ($a_parse === false) {
1042  $this->needs_parsing = false;
1043  }
1044  return $this->needs_parsing;
1045  }
1046 
1047  // @todo: can we do this better
1048  public function setContainsQuestion(bool $a_val): void
1049  {
1050  $this->contains_question = $a_val;
1051  }
1052 
1053  public function getContainsQuestion(): bool
1054  {
1055  return $this->contains_question;
1056  }
1057 
1058 
1063  public function collectMediaObjects(bool $a_inline_only = true): array
1064  {
1065  $mob_manager = $this->pc_service->mediaObject();
1066  return $mob_manager->collectMediaObjects($this->getDomDoc(), $a_inline_only);
1067  }
1068 
1072  public function getInternalLinks(): array
1073  {
1074  return $this->link->getInternalLinks($this->getDomDoc());
1075  }
1076 
1081  public function getMultimediaXML(
1082  bool $offline = false
1083  ): string {
1084  $mob_manager = $this->pc_service->mediaObject();
1085  return $mob_manager->getMultimediaXML($this->getDomDoc(), $offline);
1086  }
1087 
1091  public function getMediaAliasElement(int $a_mob_id, int $a_nr = 1): string
1092  {
1093  $mob_manager = $this->pc_service->mediaObject();
1094  return $mob_manager->getMediaAliasElement(
1095  $this->getDomDoc(),
1096  $a_mob_id,
1097  $a_nr
1098  );
1099  }
1100 
1104  public function validateDom(bool $throw = false): ?array
1105  {
1106  $this->stripHierIDs();
1107 
1108  // possible fix for #14820
1109  //libxml_disable_entity_loader(false);
1110 
1111  $error = null;
1112  $this->dom_util->validate($this->dom, $error, $throw);
1113  return $error;
1114  }
1115 
1119  public function addHierIDs(): void
1120  {
1121  $this->content_id_manager->addHierIDsToDom();
1122  }
1123 
1124  public function getHierIds(): array
1125  {
1126  return $this->content_id_manager->getHierIds();
1127  }
1128 
1129  public function stripHierIDs(): void
1130  {
1131  $this->content_id_manager->stripHierIDsFromDom();
1132  }
1133 
1134  public function stripPCIDs(): void
1135  {
1136  $this->content_id_manager->stripPCIDs();
1137  }
1138 
1142  public function getHierIdsForPCIds(array $a_pc_ids): array
1143  {
1144  return $this->content_id_manager->getHierIdsForPCIds($a_pc_ids);
1145  }
1146 
1147  public function getHierIdForPcId(string $pcid): string
1148  {
1149  return $this->content_id_manager->getHierIdForPcId($pcid);
1150  }
1151 
1155  public function getPCIdsForHierIds(array $hier_ids): array
1156  {
1157  return $this->content_id_manager->getPCIdsForHierIds($hier_ids);
1158  }
1159 
1160  public function getPCIdForHierId(string $hier_id): string
1161  {
1162  return $this->content_id_manager->getPCIdForHierId($hier_id);
1163  }
1164 
1168  public function addFileSizes(): void
1169  {
1170  $this->pc_service->fileList()->addFileSizes($this->getDomDoc());
1171  }
1172 
1177  public function resolveIntLinks(?array $a_link_map = null): bool
1178  {
1179  return $this->link->resolveIntLinks($this->getDomDoc(), $a_link_map);
1180  }
1181 
1186  public function resolveMediaAliases(
1187  array $a_mapping,
1188  bool $a_reuse_existing_by_import = false
1189  ): bool {
1190  return $this->pc_service->mediaObject()->resolveMediaAliases(
1191  $this,
1192  $a_mapping,
1193  $a_reuse_existing_by_import
1194  );
1195  }
1196 
1201  public function resolveIIMMediaAliases(array $a_mapping): bool
1202  {
1203  return $this->pc_service->interactiveImage()->resolveIIMMediaAliases(
1204  $this->getDomDoc(),
1205  $a_mapping
1206  );
1207  }
1208 
1213  public function resolveFileItems(array $a_mapping): bool
1214  {
1215  return $this->pc_service->fileList()->resolveFileItems(
1216  $this->getDomDoc(),
1217  $a_mapping
1218  );
1219  }
1220 
1225  public function resolveQuestionReferences(array $a_mapping): bool
1226  {
1227  $qm = $this->pc_service->question();
1228  return $qm->resolveQuestionReferences(
1229  $this->getDomDoc(),
1230  $a_mapping
1231  );
1232  }
1233 
1234 
1239  public function moveIntLinks(array $a_from_to): bool
1240  {
1241  $this->buildDom();
1242  $this->addHierIDs();
1243  return $this->link->moveIntLinks(
1244  $this->getDomDoc(),
1245  $a_from_to
1246  );
1247  }
1248 
1249 
1254  array $a_mapping,
1255  int $a_source_ref_id
1256  ): void {
1257  $this->buildDom();
1258 
1259  $tree = $this->tree;
1260  $this->log->debug("Handle repository links...");
1261 
1262  $defs = $this->pc_definition->getPCDefinitions();
1263  foreach ($defs as $def) {
1264  if (method_exists($def["pc_class"], 'afterRepositoryCopy')) {
1265  call_user_func($def["pc_class"] . '::afterRepositoryCopy', $this, $a_mapping, $a_source_ref_id);
1266  }
1267  }
1268 
1269  $this->link->handleRepositoryLinksOnCopy($this->getDomDoc(), $a_mapping, $a_source_ref_id, $tree);
1270  }
1271 
1272  public function setEmptyPageXml(): void
1273  {
1274  $this->setXMLContent("<PageObject></PageObject>");
1275  }
1276 
1280  public function createFromXML(): void
1281  {
1282  $empty = false;
1283  if ($this->getXMLContent() === "") {
1284  $this->setEmptyPageXml();
1285  $empty = true;
1286  }
1287  $content = $this->getXMLContent();
1288  $this->buildDom(true);
1289  $dom_doc = $this->getDomDoc();
1290 
1291  $errors = $this->validateDom(true);
1292 
1293  $iel = $this->containsDeactivatedElements($content);
1294  $inl = $this->containsIntLinks($content);
1295  // create object
1296  $this->db->insert("page_object", array(
1297  "page_id" => array("integer", $this->getId()),
1298  "parent_id" => array("integer", $this->getParentId()),
1299  "lang" => array("text", $this->getLanguage()),
1300  "content" => array("clob", $content),
1301  "parent_type" => array("text", $this->getParentType()),
1302  "create_user" => array("integer", $this->user->getId()),
1303  "last_change_user" => array("integer", $this->user->getId()),
1304  "active" => array("integer", (int) $this->getActive()),
1305  "activation_start" => array("timestamp", $this->getActivationStart()),
1306  "activation_end" => array("timestamp", $this->getActivationEnd()),
1307  "show_activation_info" => array("integer", (int) $this->getShowActivationInfo()),
1308  "inactive_elements" => array("integer", $iel),
1309  "int_links" => array("integer", $inl),
1310  "created" => array("timestamp", ilUtil::now()),
1311  "last_change" => array("timestamp", ilUtil::now()),
1312  "is_empty" => array("integer", $empty)
1313  ));
1314  // after update event
1315  $this->__afterUpdate($dom_doc, $content, true, $empty);
1316  }
1317 
1325  public function updateFromXML(): bool
1326  {
1327  $this->log->debug("ilPageObject, updateFromXML(): start, id: " . $this->getId());
1328 
1329  $content = $this->getXMLContent();
1330 
1331  $this->log->debug("ilPageObject, updateFromXML(): content: " . substr($content, 0, 100));
1332 
1333  $this->buildDom(true);
1334  $dom_doc = $this->getDomDoc();
1335 
1336  $errors = $this->validateDom(true);
1337 
1338  $iel = $this->containsDeactivatedElements($content);
1339  $inl = $this->containsIntLinks($content);
1340 
1341  $this->db->update("page_object", array(
1342  "content" => array("clob", $content),
1343  "parent_id" => array("integer", $this->getParentId()),
1344  "last_change_user" => array("integer", $this->user->getId()),
1345  "last_change" => array("timestamp", ilUtil::now()),
1346  "active" => array("integer", $this->getActive()),
1347  "activation_start" => array("timestamp", $this->getActivationStart()),
1348  "activation_end" => array("timestamp", $this->getActivationEnd()),
1349  "inactive_elements" => array("integer", $iel),
1350  "int_links" => array("integer", $inl),
1351  ), array(
1352  "page_id" => array("integer", $this->getId()),
1353  "parent_type" => array("text", $this->getParentType()),
1354  "lang" => array("text", $this->getLanguage())
1355  ));
1356 
1357  // after update event
1358  $this->__afterUpdate($dom_doc, $content);
1359 
1360  $this->log->debug("ilPageObject, updateFromXML(): end");
1361 
1362  return true;
1363  }
1364 
1369  final protected function __afterUpdate(
1370  DOMDocument $a_domdoc,
1371  string $a_xml,
1372  bool $a_creation = false,
1373  bool $a_empty = false
1374  ): void {
1375  // we do not need this if we are creating an empty page
1376  if (!$a_creation || !$a_empty) {
1377  // save internal link information
1378  // the page object is responsible to do this, since it "offers" the
1379  // internal link feature pc and page classes
1380  $this->saveInternalLinks($a_domdoc);
1381 
1382  // save style usage
1383  $this->saveStyleUsage($a_domdoc);
1384 
1385  // save estimated reading time
1386  $this->reading_time_manager->saveTime($this);
1387 
1388  // pc classes hook
1389  $defs = $this->pc_definition->getPCDefinitions();
1390  foreach ($defs as $def) {
1391  $cl = $def["pc_class"];
1392  call_user_func($def["pc_class"] . '::afterPageUpdate', $this, $a_domdoc, $a_xml, $a_creation);
1393  }
1394  }
1395 
1396  // call page hook
1397  $this->afterUpdate($a_domdoc, $a_xml);
1398 
1399  // call update listeners
1400  $this->callUpdateListeners();
1401  }
1402 
1406  public function afterUpdate(DOMDocument $domdoc, string $xml): void
1407  {
1408  }
1409 
1416  public function update(bool $a_validate = true, bool $a_no_history = false)
1417  {
1418  $this->log->debug("start..., id: " . $this->getId());
1419  $lm_set = new ilSetting("lm");
1420 
1421  // add missing pc ids
1422  if (!$this->checkPCIds()) {
1423  $this->insertPCIds();
1424  }
1425 
1426  // test validating
1427  if ($a_validate) {
1428  $this->log->debug($this->dom_util->dump($this->getDomDoc()->documentElement));
1429  $errors = $this->validateDom();
1430  }
1431  //var_dump($errors); exit;
1432  if (empty($errors) && !$this->getEditLock()) {
1433  $lock = $this->getEditLockInfo();
1434  $errors[0] = array(0 => 0,
1435  1 => $this->lng->txt("cont_not_saved_edit_lock_expired") . "<br />" .
1436  $this->lng->txt("obj_usr") . ": " .
1437  ilUserUtil::getNamePresentation($lock["edit_lock_user"]) . "<br />" .
1438  $this->lng->txt("content_until") . ": " .
1439  ilDatePresentation::formatDate(new ilDateTime($lock["edit_lock_until"], IL_CAL_UNIX))
1440  );
1441  }
1442 
1443  // check for duplicate pc ids
1444  $this->log->debug("checking duplicate ids");
1445  if ($this->hasDuplicatePCIds()) {
1446  $errors[0] = $this->lng->txt("cont_could_not_save_duplicate_pc_ids") .
1447  " (" . implode(", ", $this->getDuplicatePCIds()) . ")";
1448  }
1449 
1450  if (!empty($errors)) {
1451  $this->log->debug("ilPageObject, update(): errors: " . print_r($errors, true));
1452  }
1453 
1454  //echo "-".htmlentities($this->getXMLFromDom())."-"; exit;
1455  if (empty($errors)) {
1456  // @todo 1: is this page type or pc content type
1457  // related -> plugins should be able to hook in!?
1458 
1459  $this->log->debug("perform automatic modifications");
1461 
1462  // get xml content
1463  $content = $this->getXMLFromDom();
1464  $dom_doc = $this->getDomDoc();
1465 
1466  // this needs to be locked
1467 
1468  // write history entry
1469  $old_set = $this->db->query("SELECT * FROM page_object WHERE " .
1470  "page_id = " . $this->db->quote($this->getId(), "integer") . " AND " .
1471  "parent_type = " . $this->db->quote($this->getParentType(), "text") . " AND " .
1472  "lang = " . $this->db->quote($this->getLanguage(), "text"));
1473  $last_nr_set = $this->db->query("SELECT max(nr) as mnr FROM page_history WHERE " .
1474  "page_id = " . $this->db->quote($this->getId(), "integer") . " AND " .
1475  "parent_type = " . $this->db->quote($this->getParentType(), "text") . " AND " .
1476  "lang = " . $this->db->quote($this->getLanguage(), "text"));
1477  $last_nr = $this->db->fetchAssoc($last_nr_set);
1478  if ($old_rec = $this->db->fetchAssoc($old_set)) {
1479  // only save, if something has changed
1480  // added user id to the check for ilias 5.0, 7.10.2014
1481  if (($content != $old_rec["content"] || $this->user->getId() != $old_rec["last_change_user"]) &&
1482  !$a_no_history && !$this->history_saved && $lm_set->get("page_history", 1)) {
1483  if ($old_rec["content"] != "<PageObject></PageObject>") {
1484  $this->db->manipulateF(
1485  "DELETE FROM page_history WHERE " .
1486  "page_id = %s AND parent_type = %s AND hdate = %s AND lang = %s",
1487  array("integer", "text", "timestamp", "text"),
1488  array($old_rec["page_id"],
1489  $old_rec["parent_type"],
1490  $old_rec["last_change"],
1491  $old_rec["lang"]
1492  )
1493  );
1494 
1495  // the following lines are a workaround for
1496  // bug 6741
1497  $last_c = $old_rec["last_change"];
1498  if ($last_c == "") {
1499  $last_c = ilUtil::now();
1500  }
1501 
1502  $this->db->insert("page_history", array(
1503  "page_id" => array("integer", $old_rec["page_id"]),
1504  "parent_type" => array("text", $old_rec["parent_type"]),
1505  "lang" => array("text", $old_rec["lang"]),
1506  "hdate" => array("timestamp", $last_c),
1507  "parent_id" => array("integer", $old_rec["parent_id"]),
1508  "content" => array("clob", $old_rec["content"]),
1509  "user_id" => array("integer", $old_rec["last_change_user"]),
1510  "ilias_version" => array("text", ILIAS_VERSION_NUMERIC),
1511  "nr" => array("integer", (int) $last_nr["mnr"] + 1)
1512  ));
1513 
1514  $old_content = $old_rec["content"];
1515  $old_domdoc = new DOMDocument();
1516  $old_nr = $last_nr["mnr"] + 1;
1517  $old_domdoc->loadXML('<?xml version="1.0" encoding="UTF-8"?>' . $old_content);
1518 
1519  // after history entry creation event
1520  $this->log->debug("calling __afterHistoryEntry");
1521  $this->__afterHistoryEntry($old_domdoc, $old_content, $old_nr);
1522 
1523  // only save one time
1524  }
1525  $this->history_saved = true;
1526  }
1527  }
1528  //echo htmlentities($content);
1529  $em = (trim($content) == "<PageObject/>")
1530  ? 1
1531  : 0;
1532 
1533  // @todo: pass dom instead?
1534  $this->log->debug("checking deactivated elements");
1535  $iel = $this->containsDeactivatedElements($content);
1536  $this->log->debug("checking internal links");
1537  $inl = $this->containsIntLinks($content);
1538 
1539  $now = ilUtil::now();
1540  $this->lastchange = $now;
1541  $this->db->update("page_object", array(
1542  "content" => array("clob", $content),
1543  "parent_id" => array("integer", $this->getParentId()),
1544  "last_change_user" => array("integer", $this->user->getId()),
1545  "last_change" => array("timestamp", $now),
1546  "is_empty" => array("integer", $em),
1547  "active" => array("integer", $this->getActive()),
1548  "activation_start" => array("timestamp", $this->getActivationStart()),
1549  "activation_end" => array("timestamp", $this->getActivationEnd()),
1550  "show_activation_info" => array("integer", $this->getShowActivationInfo()),
1551  "inactive_elements" => array("integer", $iel),
1552  "int_links" => array("integer", $inl),
1553  ), array(
1554  "page_id" => array("integer", $this->getId()),
1555  "parent_type" => array("text", $this->getParentType()),
1556  "lang" => array("text", $this->getLanguage())
1557  ));
1558 
1559  // after update event
1560  $this->log->debug("calling __afterUpdate()");
1561  $this->__afterUpdate($dom_doc, $content);
1562 
1563  $this->log->debug(
1564  "...ending, updated and returning true, content: " . substr(
1565  $this->getXMLContent(),
1566  0,
1567  1000
1568  )
1569  );
1570 
1571  //echo "<br>PageObject::update:".htmlentities($this->getXMLContent()).":";
1572  return true;
1573  } else {
1574  return $errors;
1575  }
1576  }
1577 
1578  public function delete(): void
1579  {
1580  $copg_logger = ilLoggerFactory::getLogger('copg');
1581  $copg_logger->debug(
1582  "ilPageObject: Delete called for ID '" . $this->getId() . "'," .
1583  " parent type: '" . $this->getParentType() . "', " .
1584  " hist nr: '" . $this->old_nr . "', " .
1585  " lang: '" . $this->getLanguage() . "', "
1586  );
1587 
1588  $mobs = array();
1589  if (!$this->page_not_found) {
1590  $this->buildDom();
1591  $mobs = $this->collectMediaObjects(false);
1592  }
1594  $this->getParentType() . ":pg",
1595  $this->getId(),
1596  false,
1597  $this->getLanguage()
1598  );
1599 
1600  foreach ($mobs2 as $m) {
1601  if (!in_array($m, $mobs)) {
1602  $mobs[] = $m;
1603  }
1604  }
1605 
1606  $copg_logger->debug("ilPageObject: ... found " . count($mobs) . " media objects.");
1607 
1608  $this->__beforeDelete();
1609 
1610  // treat plugged content
1611  $this->handleDeleteContent();
1612 
1613  // delete style usages
1614  $this->deleteStyleUsages(false);
1615 
1616  // delete internal links
1617  $this->deleteInternalLinks();
1618 
1619  // delete all mob usages
1620  ilObjMediaObject::_deleteAllUsages($this->getParentType() . ":pg", $this->getId());
1621 
1622  // delete news
1623  if (!$this->isTranslationPage()) {
1625  $this->getParentId(),
1626  $this->getParentType(),
1627  $this->getId(),
1628  "pg"
1629  );
1630  }
1631 
1632  // delete page_object entry
1633  $and = $this->isTranslationPage()
1634  ? " AND lang = " . $this->db->quote($this->getLanguage(), "text")
1635  : "";
1636  $this->db->manipulate("DELETE FROM page_object " .
1637  "WHERE page_id = " . $this->db->quote($this->getId(), "integer") .
1638  " AND parent_type= " . $this->db->quote($this->getParentType(), "text") . $and);
1639 
1640  // delete media objects
1641  foreach ($mobs as $mob_id) {
1642  $copg_logger->debug("ilPageObject: ... processing mob " . $mob_id . ".");
1643 
1644  if (ilObject::_lookupType($mob_id) != 'mob') {
1645  $copg_logger->debug("ilPageObject: ... type mismatch. Ignoring mob " . $mob_id . ".");
1646  continue;
1647  }
1648 
1649  if (ilObject::_exists($mob_id)) {
1650  $copg_logger->debug("ilPageObject: ... delete mob " . $mob_id . ".");
1651 
1652  $mob_obj = new ilObjMediaObject($mob_id);
1653  $mob_obj->delete();
1654  } else {
1655  $copg_logger->debug("ilPageObject: ... missing mob " . $mob_id . ".");
1656  }
1657  }
1658 
1659  $this->__afterDelete();
1660  }
1661 
1662  protected function isTranslationPage(): bool
1663  {
1664  return !in_array($this->getLanguage(), ["", "-"]);
1665  }
1666 
1670  final protected function __beforeDelete(): void
1671  {
1672  // pc classes hook
1673  $defs = $this->pc_definition->getPCDefinitions();
1674  foreach ($defs as $def) {
1675  $cl = $def["pc_class"];
1676  call_user_func($def["pc_class"] . '::beforePageDelete', $this);
1677  }
1678  }
1679 
1680  final protected function __afterDelete(): void
1681  {
1682  $this->afterDelete();
1683  }
1684 
1685  protected function afterDelete(): void
1686  {
1687  }
1688 
1689  final protected function __afterHistoryEntry(
1690  DOMDocument $a_old_domdoc,
1691  string $a_old_content,
1692  int $a_old_nr
1693  ): void {
1694  // save style usage
1695  $this->saveStyleUsage($a_old_domdoc, $a_old_nr);
1696 
1697  // pc classes hook
1698  $defs = $this->pc_definition->getPCDefinitions();
1699  foreach ($defs as $def) {
1700  $cl = $def["pc_class"];
1701  call_user_func(
1702  $def["pc_class"] . '::afterPageHistoryEntry',
1703  $this,
1704  $a_old_domdoc,
1705  $a_old_content,
1706  $a_old_nr
1707  );
1708  }
1709  }
1710 
1714  public function saveStyleUsage(
1715  DOMDocument $a_domdoc,
1716  int $a_old_nr = 0
1717  ): void {
1718  $this->style_manager->saveStyleUsage(
1719  $this,
1720  $a_domdoc,
1721  $a_old_nr
1722  );
1723  }
1724 
1728  public function deleteStyleUsages(int $a_old_nr = 0): void
1729  {
1730  $this->style_manager->deleteStyleUsages($this, $a_old_nr);
1731  }
1732 
1738  public function getLastUpdateOfIncludedElements(): string
1739  {
1741  $this->getParentType() . ":pg",
1742  $this->getId()
1743  );
1744  $files = ilObjFile::_getFilesOfObject(
1745  $this->getParentType() . ":pg",
1746  $this->getId()
1747  );
1748  $objs = array_merge($mobs, $files);
1749  return ilObject::_getLastUpdateOfObjects($objs);
1750  }
1751 
1755  public function deleteInternalLinks(): void
1756  {
1757  $this->link->deleteInternalLinks($this);
1758  }
1759 
1760 
1765  public function saveInternalLinks(DOMDocument $a_domdoc): void
1766  {
1767  $this->link->saveInternalLinks(
1768  $this,
1769  $a_domdoc
1770  );
1771  }
1772 
1776  public function create(bool $a_import = false): void
1777  {
1778  $this->createFromXML();
1779  }
1780 
1787  public function deleteContent(
1788  string $a_hid,
1789  bool $a_update = true,
1790  string $a_pcid = "",
1791  bool $move_operation = false
1792  ) {
1793  $pm = $this->page_manager->content($this->getDomDoc());
1794  $pm->deleteContent($this, $a_hid, $a_pcid, $move_operation);
1795  if ($a_update) {
1796  return $this->update();
1797  }
1798  return true;
1799  }
1800 
1808  public function deleteContents(
1809  array $a_hids,
1810  bool $a_update = true,
1811  bool $a_self_ass = false,
1812  bool $move_operation = false
1813  ) {
1814  $pm = $this->page_manager->content($this->getDomDoc());
1815  $pm->deleteContents($this, $a_hids, $a_self_ass, $move_operation);
1816  if ($a_update) {
1817  return $this->update();
1818  }
1819  return true;
1820  }
1821 
1827  public function cutContents(array $a_hids)
1828  {
1829  $this->copyContents($a_hids);
1830  return $this->deleteContents(
1831  $a_hids,
1832  true,
1833  $this->getPageConfig()->getEnableSelfAssessment(),
1834  true
1835  );
1836  }
1837 
1841  public function copyContents(array $a_hids): void
1842  {
1843  $cm = $this->page_manager->content($this->getDomDoc());
1844  $cm->copyContents($a_hids, $this->user);
1845  }
1846 
1852  public function pasteContents(
1853  string $a_hier_id,
1854  bool $a_self_ass = false
1855  ) {
1856  $user = $this->user;
1857  $cm = $this->page_manager->content($this->getDomDoc());
1858  $cm->pasteContents(
1859  $user,
1860  $a_hier_id,
1861  $this,
1862  $a_self_ass
1863  );
1864  return $this->update();
1865  }
1866 
1874  public function switchEnableMultiple(
1875  array $a_hids,
1876  bool $a_update = true,
1877  bool $a_self_ass = false
1878  ) {
1879  $cm = $this->page_manager->content($this->getDomDoc());
1880  $cm->switchEnableMultiple($this, $a_hids, $a_self_ass);
1881  if ($a_update) {
1882  return $this->update();
1883  }
1884  return true;
1885  }
1886 
1890  public function insertContent(
1891  ilPageContent $a_cont_obj,
1892  string $a_pos,
1893  int $a_mode = IL_INSERT_AFTER,
1894  string $a_pcid = "",
1895  bool $remove_placeholder = true
1896  ): void {
1897  $cm = $this->page_manager->content($this->getDomDoc());
1898  $cm->insertContent(
1899  $a_cont_obj,
1900  $a_pos,
1901  $a_mode,
1902  $a_pcid,
1903  $remove_placeholder,
1904  $this->getPageConfig()->getEnablePCType("PlaceHolder")
1905  );
1906  }
1907 
1911  public function insertContentNode(
1912  DOMNode $a_cont_node,
1913  string $a_pos,
1914  int $a_mode = IL_INSERT_AFTER,
1915  string $a_pcid = ""
1916  ): void {
1917  $cm = $this->page_manager->content($this->getDomDoc());
1918  $cm->insertContentNode(
1919  $a_cont_node,
1920  $a_pos,
1921  $a_mode,
1922  $a_pcid
1923  );
1924  }
1925 
1926 
1939  public function moveContentAfter(
1940  string $a_source,
1941  string $a_target,
1942  string $a_spcid = "",
1943  string $a_tpcid = ""
1944  ) {
1945  $cm = $this->page_manager->content($this->getDomDoc());
1946  $cm->moveContentAfter(
1947  $this,
1948  $a_source,
1949  $a_target,
1950  $a_spcid,
1951  $a_tpcid
1952  );
1953  return $this->update();
1954  }
1955 
1962  public function insertInstIntoIDs(
1963  string $a_inst,
1964  bool $a_res_ref_to_obj_id = true
1965  ): void {
1966  $cm = $this->page_manager->content($this->getDomDoc());
1967  $cm->insertInstIntoIDs($a_inst, $a_res_ref_to_obj_id);
1968  }
1969 
1973  public function checkPCIds(): bool
1974  {
1975  return $this->content_id_manager->checkPCIds();
1976  }
1977 
1981  public function getAllPCIds(): array
1982  {
1983  return $this->content_id_manager->getAllPCIds();
1984  }
1985 
1986  public function hasDuplicatePCIds(): bool
1987  {
1988  return $this->content_id_manager->hasDuplicatePCIds();
1989  }
1990 
1995  public function getDuplicatePCIds(): array
1996  {
1997  return $this->content_id_manager->getDuplicatePCIds();
1998  }
1999 
2000  public function generatePCId(): string
2001  {
2002  return $this->content_id_manager->generatePCId();
2003  }
2004 
2008  public function insertPCIds(): void
2009  {
2010  $this->content_id_manager->insertPCIds();
2011  }
2012 
2013  public function sendParagraph(
2014  string $par_id,
2015  string $filename
2016  ): void {
2017  $this->pc_service->paragraph()->send(
2018  $this->getDomDoc(),
2019  $par_id,
2020  $filename
2021  );
2022  }
2023 
2024  public function registerOfflineHandler(object $handler): void
2025  {
2026  $this->offline_handler = $handler;
2027  }
2028 
2029  public function getOfflineHandler(): ?object
2030  {
2031  return $this->offline_handler;
2032  }
2033 
2037  public static function _lookupContainsDeactivatedElements(
2038  int $a_id,
2039  string $a_parent_type,
2040  string $a_lang = "-"
2041  ): bool {
2042  global $DIC;
2043 
2044  $db = $DIC->database();
2045 
2046  if ($a_lang == "") {
2047  $a_lang = "-";
2048  }
2049 
2050  $query = "SELECT * FROM page_object WHERE page_id = " .
2051  $db->quote($a_id, "integer") . " AND " .
2052  " parent_type = " . $db->quote($a_parent_type, "text") . " AND " .
2053  " lang = " . $db->quote($a_lang, "text") . " AND " .
2054  " inactive_elements = " . $db->quote(1, "integer");
2055  $obj_set = $db->query($query);
2056 
2057  if ($obj_rec = $obj_set->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) {
2058  return true;
2059  }
2060 
2061  return false;
2062  }
2063 
2067  public function containsDeactivatedElements(string $a_content): bool
2068  {
2069  if (strpos($a_content, " Enabled=\"False\"")) {
2070  return true;
2071  }
2072  return false;
2073  }
2074 
2078  public function getHistoryEntries(): array
2079  {
2080  $db = $this->db;
2081 
2082  $h_query = "SELECT * FROM page_history " .
2083  " WHERE page_id = " . $db->quote($this->getId(), "integer") .
2084  " AND parent_type = " . $db->quote($this->getParentType(), "text") .
2085  " AND lang = " . $db->quote($this->getLanguage(), "text") .
2086  " ORDER BY hdate DESC";
2087 
2088  $hset = $db->query($h_query);
2089  $hentries = array();
2090 
2091  while ($hrec = $db->fetchAssoc($hset)) {
2092  $hrec["sortkey"] = (int) $hrec["nr"];
2093  $hrec["user"] = (int) $hrec["user_id"];
2094  $hentries[] = $hrec;
2095  }
2096  //var_dump($hentries);
2097  return $hentries;
2098  }
2099 
2103  public function getHistoryEntry(int $a_old_nr): ?array
2104  {
2105  $db = $this->db;
2106 
2107  $res = $db->queryF(
2108  "SELECT * FROM page_history " .
2109  " WHERE page_id = %s " .
2110  " AND parent_type = %s " .
2111  " AND nr = %s" .
2112  " AND lang = %s",
2113  array("integer", "text", "integer", "text"),
2114  array($this->getId(), $this->getParentType(), $a_old_nr, $this->getLanguage())
2115  );
2116  if ($hrec = $db->fetchAssoc($res)) {
2117  return $hrec;
2118  }
2119 
2120  return null;
2121  }
2122 
2128  public function getHistoryInfo(int $a_nr): array
2129  {
2130  $db = $this->db;
2131 
2132  // determine previous entry
2133  $and_nr = ($a_nr > 0)
2134  ? " AND nr < " . $db->quote($a_nr, "integer")
2135  : "";
2136  $res = $db->query("SELECT MAX(nr) mnr FROM page_history " .
2137  " WHERE page_id = " . $db->quote($this->getId(), "integer") .
2138  " AND parent_type = " . $db->quote($this->getParentType(), "text") .
2139  " AND lang = " . $db->quote($this->getLanguage(), "text") .
2140  $and_nr);
2141  $row = $db->fetchAssoc($res);
2142  if ($row["mnr"] > 0) {
2143  $res = $db->query("SELECT * FROM page_history " .
2144  " WHERE page_id = " . $db->quote($this->getId(), "integer") .
2145  " AND parent_type = " . $db->quote($this->getParentType(), "text") .
2146  " AND lang = " . $db->quote($this->getLanguage(), "text") .
2147  " AND nr = " . $db->quote((int) $row["mnr"], "integer"));
2148  $row = $db->fetchAssoc($res);
2149  $ret["previous"] = $row;
2150  }
2151 
2152  // determine next entry
2153  $res = $db->query("SELECT MIN(nr) mnr FROM page_history " .
2154  " WHERE page_id = " . $db->quote($this->getId(), "integer") .
2155  " AND parent_type = " . $db->quote($this->getParentType(), "text") .
2156  " AND lang = " . $db->quote($this->getLanguage(), "text") .
2157  " AND nr > " . $db->quote($a_nr, "integer"));
2158  $row = $db->fetchAssoc($res);
2159  if ($row["mnr"] > 0) {
2160  $res = $db->query("SELECT * FROM page_history " .
2161  " WHERE page_id = " . $db->quote($this->getId(), "integer") .
2162  " AND parent_type = " . $db->quote($this->getParentType(), "text") .
2163  " AND lang = " . $db->quote($this->getLanguage(), "text") .
2164  " AND nr = " . $db->quote((int) $row["mnr"], "integer"));
2165  $row = $db->fetchAssoc($res);
2166  $ret["next"] = $row;
2167  }
2168 
2169  // current
2170  if ($a_nr > 0) {
2171  $res = $db->query("SELECT * FROM page_history " .
2172  " WHERE page_id = " . $db->quote($this->getId(), "integer") .
2173  " AND parent_type = " . $db->quote($this->getParentType(), "text") .
2174  " AND lang = " . $db->quote($this->getLanguage(), "text") .
2175  " AND nr = " . $db->quote($a_nr, "integer"));
2176  } else {
2177  $res = $db->query("SELECT page_id, last_change hdate, parent_type, parent_id, last_change_user user_id, content, lang FROM page_object " .
2178  " WHERE page_id = " . $db->quote($this->getId(), "integer") .
2179  " AND parent_type = " . $db->quote($this->getParentType(), "text") .
2180  " AND lang = " . $db->quote($this->getLanguage(), "text"));
2181  }
2182  $row = $db->fetchAssoc($res);
2183  $ret["current"] = $row;
2184 
2185  return $ret;
2186  }
2187 
2188  public function preparePageForCompare(ilPageObject $page): void
2189  {
2190  }
2191 
2195  public function increaseViewCnt(): void
2196  {
2197  $db = $this->db;
2198 
2199  $db->manipulate("UPDATE page_object " .
2200  " SET view_cnt = view_cnt + 1 " .
2201  " WHERE page_id = " . $db->quote($this->getId(), "integer") .
2202  " AND parent_type = " . $db->quote($this->getParentType(), "text") .
2203  " AND lang = " . $db->quote($this->getLanguage(), "text"));
2204  }
2205 
2212  public static function getRecentChanges(
2213  string $a_parent_type,
2214  int $a_parent_id,
2215  int $a_period = 30,
2216  string $a_lang = ""
2217  ): array {
2218  global $DIC;
2219 
2220  $db = $DIC->database();
2221 
2222  $and_lang = "";
2223  if ($a_lang != "") {
2224  $and_lang = " AND lang = " . $db->quote($a_lang, "text");
2225  }
2226 
2227  $page_changes = array();
2228  $limit_ts = date('Y-m-d H:i:s', time() - ($a_period * 24 * 60 * 60));
2229  $q = "SELECT * FROM page_object " .
2230  " WHERE parent_id = " . $db->quote($a_parent_id, "integer") .
2231  " AND parent_type = " . $db->quote($a_parent_type, "text") .
2232  " AND last_change >= " . $db->quote($limit_ts, "timestamp") . $and_lang;
2233  // " AND (TO_DAYS(now()) - TO_DAYS(last_change)) <= ".((int)$a_period);
2234  $set = $db->query($q);
2235  while ($page = $db->fetchAssoc($set)) {
2236  $page_changes[] = array(
2237  "date" => $page["last_change"],
2238  "id" => $page["page_id"],
2239  "lang" => $page["lang"],
2240  "type" => "page",
2241  "user" => $page["last_change_user"]
2242  );
2243  }
2244 
2245  $and_str = "";
2246  if ($a_period > 0) {
2247  $limit_ts = date('Y-m-d H:i:s', time() - ($a_period * 24 * 60 * 60));
2248  $and_str = " AND hdate >= " . $db->quote($limit_ts, "timestamp") . " ";
2249  }
2250 
2251  $q = "SELECT * FROM page_history " .
2252  " WHERE parent_id = " . $db->quote($a_parent_id, "integer") .
2253  " AND parent_type = " . $db->quote($a_parent_type, "text") .
2254  $and_str . $and_lang;
2255  $set = $db->query($q);
2256  while ($page = $db->fetchAssoc($set)) {
2257  $page_changes[] = array(
2258  "date" => $page["hdate"],
2259  "id" => $page["page_id"],
2260  "lang" => $page["lang"],
2261  "type" => "hist",
2262  "nr" => $page["nr"],
2263  "user" => $page["user_id"]
2264  );
2265  }
2266 
2267  $page_changes = ilArrayUtil::sortArray($page_changes, "date", "desc");
2268 
2269  return $page_changes;
2270  }
2271 
2275  public static function getAllPages(
2276  string $a_parent_type,
2277  int $a_parent_id,
2278  string $a_lang = "-"
2279  ): array {
2280  global $DIC;
2281 
2282  $db = $DIC->database();
2283 
2284  $and_lang = "";
2285  if ($a_lang != "") {
2286  $and_lang = " AND lang = " . $db->quote($a_lang, "text");
2287  }
2288 
2289  $q = "SELECT * FROM page_object " .
2290  " WHERE parent_id = " . $db->quote($a_parent_id, "integer") .
2291  " AND parent_type = " . $db->quote($a_parent_type, "text") . $and_lang;
2292  $set = $db->query($q);
2293  $pages = array();
2294  while ($page = $db->fetchAssoc($set)) {
2295  $key_add = ($a_lang == "")
2296  ? ":" . $page["lang"]
2297  : "";
2298  $pages[$page["page_id"] . $key_add] = array(
2299  "date" => $page["last_change"],
2300  "id" => $page["page_id"],
2301  "lang" => $page["lang"],
2302  "user" => $page["last_change_user"]
2303  );
2304  }
2305 
2306  return $pages;
2307  }
2308 
2312  public static function getNewPages(
2313  string $a_parent_type,
2314  int $a_parent_id,
2315  string $a_lang = "-"
2316  ): array {
2317  global $DIC;
2318 
2319  $db = $DIC->database();
2320 
2321  $and_lang = "";
2322  if ($a_lang != "") {
2323  $and_lang = " AND lang = " . $db->quote($a_lang, "text");
2324  }
2325 
2326  $pages = array();
2327 
2328  $q = "SELECT * FROM page_object " .
2329  " WHERE parent_id = " . $db->quote($a_parent_id, "integer") .
2330  " AND parent_type = " . $db->quote($a_parent_type, "text") . $and_lang .
2331  " ORDER BY created DESC";
2332  $set = $db->query($q);
2333  while ($page = $db->fetchAssoc($set)) {
2334  if ($page["created"] != "") {
2335  $pages[] = array(
2336  "created" => $page["created"],
2337  "id" => $page["page_id"],
2338  "lang" => $page["lang"],
2339  "user" => $page["create_user"],
2340  );
2341  }
2342  }
2343 
2344  return $pages;
2345  }
2346 
2352  public static function getParentObjectContributors(
2353  string $a_parent_type,
2354  int $a_parent_id,
2355  string $a_lang = "-"
2356  ): array {
2357  global $DIC;
2358 
2359  $db = $DIC->database();
2360 
2361  $and_lang = "";
2362  if ($a_lang != "") {
2363  $and_lang = " AND lang = " . $db->quote($a_lang, "text");
2364  }
2365 
2366  $contributors = array();
2367  $set = $db->queryF(
2368  "SELECT last_change_user, lang, page_id FROM page_object " .
2369  " WHERE parent_id = %s AND parent_type = %s " .
2370  " AND last_change_user != %s" . $and_lang,
2371  array("integer", "text", "integer"),
2372  array($a_parent_id, $a_parent_type, 0)
2373  );
2374 
2375  while ($page = $db->fetchAssoc($set)) {
2376  if ($a_lang == "") {
2377  $contributors[$page["last_change_user"]][$page["page_id"]][$page["lang"]] = 1;
2378  } else {
2379  $contributors[$page["last_change_user"]][$page["page_id"]] = 1;
2380  }
2381  }
2382 
2383  $set = $db->queryF(
2384  "SELECT count(*) as cnt, lang, page_id, user_id FROM page_history " .
2385  " WHERE parent_id = %s AND parent_type = %s AND user_id != %s " . $and_lang .
2386  " GROUP BY page_id, user_id, lang ",
2387  array("integer", "text", "integer"),
2388  array($a_parent_id, $a_parent_type, 0)
2389  );
2390  while ($hpage = $db->fetchAssoc($set)) {
2391  if ($a_lang == "") {
2392  $contributors[$hpage["user_id"]][$hpage["page_id"]][$hpage["lang"]] =
2393  ($contributors[$hpage["user_id"]][$hpage["page_id"]][$hpage["lang"]] ?? 0) + $hpage["cnt"];
2394  } else {
2395  $contributors[$hpage["user_id"]][$hpage["page_id"]] =
2396  ($contributors[$hpage["user_id"]][$hpage["page_id"]] ?? 0) + $hpage["cnt"];
2397  }
2398  }
2399 
2400  $c = array();
2401  foreach ($contributors as $k => $co) {
2402  if (ilObject::_lookupType($k) == "usr") {
2403  $name = ilObjUser::_lookupName($k);
2404  $c[] = array("user_id" => $k,
2405  "pages" => $co,
2406  "lastname" => $name["lastname"],
2407  "firstname" => $name["firstname"]
2408  );
2409  }
2410  }
2411 
2412  return $c;
2413  }
2414 
2418  public static function getPageContributors(
2419  string $a_parent_type,
2420  int $a_page_id,
2421  string $a_lang = "-"
2422  ): array {
2423  global $DIC;
2424 
2425  $db = $DIC->database();
2426 
2427  $and_lang = "";
2428  if ($a_lang != "") {
2429  $and_lang = " AND lang = " . $db->quote($a_lang, "text");
2430  }
2431 
2432  $contributors = array();
2433  $set = $db->queryF(
2434  "SELECT last_change_user, lang FROM page_object " .
2435  " WHERE page_id = %s AND parent_type = %s " .
2436  " AND last_change_user != %s" . $and_lang,
2437  array("integer", "text", "integer"),
2438  array($a_page_id, $a_parent_type, 0)
2439  );
2440 
2441  while ($page = $db->fetchAssoc($set)) {
2442  if ($a_lang == "") {
2443  $contributors[$page["last_change_user"]][$page["lang"]] = 1;
2444  } else {
2445  $contributors[$page["last_change_user"]] = 1;
2446  }
2447  }
2448 
2449  $set = $db->queryF(
2450  "SELECT count(*) as cnt, lang, page_id, user_id FROM page_history " .
2451  " WHERE page_id = %s AND parent_type = %s AND user_id != %s " . $and_lang .
2452  " GROUP BY user_id, page_id, lang ",
2453  array("integer", "text", "integer"),
2454  array($a_page_id, $a_parent_type, 0)
2455  );
2456  while ($hpage = $db->fetchAssoc($set)) {
2457  if ($a_lang === "") {
2458  $contributors[$hpage["user_id"]][$page["lang"]] =
2459  ($contributors[$hpage["user_id"]][$page["lang"]] ?? 0) + $hpage["cnt"];
2460  } else {
2461  $contributors[$hpage["user_id"]] =
2462  ($contributors[$hpage["user_id"]] ?? 0) + $hpage["cnt"];
2463  }
2464  }
2465 
2466  $c = array();
2467  foreach ($contributors as $k => $co) {
2468  $name = ilObjUser::_lookupName($k);
2469  $c[] = array("user_id" => $k,
2470  "pages" => $co,
2471  "lastname" => $name["lastname"],
2472  "firstname" => $name["firstname"]
2473  );
2474  }
2475 
2476  return $c;
2477  }
2478 
2482  public function writeRenderedContent(
2483  string $a_content,
2484  string $a_md5
2485  ): void {
2486  global $DIC;
2487 
2488  $db = $DIC->database();
2489 
2490  $db->update("page_object", array(
2491  "rendered_content" => array("clob", $a_content),
2492  "render_md5" => array("text", $a_md5),
2493  "rendered_time" => array("timestamp", ilUtil::now())
2494  ), array(
2495  "page_id" => array("integer", $this->getId()),
2496  "lang" => array("text", $this->getLanguage()),
2497  "parent_type" => array("text", $this->getParentType())
2498  ));
2499  }
2500 
2504  public static function getPagesWithLinks(
2505  string $a_parent_type,
2506  int $a_parent_id,
2507  string $a_lang = "-"
2508  ): array {
2509  global $DIC;
2510 
2511  $db = $DIC->database();
2512 
2513  $and_lang = "";
2514  if ($a_lang != "") {
2515  $and_lang = " AND lang = " . $db->quote($a_lang, "text");
2516  }
2517 
2518  $q = "SELECT * FROM page_object " .
2519  " WHERE parent_id = " . $db->quote($a_parent_id, "integer") .
2520  " AND parent_type = " . $db->quote($a_parent_type, "text") .
2521  " AND int_links = " . $db->quote(1, "integer") . $and_lang;
2522  $set = $db->query($q);
2523  $pages = array();
2524  while ($page = $db->fetchAssoc($set)) {
2525  $key_add = ($a_lang == "")
2526  ? ":" . $page["lang"]
2527  : "";
2528  $pages[$page["page_id"] . $key_add] = array(
2529  "date" => $page["last_change"],
2530  "id" => $page["page_id"],
2531  "lang" => $page["lang"],
2532  "user" => $page["last_change_user"]
2533  );
2534  }
2535 
2536  return $pages;
2537  }
2538 
2542  public function containsIntLinks(string $a_content): bool
2543  {
2544  if (strpos($a_content, "IntLink")) {
2545  return true;
2546  }
2547  return false;
2548  }
2549 
2553  public function performAutomaticModifications(): void
2554  {
2555  }
2556 
2557  protected function getContentManager(): \ILIAS\COPage\Page\PageContentManager
2558  {
2559  $this->buildDom();
2560  return $this->page_manager->content($this->getDomDoc());
2561  }
2562 
2566  public function saveInitialOpenedContent(
2567  string $a_type,
2568  int $a_id,
2569  string $a_target
2570  ): void {
2571  $cm = $this->getContentManager();
2572  $cm->setInitialOpenedContent($a_type, $a_id, $a_target);
2573  $this->update();
2574  }
2575 
2579  public function getInitialOpenedContent(): array
2580  {
2581  $cm = $this->getContentManager();
2582  return $cm->getInitialOpenedContent();
2583  }
2584 
2591  public function beforePageContentUpdate(ilPageContent $a_page_content): void
2592  {
2593  }
2594 
2603  public function copy(
2604  int $a_id,
2605  string $a_parent_type = "",
2606  int $a_new_parent_id = 0,
2607  bool $a_clone_mobs = false,
2608  int $obj_copy_id = 0,
2609  bool $overwrite_existing = true
2610  ): void {
2611  if ($a_parent_type == "") {
2612  $a_parent_type = $this->getParentType();
2613  if ($a_new_parent_id == 0) {
2614  $a_new_parent_id = $this->getParentId();
2615  }
2616  }
2617 
2618  foreach (self::lookupTranslations($this->getParentType(), $this->getId()) as $l) {
2619  $existed = false;
2620  $orig_page = ilPageObjectFactory::getInstance($this->getParentType(), $this->getId(), 0, $l);
2621  if (ilPageObject::_exists($a_parent_type, $a_id, $l)) {
2622  if (!$overwrite_existing) {
2623  continue;
2624  }
2625  $new_page_object = ilPageObjectFactory::getInstance($a_parent_type, $a_id, 0, $l);
2626  $existed = true;
2627  } else {
2628  $new_page_object = ilPageObjectFactory::getInstance($a_parent_type, 0, 0, $l);
2629  $new_page_object->setParentId($a_new_parent_id);
2630  $new_page_object->setId($a_id);
2631  }
2632  $new_page_object->setXMLContent($orig_page->copyXMLContent($a_clone_mobs, $a_new_parent_id, $obj_copy_id));
2633  $new_page_object->setActive($orig_page->getActive());
2634  $new_page_object->setActivationStart($orig_page->getActivationStart());
2635  $new_page_object->setActivationEnd($orig_page->getActivationEnd());
2636  $this->setCopyProperties($new_page_object);
2637  if ($existed) {
2638  $new_page_object->buildDom();
2639  $new_page_object->update();
2640  } else {
2641  $new_page_object->create(false);
2642  }
2643  }
2644  }
2645 
2646  protected function setCopyProperties(ilPageObject $new_page): void
2647  {
2648  }
2649 
2650 
2654  public static function lookupTranslations(
2655  string $a_parent_type,
2656  int $a_id
2657  ): array {
2658  global $DIC;
2659 
2660  $db = $DIC->database();
2661 
2662  $set = $db->query(
2663  "SELECT lang FROM page_object " .
2664  " WHERE page_id = " . $db->quote($a_id, "integer") .
2665  " AND parent_type = " . $db->quote($a_parent_type, "text")
2666  );
2667  $langs = array();
2668  while ($rec = $db->fetchAssoc($set)) {
2669  $langs[] = $rec["lang"];
2670  }
2671  return $langs;
2672  }
2673 
2677  public function copyPageToTranslation(
2678  string $a_target_lang
2679  ): void {
2680  $transl_page = ilPageObjectFactory::getInstance(
2681  $this->getParentType(),
2682  0,
2683  0,
2684  $a_target_lang
2685  );
2686  $this->setTranslationProperties($transl_page);
2687  $transl_page->create(false);
2688  }
2689 
2690  protected function setTranslationProperties(self $transl_page): void
2691  {
2692  $transl_page->setId($this->getId());
2693  $transl_page->setParentId($this->getParentId());
2694  $transl_page->setXMLContent($this->copyXmlContent());
2695  $transl_page->setActive($this->getActive());
2696  $transl_page->setActivationStart($this->getActivationStart());
2697  $transl_page->setActivationEnd($this->getActivationEnd());
2698  }
2699 
2700 
2704 
2708  public function getEditLock(): bool
2709  {
2710  $db = $this->db;
2711  $user = $this->user;
2712 
2713  $min = $this->getEffectiveEditLockTime();
2714  if ($min > 0) {
2715  // try to set the lock for the user
2716  $ts = time();
2717  $db->manipulate(
2718  "UPDATE page_object SET " .
2719  " edit_lock_user = " . $db->quote($user->getId(), "integer") . "," .
2720  " edit_lock_ts = " . $db->quote($ts, "integer") .
2721  " WHERE (edit_lock_user = " . $db->quote($user->getId(), "integer") . " OR " .
2722  " edit_lock_ts < " . $db->quote(time() - ($min * 60), "integer") . ") " .
2723  " AND page_id = " . $db->quote($this->getId(), "integer") .
2724  " AND parent_type = " . $db->quote($this->getParentType(), "text")
2725  );
2726 
2727  $set = $db->query(
2728  "SELECT edit_lock_user FROM page_object " .
2729  " WHERE page_id = " . $db->quote($this->getId(), "integer") .
2730  " AND parent_type = " . $db->quote($this->getParentType(), "text")
2731  );
2732  $rec = $db->fetchAssoc($set);
2733  if ($rec["edit_lock_user"] != $user->getId()) {
2734  return false;
2735  }
2736  }
2737 
2738  return true;
2739  }
2740 
2744  public function releasePageLock(): bool
2745  {
2746  $db = $this->db;
2747  $user = $this->user;
2748  $aset = new ilSetting("adve");
2749 
2750  $min = (int) $aset->get("block_mode_minutes");
2751  if ($min > 0) {
2752  // try to set the lock for the user
2753  $ts = time();
2754  $db->manipulate(
2755  "UPDATE page_object SET " .
2756  " edit_lock_user = " . $db->quote($user->getId(), "integer") . "," .
2757  " edit_lock_ts = 0" .
2758  " WHERE edit_lock_user = " . $db->quote($user->getId(), "integer") .
2759  " AND page_id = " . $db->quote($this->getId(), "integer") .
2760  " AND parent_type = " . $db->quote($this->getParentType(), "text")
2761  );
2762 
2763  $set = $db->query(
2764  "SELECT edit_lock_user FROM page_object " .
2765  " WHERE page_id = " . $db->quote($this->getId(), "integer") .
2766  " AND parent_type = " . $db->quote($this->getParentType(), "text")
2767  );
2768  $rec = $db->fetchAssoc($set);
2769  if ($rec["edit_lock_user"] != $user->getId()) {
2770  return false;
2771  }
2772  }
2773 
2774  return true;
2775  }
2776 
2780  public function getEditLockInfo(): array
2781  {
2782  $db = $this->db;
2783 
2784  $aset = new ilSetting("adve");
2785  $min = (int) $aset->get("block_mode_minutes");
2786 
2787  $set = $db->query(
2788  "SELECT edit_lock_user, edit_lock_ts FROM page_object " .
2789  " WHERE page_id = " . $db->quote($this->getId(), "integer") .
2790  " AND parent_type = " . $db->quote($this->getParentType(), "text")
2791  );
2792  $rec = $db->fetchAssoc($set);
2793  $rec["edit_lock_until"] = $rec["edit_lock_ts"] + $min * 60;
2794 
2795  return $rec;
2796  }
2797 
2802  public static function truncateHTML(
2803  string $a_text,
2804  int $a_length = 100,
2805  string $a_ending = '...',
2806  bool $a_exact = false,
2807  bool $a_consider_html = true
2808  ): string {
2809  $open_tags = [];
2810  if ($a_consider_html) {
2811  // if the plain text is shorter than the maximum length, return the whole text
2812  if (strlen(preg_replace('/<.*?>/', '', $a_text)) <= $a_length) {
2813  return $a_text;
2814  }
2815 
2816  // splits all html-tags to scanable lines
2817  $total_length = strlen($a_ending);
2818  $open_tags = array();
2819  $truncate = '';
2820  preg_match_all('/(<.+?>)?([^<>]*)/s', $a_text, $lines, PREG_SET_ORDER);
2821  foreach ($lines as $line_matchings) {
2822  // if there is any html-tag in this line, handle it and add it (uncounted) to the output
2823  if (!empty($line_matchings[1])) {
2824  // if it's an "empty element" with or without xhtml-conform closing slash
2825  if (preg_match(
2826  '/^<(\s*.+?\/\s*|\s*(img|br|input|hr|area|base|basefont|col|frame|isindex|link|meta|param)(\s.+?)?)>$/is',
2827  $line_matchings[1]
2828  )) {
2829  // do nothing
2830  } // if tag is a closing tag
2831  elseif (preg_match('/^<\s*\/([^\s]+?)\s*>$/s', $line_matchings[1], $tag_matchings)) {
2832  // delete tag from $open_tags list
2833  $pos = array_search($tag_matchings[1], $open_tags);
2834  if ($pos !== false) {
2835  unset($open_tags[$pos]);
2836  }
2837  } // if tag is an opening tag
2838  elseif (preg_match('/^<\s*([^\s>!]+).*?>$/s', $line_matchings[1], $tag_matchings)) {
2839  // add tag to the beginning of $open_tags list
2840  array_unshift($open_tags, strtolower($tag_matchings[1]));
2841  }
2842  // add html-tag to $truncate'd text
2843  $truncate .= $line_matchings[1];
2844  }
2845 
2846  // calculate the length of the plain text part of the line; handle entities as one character
2847  $content_length = strlen(preg_replace(
2848  '/&[0-9a-z]{2,8};|&#[0-9]{1,7};|[0-9a-f]{1,6};/i',
2849  ' ',
2850  $line_matchings[2]
2851  ));
2852  if ($total_length + $content_length > $a_length) {
2853  // the number of characters which are left
2854  $left = $a_length - $total_length;
2855  $entities_length = 0;
2856  // search for html entities
2857  if (preg_match_all(
2858  '/&[0-9a-z]{2,8};|&#[0-9]{1,7};|[0-9a-f]{1,6};/i',
2859  $line_matchings[2],
2860  $entities,
2861  PREG_OFFSET_CAPTURE
2862  )) {
2863  // calculate the real length of all entities in the legal range
2864  foreach ($entities[0] as $entity) {
2865  if ($entity[1] + 1 - $entities_length <= $left) {
2866  $left--;
2867  $entities_length += strlen($entity[0]);
2868  } else {
2869  // no more characters left
2870  break;
2871  }
2872  }
2873  }
2874 
2875  // $truncate .= substr($line_matchings[2], 0, $left+$entities_length);
2876  $truncate .= ilStr::shortenText($line_matchings[2], 0, $left + $entities_length);
2877 
2878  // maximum lenght is reached, so get off the loop
2879  break;
2880  } else {
2881  $truncate .= $line_matchings[2];
2882  $total_length += $content_length;
2883  }
2884 
2885  // if the maximum length is reached, get off the loop
2886  if ($total_length >= $a_length) {
2887  break;
2888  }
2889  }
2890  } else {
2891  if (strlen($a_text) <= $a_length) {
2892  return $a_text;
2893  } else {
2894  // $truncate = substr($a_text, 0, $a_length - strlen($a_ending));
2895  $truncate = ilStr::shortenText($a_text, 0, $a_length - strlen($a_ending));
2896  }
2897  }
2898 
2899  // THIS IS BUGGY AS IT MIGHT BREAK AN OPEN TAG AT THE END
2900  if (!count($open_tags)) {
2901  // if the words shouldn't be cut in the middle...
2902  if (!$a_exact) {
2903  // ...search the last occurance of a space...
2904  $spacepos = strrpos($truncate, ' ');
2905  if ($spacepos !== false) {
2906  // ...and cut the text in this position
2907  // $truncate = substr($truncate, 0, $spacepos);
2908  $truncate = ilStr::shortenText($truncate, 0, $spacepos);
2909  }
2910  }
2911  }
2912 
2913  // add the defined ending to the text
2914  $truncate .= $a_ending;
2915 
2916  if ($a_consider_html) {
2917  // close all unclosed html-tags
2918  foreach ($open_tags as $tag) {
2919  $truncate .= '</' . $tag . '>';
2920  }
2921  }
2922 
2923  return $truncate;
2924  }
2925 
2930  public function getContentTemplates(): array
2931  {
2932  return array();
2933  }
2934 
2938  public static function getLastChangeByParent(
2939  string $a_parent_type,
2940  int $a_parent_id,
2941  string $a_lang = ""
2942  ): string {
2943  global $DIC;
2944 
2945  $db = $DIC->database();
2946 
2947  $and_lang = "";
2948  if ($a_lang != "") {
2949  $and_lang = " AND lang = " . $db->quote($a_lang, "text");
2950  }
2951 
2952  $db->setLimit(1, 0);
2953  $q = "SELECT last_change FROM page_object " .
2954  " WHERE parent_id = " . $db->quote($a_parent_id, "integer") .
2955  " AND parent_type = " . $db->quote($a_parent_type, "text") . $and_lang .
2956  " ORDER BY last_change DESC";
2957 
2958  $set = $db->query($q);
2959  $rec = $db->fetchAssoc($set);
2960 
2961  return $rec["last_change"];
2962  }
2963 
2964  public function getEffectiveEditLockTime(): int
2965  {
2966  if ($this->getPageConfig()->getEditLockSupport() == false) {
2967  return 0;
2968  }
2969 
2970  $aset = new ilSetting("adve");
2971  $min = (int) $aset->get("block_mode_minutes");
2972 
2973  return $min;
2974  }
2975 
2980  public function resolveResources(array $ref_mapping): bool
2981  {
2982  return ilPCResources::resolveResources($this, $ref_mapping);
2983  }
2984 
2988  public function getRepoObjId(): ?int
2989  {
2990  return $this->getParentId();
2991  }
2992 
2997  public function getPCModel(): array
2998  {
2999  $model = [];
3000  /*
3001  $this->log->debug("--- Get page model start");
3002  $model = [];
3003  foreach ($this->getAllPCIds() as $pc_id) {
3004  $co = $this->getContentObjectForPcId($pc_id);
3005  if ($co !== null) {
3006  $co_model = $co->getModel();
3007  if ($co_model !== null) {
3008  $model[$pc_id] = $co_model;
3009  }
3010  }
3011  }
3012  $this->log->debug("--- Get page model end");
3013  */
3014 
3015  $config = $this->getPageConfig();
3016  foreach ($this->pc_definition->getPCDefinitions() as $def) {
3017  $model_provider = $this->pc_definition->getPCModelProviderByName($def["name"]);
3018  if ($config->getEnablePCType($def["name"]) || $def["name"] === "PlaceHolder") {
3019  if (!is_null($model_provider)) {
3020  foreach ($model_provider->getModels(
3021  $this->dom_util,
3022  $this
3023  ) as $pc_id => $co_model) {
3024  $model[$pc_id] = $co_model;
3025  }
3026  }
3027  }
3028  }
3029  return $model;
3030  }
3031 
3039  public function assignCharacteristic(
3040  array $targets,
3041  string $char_par,
3042  string $char_sec,
3043  string $char_med
3044  ) {
3045  if (is_array($targets)) {
3046  foreach ($targets as $t) {
3047  $tarr = explode(":", $t);
3048  $cont_obj = $this->getContentObject($tarr[0], $tarr[1]);
3049  if (is_object($cont_obj) && $cont_obj->getType() == "par") {
3050  $cont_obj->setCharacteristic($char_par);
3051  }
3052  if (is_object($cont_obj) && $cont_obj->getType() == "sec") {
3053  $cont_obj->setCharacteristic($char_sec);
3054  }
3055  if (is_object($cont_obj) && $cont_obj->getType() == "media") {
3056  $cont_obj->setClass($char_med);
3057  }
3058  }
3059  return $this->update();
3060  }
3061  return true;
3062  }
3063 }
assignCharacteristic(array $targets, string $char_par, string $char_sec, string $char_med)
Assign characteristic.
getLastUpdateOfIncludedElements()
Get last update of included elements (media objects and files).
setRenderedContent(string $a_renderedcontent)
performAutomaticModifications()
Perform automatic modifications (may be overwritten by sub classes)
getActive(bool $a_check_scheduled_activation=false)
static _lookupActive(int $a_id, string $a_parent_type, bool $a_check_scheduled_activation=false, string $a_lang="-")
lookup activation status
checkPCIds()
Check, whether (all) page content hashes are set.
static resolveResources(ilPageObject $page, array $ref_mappings)
cutContents(array $a_hids)
Copy contents to clipboard and cut them from the page.
getContentDomNode(string $a_hier_id, string $a_pc_id="")
increaseViewCnt()
Increase view cnt.
copyPageToTranslation(string $a_target_lang)
Copy page to translation.
getAllPCIds()
Get all pc ids.
getLangVarXML(string $var)
$res
Definition: ltiservices.php:66
getPCModel()
Get page component model.
updateFromXML()
Updates page object with current xml content This function is currently (8 beta) called by: ...
getHistoryInfo(int $a_nr)
Get information about a history entry, its predecessor and its successor.
__beforeDelete()
Before deletion handler (internal).
releasePageLock()
Release page lock.
addFileSizes()
add file sizes
validateDom(bool $throw=false)
Validate the page content agains page DTD.
setContainsQuestion(bool $a_val)
resolveFileItems(array $a_mapping)
Resolve file items (after import)
setPageConfig(ilPageConfig $a_val)
setCopyProperties(ilPageObject $new_page)
ILIAS COPage ID ContentIdManager $content_id_manager
getDuplicatePCIds()
Get all duplicate PC Ids.
appendXMLContent(string $a_xml)
append xml content to page setXMLContent must be called before and the same encoding must be us...
buildDom(bool $a_force=false)
static getParentObjectContributors(string $a_parent_type, int $a_parent_id, string $a_lang="-")
Get all contributors for parent object.
create(bool $a_import=false)
create new page (with current xml data)
const IL_CAL_DATETIME
setTranslationProperties(self $transl_page)
manipulateF(string $query, array $types, array $values)
ILIAS COPage PC DomainService $pc_service
setImportMode(bool $a_val)
static deleteNewsOfContext(int $a_context_obj_id, string $a_context_obj_type, int $a_context_sub_obj_id=0, string $a_context_sub_obj_type="")
Delete all news of a context.
static getLogger(string $a_component_id)
Get component logger.
getHierIdForPcId(string $pcid)
setParentId(int $a_id)
static getPagesWithLinks(string $a_parent_type, int $a_parent_id, string $a_lang="-")
Get all pages for parent object that contain internal links.
static _isScheduledActivation(int $a_id, string $a_parent_type, string $a_lang="-")
Check whether page is activated by time schedule.
getDomNodeForPCId(string $pc_id)
ILIAS COPage ReadingTime ReadingTimeManager $reading_time_manager
fetchAssoc(ilDBStatement $statement)
static _before(ilDateTime $start, ilDateTime $end, string $a_compare_field='', string $a_tz='')
compare two dates and check start is before end This method does not consider tz offsets.
getMultimediaXML(bool $offline=false)
get a xml string that contains all media object elements, that are referenced by any media alias in t...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setContentIdManager(\ILIAS\COPage\ID\ContentIdManager $content_id_manager)
Interface Observer Contains several chained tasks and infos about them.
update(bool $a_validate=true, bool $a_no_history=false)
update complete page content in db (dom xml content is used)
update(string $table_name, array $values, array $where)
$where MUST contain existing columns only.
static array $activation_data
static _existsAndNotEmpty(string $a_parent_type, int $a_id, string $a_lang="-")
Checks whether page exists and is not empty (may return true on some empty pages) ...
static _writeParentId(string $a_parent_type, int $a_pg_id, int $a_par_id)
getPCIdForHierId(string $hier_id)
static _lookupName(int $a_user_id)
lookup user name
saveStyleUsage(DOMDocument $a_domdoc, int $a_old_nr=0)
Save all style class/template usages.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
read()
Read page data.
getContentObjectForPcId(string $pcid)
Get content object for pc id.
static getPageContributors(string $a_parent_type, int $a_page_id, string $a_lang="-")
Get all contributors for parent object.
static _lookupActivationData(int $a_id, string $a_parent_type, string $a_lang="-")
Lookup activation data.
getHistoryEntries()
Get History Entries.
quote($value, string $type)
getDomDoc()
Get dom doc (DOMDocument)
ilPageConfig $page_config
beforePageContentUpdate(ilPageContent $a_page_content)
Before page content update Note: This one is "work in progress", currently only text paragraphs call ...
preparePageForCompare(ilPageObject $page)
static lookupTranslations(string $a_parent_type, int $a_id)
Lookup translations.
resolveIIMMediaAliases(array $a_mapping)
Resolve iim media aliases (in ilContObjParse)
const IL_CAL_UNIX
$c
Definition: deliver.php:25
static now()
Return current timestamp in Y-m-d H:i:s format.
setLimit(int $limit, int $offset=0)
Content object of ilPageObject (see ILIAS DTD).
handleRepositoryLinksOnCopy(array $a_mapping, int $a_source_ref_id)
Handle repository links on copy process.
$path
Definition: ltiservices.php:29
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
deleteContent(string $a_hid, bool $a_update=true, string $a_pcid="", bool $move_operation=false)
delete content object with hierarchical id $a_hid
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setXMLContent(string $a_xml, string $a_encoding="UTF-8")
set xml content of page, start with <PageObject...>, end with </PageObject>, comply with ILIAS DTD...
deleteStyleUsages(int $a_old_nr=0)
Delete style usages.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static _lookupContainsDeactivatedElements(int $a_id, string $a_parent_type, string $a_lang="-")
lookup whether page contains deactivated elements
static shortenText(string $a_string, int $a_start_pos, int $a_num_bytes, string $a_encoding='UTF-8')
Shorten text to the given number of bytes.
insertContentNode(DOMNode $a_cont_node, string $a_pos, int $a_mode=IL_INSERT_AFTER, string $a_pcid="")
insert a content node before/after a sibling or as first child of a parent
resolveResources(array $ref_mapping)
Resolve resources.
getHierIdsForPCIds(array $a_pc_ids)
Get hier ids for a set of pc ids.
ILIAS COPage Link LinkManager $link
saveInternalLinks(DOMDocument $a_domdoc)
save internal links of page
static _exists(int $id, bool $reference=false, ?string $type=null)
checks if an object exists in object_data
static truncateHTML(string $a_text, int $a_length=100, string $a_ending='...', bool $a_exact=false, bool $a_consider_html=true)
Truncate (html) string.
const ILIAS_VERSION_NUMERIC
getInternalLinks()
get all internal links that are used within the page
getParentContentObjectForPcId(string $pcid)
Get parent content object for pc id.
static getNewPages(string $a_parent_type, int $a_parent_id, string $a_lang="-")
Get new pages.
static _existsAndNotEmpty(string $a_parent_type, int $a_id, string $a_lang="-")
checks whether page exists and is not empty (may return true on some empty pages) ...
copyXmlContent(bool $a_clone_mobs=false, int $a_new_parent_id=0, int $obj_copy_id=0, bool $self_ass=true)
Copy content of page; replace page components with copies where necessary (e.g.
containsIntLinks(string $a_content)
Check whether content contains internal links.
saveInitialOpenedContent(string $a_type, int $a_id, string $a_target)
Save initial opened content.
ILIAS COPage PC PCDefinition $pc_definition
static getNamePresentation( $a_user_id, bool $a_user_image=false, bool $a_profile_link=false, string $a_profile_back_link='', bool $a_force_first_lastname=false, bool $a_omit_login=false, bool $a_sortable=true, bool $a_return_data_array=false, $a_ctrl_path='ilpublicuserprofilegui')
Default behaviour is:
insertInstIntoIDs(string $a_inst, bool $a_res_ref_to_obj_id=true)
inserts installation id into ids (e.g.
DOMDocument $dom
setActivationStart(?string $a_activationstart)
static _after(ilDateTime $start, ilDateTime $end, string $a_compare_field='', string $a_tz='')
compare two dates and check start is after end This method does not consider tz offsets.
writeRenderedContent(string $a_content, string $a_md5)
Write rendered content.
deleteInternalLinks()
Delete internal links.
static getRecentChanges(string $a_parent_type, int $a_parent_id, int $a_period=30, string $a_lang="")
Get recent pages changes for parent object.
static _exists(string $a_parent_type, int $a_id, string $a_lang="", bool $a_no_cache=false)
Checks whether page exists.
insertContent(ilPageContent $a_cont_obj, string $a_pos, int $a_mode=IL_INSERT_AFTER, string $a_pcid="", bool $remove_placeholder=true)
insert a content node before/after a sibling or as first child of a parent
resolveMediaAliases(array $a_mapping, bool $a_reuse_existing_by_import=false)
Resolve media aliases (after import)
getInitialOpenedContent()
Get initial opened content.
setActivationEnd(?string $a_activationend)
Set Activation End.
Class ilPageObject Handles PageObjects of ILIAS Learning Modules (see ILIAS DTD)
moveContentAfter(string $a_source, string $a_target, string $a_spcid="", string $a_tpcid="")
move content object from position $a_source before position $a_target (both hierarchical content ids)...
getHistoryEntry(int $a_old_nr)
Get History Entry.
global $DIC
Definition: shib_login.php:22
deleteContents(array $a_hids, bool $a_update=true, bool $a_self_ass=false, bool $move_operation=false)
Delete multiple content objects.
containsIntLink()
returns true, if page was marked as containing an intern link (via setContainsIntLink) (this method s...
createFromXML()
Create new page object with current xml content.
ILIAS COPage Dom DomUtil $dom_util
query(string $query)
Run a (read-only) Query on the database.
setLanguage(string $a_val)
Set language.
resolveIntLinks(?array $a_link_map=null)
Resolves all internal link targets of the page, if targets are available (after import) ...
ilObjectDefinition $obj_definition
switchEnableMultiple(array $a_hids, bool $a_update=true, bool $a_self_ass=false)
(De-)activate elements
const IL_INSERT_AFTER
$txt
Definition: error.php:31
static lookupParentId(int $a_id, string $a_type)
static _getMobsOfObject(string $a_type, int $a_id, int $a_usage_hist_nr=0, string $a_lang="-")
setConcreteLang(string $a_val)
getContentObject(string $a_hier_id, string $a_pc_id="")
Get a content object of the page.
static getLastChangeByParent(string $a_parent_type, int $a_parent_id, string $a_lang="")
Get all pages for parent object.
queryF(string $query, array $types, array $values)
$filename
Definition: buildRTE.php:78
getContentTemplates()
Get content templates.
insertPCIds()
Insert Page Content IDs.
static _writeActive(int $a_id, string $a_parent_type, bool $a_active)
write activation status
addHierIDs()
Add hierarchical ID (e.g.
afterUpdate(DOMDocument $domdoc, string $xml)
After update.
setContainsIntLink(bool $a_contains_link)
lm parser set this flag to true, if the page contains intern links (this method should only be called...
$handler
Definition: oai.php:30
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static preloadActivationDataByParentId(int $a_parent_id)
Preload activation data by Parent Id.
setLastChange(string $a_lastchange)
static _deleteAllUsages(string $a_type, int $a_id, ?int $a_usage_hist_nr=0, string $a_lang="-")
static array $exists
getEditLockInfo()
Get edit lock info.
moveIntLinks(array $a_from_to)
Move internal links from one destination to another.
$lm_set
sendParagraph(string $par_id, string $filename)
registerOfflineHandler(object $handler)
ilDBInterface $db
copyContents(array $a_hids)
Copy contents to clipboard.
LOMServices $lom_services
__afterUpdate(DOMDocument $a_domdoc, string $a_xml, bool $a_creation=false, bool $a_empty=false)
After update event handler (internal).
__afterHistoryEntry(DOMDocument $a_old_domdoc, string $a_old_content, int $a_old_nr)
addUpdateListener(object $a_object, string $a_method, $a_parameters="")
getLanguageVariablesXML(int $style_id=0)
Get language variables as XML.
static getConfigInstance(string $a_parent_type)
Get page config instance.
collectMediaObjects(bool $a_inline_only=true)
get all media objects, that are referenced and used within the page
getEditLock()
Get page lock.
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false, ?ilObjUser $user=null,)
$q
Definition: shib_logout.php:21
link(string $caption, string $href, bool $new_viewport=false)
needsImportParsing(?bool $a_parse=null)
containsDeactivatedElements(string $a_content)
Check whether content contains deactivated elements.
__construct(int $a_id=0, int $a_old_nr=0, string $a_lang="-")
getXMLContent(bool $a_incl_head=false)
get xml content of page
language()
description: > Example for rendring a language glyph.
Definition: language.php:41
copy(int $a_id, string $a_parent_type="", int $a_new_parent_id=0, bool $a_clone_mobs=false, int $obj_copy_id=0, bool $overwrite_existing=true)
Copy page.
getParagraphForPCID(string $pcid)
getPCIdsForHierIds(array $hier_ids)
Get hier ids for a set of pc ids.
manipulate(string $query)
Run a (write) Query on the database.
static _lookupType(int $id, bool $reference=false)
handleDeleteContent(?DOMNode $a_node=null, $move_operation=false)
Handle content before deletion This currently treats only plugged content If no node is given...
getXMLFromDom(bool $a_incl_head=false, bool $a_append_mobs=false, bool $a_append_bib=false, string $a_append_str="", bool $a_omit_pageobject_tag=false, int $style_id=0, bool $offline=false)
get xml content of page from dom (use this, if any changes are made to the document) ...
getRepoObjId()
Get object id of repository object that contains this page, return 0 if page does not belong to a rep...
ILIAS COPage Style StyleManager $style_manager
getMediaAliasElement(int $a_mob_id, int $a_nr=1)
get complete media object (alias) element
setActive(bool $a_active)
static _getLastUpdateOfObjects(array $obj_ids)
static getInstance(string $a_parent_type, int $a_id=0, int $a_old_nr=0, string $a_lang="-")
Get page object instance.
setRenderMd5(string $a_rendermd5)
ILIAS COPage Page PageManager $page_manager
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
pasteContents(string $a_hier_id, bool $a_self_ass=false)
Paste contents from pc clipboard.
setShowActivationInfo(bool $a_val)
setRenderedTime(string $a_renderedtime)
static getAllPages(string $a_parent_type, int $a_parent_id, string $a_lang="-")
Get all pages for parent object.
static sortArray(array $array, string $a_array_sortby_key, string $a_array_sortorder="asc", bool $a_numeric=false, bool $a_keep_keys=false)
Class ilPCParagraphGUI User Interface for Paragraph Editing.
setLastChangeUser(int $a_val)
resolveQuestionReferences(array $a_mapping)
Resolve all quesiont references (after import)