19 define(
"IL_INSERT_BEFORE", 0);
20 define(
"IL_INSERT_AFTER", 1);
21 define(
"IL_INSERT_CHILD", 2);
55 protected \ILIAS\COPage\Link\LinkManager
$link;
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();
122 $this->lom_services = $DIC->learningObjectMetadata();
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";
150 $this->show_page_act_info =
false;
158 $domain = $DIC->copage()
161 $this->content_id_manager = $domain
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();
172 \
ILIAS\COPage\ID\ContentIdManager $content_id_manager
205 $this->page_config = $a_val;
210 $this->concrete_lang = $a_val;
225 $this->rendermd5 = $a_rendermd5;
235 $this->renderedcontent = $a_renderedcontent;
245 $this->renderedtime = $a_renderedtime;
255 $this->lastchange = $a_lastchange;
265 $this->last_change_user = $a_val;
275 $this->show_page_act_info = $a_val;
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)) {
304 $this->
setActive($this->page_record[
"active"]);
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);
317 if (!$this->page_record) {
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);
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"] ??
""));
336 string $a_parent_type,
339 bool $a_no_cache =
false 343 $db = $DIC->database();
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];
351 $and_lang =
" AND lang = " . $db->
quote($a_lang,
"text");
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);
358 self::$exists[$a_parent_type .
":" . $a_id .
":" . $a_lang] =
true;
361 self::$exists[$a_parent_type .
":" . $a_id .
":" . $a_lang] =
false;
370 string $a_parent_type,
382 if ($this->dom_builded && !$a_force) {
389 $this->dom = $this->dom_util->docFromString($this->
getXMLContent(
true), $error);
390 $path =
"//PageObject";
391 if (is_null($this->dom)) {
395 $nodes = $this->dom_util->path($this->dom,
$path);
396 if (count($nodes) == 1) {
397 $this->node = $nodes->item(0);
404 $this->dom_builded =
true;
424 public function setId(
int $a_id): void
436 $this->parent_id = $a_id;
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++;
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);
471 $this->active = $a_active;
475 bool $a_check_scheduled_activation =
false 477 if ($a_check_scheduled_activation && !$this->active) {
495 $db = $DIC->database();
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")
501 self::$activation_data[$rec[
"page_id"] .
":" . $rec[
"parent_type"] .
":" . $rec[
"lang"]] = $rec;
510 string $a_parent_type,
511 bool $a_check_scheduled_activation =
false,
516 $db = $DIC->database();
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];
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)
539 if (!$rec[
"active"] && $a_check_scheduled_activation) {
540 if ($rec[
"n"] >= $rec[
"activation_start"] &&
541 $rec[
"n"] <= $rec[
"activation_end"]) {
546 return (
bool) $rec[
"active"];
554 string $a_parent_type,
559 $db = $DIC->database();
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];
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)
580 if (!$rec[
"active"] && $rec[
"activation_start"] !=
"") {
592 string $a_parent_type,
597 $db = $DIC->database();
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)
616 string $a_parent_type,
621 $db = $DIC->database();
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];
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)
641 "activation_start" =>
null,
642 "activation_end" =>
null,
643 "show_activation_info" => 0
655 $db = $DIC->database();
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"));
660 return (
int) ($rec[
"parent_id"] ?? 0);
663 public static function _writeParentId(
string $a_parent_type,
int $a_pg_id,
int $a_par_id): void
667 $db = $DIC->database();
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)
681 if ($a_activationstart ==
"") {
682 $a_activationstart =
null;
684 $this->activationstart = $a_activationstart;
698 if ($a_activationend ==
"") {
699 $a_activationend =
null;
701 $this->activationend = $a_activationend;
716 $node = $this->page_manager->content($this->
getDomDoc())->getContentDomNode(
720 $this->log->debug(
"getContentObject: " .
" $a_hier_id, $a_pc_id, " . $node->nodeName);
721 return $this->pc_service->getByNode($node, $this);
739 $node = $content_object->getDomNode();
740 $node = $node->parentNode;
742 if ($node->nodeName ==
"PageContent") {
743 $pcid = $node->getAttribute(
"PCID");
748 $node = $node->parentNode;
755 $cm = $this->page_manager->content($this->
getDomDoc());
756 return $cm->getContentDomNode($a_hier_id, $a_pc_id);
770 public function setXMLContent(
string $a_xml,
string $a_encoding =
"UTF-8"): void
772 $this->encoding = $a_encoding;
782 $this->xml .= $a_xml;
794 $enc_str = (!empty($this->encoding))
795 ?
"encoding=\"" . $this->encoding .
"\"" 797 return "<?xml version=\"1.0\" $enc_str ?>" .
798 "<!DOCTYPE PageObject SYSTEM \"" . $this->
getIliasAbsolutePath() .
"/components/ILIAS/Export/xml/" . $this->cur_dtd .
"\">" .
807 return ILIAS_ABSOLUTE_PATH;
816 bool $a_clone_mobs =
false,
817 int $a_new_parent_id = 0,
818 int $obj_copy_id = 0,
819 bool $self_ass =
true 821 $cm = $this->page_manager->contentFromXml($this->
getXMLContent());
822 return $cm->copyXmlContent(
842 $pm = $this->page_manager->content($this->
getDomDoc());
843 $pm->handleDeleteContent($this, $a_node, $move_operation);
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,
857 bool $offline =
false 861 return $this->dom_util->dump($this->node);
864 if ($a_append_mobs || $a_append_bib) {
867 if ($a_append_mobs) {
876 return "<dummy>" . $this->dom_util->dump($this->node) . $mobs . $bibs . $trans . $a_append_str .
"</dummy>";
878 if (is_object($this->dom)) {
879 if ($a_omit_pageobject_tag) {
881 foreach ($this->node->childNodes as $child) {
882 $xml .= $this->dom_util->dump($child);
885 $xml = $this->dom_util->dump($this->node);
886 $xml = preg_replace(
'/<\?xml[^>]*>/i',
"", $xml);
887 $xml = preg_replace(
'/<!DOCTYPE[^>]*>/i',
"", $xml);
919 "ed_align_left_float",
920 "ed_align_right_float",
922 "ed_new_item_before",
929 "ed_split_page_next",
937 "ed_click_to_add_pg",
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"];
947 $cl = $def[
"pc_class"];
948 $lvs = call_user_func($def[
"pc_class"] .
'::getLangVars');
949 foreach ($lvs as $lv) {
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 .
"\"/>";
964 $type =
"media_cont";
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 .
"\"/>";
971 foreach ([
"text_block",
"heading1",
"heading2",
"heading3"] as $type) {
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 .
"\"/>";
979 foreach ($lang_vars as $lang_var) {
988 $val = $this->
lng->txt(
"cont_" . $var);
989 $val = str_replace(
'"',
""", $val);
990 return "<LV name=\"$var\" value=\"" . $val .
"\"/>";
995 return $this->pc_service->paragraph()->getFirstParagraphText($this);
1000 return $this->pc_service->paragraph()->getParagraphForPCID($this, $pcid);
1013 $this->contains_int_link = $a_contains_link;
1028 $this->import_mode = $a_val;
1038 if ($a_parse ===
true) {
1039 $this->needs_parsing =
true;
1041 if ($a_parse ===
false) {
1042 $this->needs_parsing =
false;
1050 $this->contains_question = $a_val;
1065 $mob_manager = $this->pc_service->mediaObject();
1066 return $mob_manager->collectMediaObjects($this->
getDomDoc(), $a_inline_only);
1082 bool $offline =
false 1084 $mob_manager = $this->pc_service->mediaObject();
1085 return $mob_manager->getMultimediaXML($this->
getDomDoc(), $offline);
1093 $mob_manager = $this->pc_service->mediaObject();
1094 return $mob_manager->getMediaAliasElement(
1112 $this->dom_util->validate($this->dom, $error, $throw);
1121 $this->content_id_manager->addHierIDsToDom();
1126 return $this->content_id_manager->getHierIds();
1131 $this->content_id_manager->stripHierIDsFromDom();
1136 $this->content_id_manager->stripPCIDs();
1144 return $this->content_id_manager->getHierIdsForPCIds($a_pc_ids);
1149 return $this->content_id_manager->getHierIdForPcId($pcid);
1157 return $this->content_id_manager->getPCIdsForHierIds($hier_ids);
1162 return $this->content_id_manager->getPCIdForHierId($hier_id);
1170 $this->pc_service->fileList()->addFileSizes($this->
getDomDoc());
1179 return $this->
link->resolveIntLinks($this->
getDomDoc(), $a_link_map);
1188 bool $a_reuse_existing_by_import =
false 1190 return $this->pc_service->mediaObject()->resolveMediaAliases(
1193 $a_reuse_existing_by_import
1203 return $this->pc_service->interactiveImage()->resolveIIMMediaAliases(
1215 return $this->pc_service->fileList()->resolveFileItems(
1227 $qm = $this->pc_service->question();
1228 return $qm->resolveQuestionReferences(
1243 return $this->
link->moveIntLinks(
1255 int $a_source_ref_id
1260 $this->log->debug(
"Handle repository links...");
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);
1269 $this->
link->handleRepositoryLinksOnCopy($this->
getDomDoc(), $a_mapping, $a_source_ref_id, $tree);
1296 $this->db->insert(
"page_object", array(
1297 "page_id" => array(
"integer", $this->
getId()),
1298 "parent_id" => array(
"integer", $this->
getParentId()),
1300 "content" => array(
"clob", $content),
1302 "create_user" => array(
"integer", $this->
user->getId()),
1303 "last_change_user" => array(
"integer", $this->
user->getId()),
1304 "active" => array(
"integer", (
int) $this->
getActive()),
1308 "inactive_elements" => array(
"integer", $iel),
1309 "int_links" => array(
"integer", $inl),
1311 "last_change" => array(
"timestamp",
ilUtil::now()),
1312 "is_empty" => array(
"integer", $empty)
1327 $this->log->debug(
"ilPageObject, updateFromXML(): start, id: " . $this->
getId());
1331 $this->log->debug(
"ilPageObject, updateFromXML(): content: " . substr($content, 0, 100));
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()),
1349 "inactive_elements" => array(
"integer", $iel),
1350 "int_links" => array(
"integer", $inl),
1352 "page_id" => array(
"integer", $this->
getId()),
1360 $this->log->debug(
"ilPageObject, updateFromXML(): end");
1372 bool $a_creation =
false,
1373 bool $a_empty =
false 1376 if (!$a_creation || !$a_empty) {
1386 $this->reading_time_manager->saveTime($this);
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);
1416 public function update(
bool $a_validate =
true,
bool $a_no_history =
false)
1418 $this->log->debug(
"start..., id: " . $this->
getId());
1428 $this->log->debug($this->dom_util->dump($this->getDomDoc()->documentElement));
1434 $errors[0] = array(0 => 0,
1435 1 => $this->
lng->txt(
"cont_not_saved_edit_lock_expired") .
"<br />" .
1436 $this->
lng->txt(
"obj_usr") .
": " .
1438 $this->
lng->txt(
"content_until") .
": " .
1444 $this->log->debug(
"checking duplicate ids");
1446 $errors[0] = $this->
lng->txt(
"cont_could_not_save_duplicate_pc_ids") .
1450 if (!empty($errors)) {
1451 $this->log->debug(
"ilPageObject, update(): errors: " . print_r($errors,
true));
1455 if (empty($errors)) {
1459 $this->log->debug(
"perform automatic modifications");
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)) {
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"],
1497 $last_c = $old_rec[
"last_change"];
1498 if ($last_c ==
"") {
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"]),
1511 "nr" => array(
"integer", (
int) $last_nr[
"mnr"] + 1)
1514 $old_content = $old_rec[
"content"];
1516 $old_nr = $last_nr[
"mnr"] + 1;
1517 $old_domdoc->loadXML(
'<?xml version="1.0" encoding="UTF-8"?>' . $old_content);
1520 $this->log->debug(
"calling __afterHistoryEntry");
1525 $this->history_saved =
true;
1529 $em = (trim($content) ==
"<PageObject/>")
1534 $this->log->debug(
"checking deactivated elements");
1536 $this->log->debug(
"checking internal links");
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()),
1551 "inactive_elements" => array(
"integer", $iel),
1552 "int_links" => array(
"integer", $inl),
1554 "page_id" => array(
"integer", $this->
getId()),
1560 $this->log->debug(
"calling __afterUpdate()");
1564 "...ending, updated and returning true, content: " . substr(
1578 public function delete():
void 1581 $copg_logger->debug(
1582 "ilPageObject: Delete called for ID '" . $this->
getId() .
"'," .
1584 " hist nr: '" . $this->old_nr .
"', " .
1589 if (!$this->page_not_found) {
1600 foreach ($mobs2 as $m) {
1601 if (!in_array($m, $mobs)) {
1606 $copg_logger->debug(
"ilPageObject: ... found " . count($mobs) .
" media objects.");
1634 ?
" AND lang = " . $this->db->quote($this->
getLanguage(),
"text")
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);
1641 foreach ($mobs as $mob_id) {
1642 $copg_logger->debug(
"ilPageObject: ... processing mob " . $mob_id .
".");
1645 $copg_logger->debug(
"ilPageObject: ... type mismatch. Ignoring mob " . $mob_id .
".");
1650 $copg_logger->debug(
"ilPageObject: ... delete mob " . $mob_id .
".");
1655 $copg_logger->debug(
"ilPageObject: ... missing mob " . $mob_id .
".");
1664 return !in_array($this->
getLanguage(), [
"",
"-"]);
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);
1691 string $a_old_content,
1698 $defs = $this->pc_definition->getPCDefinitions();
1699 foreach ($defs as $def) {
1700 $cl = $def[
"pc_class"];
1702 $def[
"pc_class"] .
'::afterPageHistoryEntry',
1718 $this->style_manager->saveStyleUsage(
1730 $this->style_manager->deleteStyleUsages($this, $a_old_nr);
1744 $files = ilObjFile::_getFilesOfObject(
1748 $objs = array_merge($mobs, $files);
1757 $this->
link->deleteInternalLinks($this);
1767 $this->
link->saveInternalLinks(
1776 public function create(
bool $a_import =
false): void
1789 bool $a_update =
true,
1790 string $a_pcid =
"",
1791 bool $move_operation =
false 1793 $pm = $this->page_manager->content($this->
getDomDoc());
1794 $pm->deleteContent($this, $a_hid, $a_pcid, $move_operation);
1810 bool $a_update =
true,
1811 bool $a_self_ass =
false,
1812 bool $move_operation =
false 1814 $pm = $this->page_manager->content($this->
getDomDoc());
1815 $pm->deleteContents($this, $a_hids, $a_self_ass, $move_operation);
1843 $cm = $this->page_manager->content($this->
getDomDoc());
1844 $cm->copyContents($a_hids, $this->
user);
1854 bool $a_self_ass =
false 1857 $cm = $this->page_manager->content($this->
getDomDoc());
1876 bool $a_update =
true,
1877 bool $a_self_ass =
false 1879 $cm = $this->page_manager->content($this->
getDomDoc());
1880 $cm->switchEnableMultiple($this, $a_hids, $a_self_ass);
1894 string $a_pcid =
"",
1895 bool $remove_placeholder =
true 1897 $cm = $this->page_manager->content($this->
getDomDoc());
1903 $remove_placeholder,
1917 $cm = $this->page_manager->content($this->
getDomDoc());
1918 $cm->insertContentNode(
1942 string $a_spcid =
"",
1943 string $a_tpcid =
"" 1945 $cm = $this->page_manager->content($this->
getDomDoc());
1946 $cm->moveContentAfter(
1964 bool $a_res_ref_to_obj_id =
true 1966 $cm = $this->page_manager->content($this->
getDomDoc());
1967 $cm->insertInstIntoIDs($a_inst, $a_res_ref_to_obj_id);
1975 return $this->content_id_manager->checkPCIds();
1983 return $this->content_id_manager->getAllPCIds();
1988 return $this->content_id_manager->hasDuplicatePCIds();
1997 return $this->content_id_manager->getDuplicatePCIds();
2002 return $this->content_id_manager->generatePCId();
2010 $this->content_id_manager->insertPCIds();
2017 $this->pc_service->paragraph()->send(
2039 string $a_parent_type,
2040 string $a_lang =
"-" 2044 $db = $DIC->database();
2046 if ($a_lang ==
"") {
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);
2069 if (strpos($a_content,
" Enabled=\"False\"")) {
2082 $h_query =
"SELECT * FROM page_history " .
2083 " WHERE page_id = " . $db->
quote($this->
getId(),
"integer") .
2086 " ORDER BY hdate DESC";
2088 $hset = $db->
query($h_query);
2089 $hentries = array();
2092 $hrec[
"sortkey"] = (
int) $hrec[
"nr"];
2093 $hrec[
"user"] = (
int) $hrec[
"user_id"];
2094 $hentries[] = $hrec;
2108 "SELECT * FROM page_history " .
2109 " WHERE page_id = %s " .
2110 " AND parent_type = %s " .
2113 array(
"integer",
"text",
"integer",
"text"),
2133 $and_nr = ($a_nr > 0)
2134 ?
" AND nr < " . $db->
quote($a_nr,
"integer")
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") .
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"));
2149 $ret[
"previous"] = $row;
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"));
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"));
2166 $ret[
"next"] = $row;
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"));
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"));
2183 $ret[
"current"] = $row;
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"));
2213 string $a_parent_type,
2220 $db = $DIC->database();
2223 if ($a_lang !=
"") {
2224 $and_lang =
" AND lang = " . $db->
quote($a_lang,
"text");
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;
2236 $page_changes[] = array(
2237 "date" => $page[
"last_change"],
2238 "id" => $page[
"page_id"],
2239 "lang" => $page[
"lang"],
2241 "user" => $page[
"last_change_user"]
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") .
" ";
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;
2257 $page_changes[] = array(
2258 "date" => $page[
"hdate"],
2259 "id" => $page[
"page_id"],
2260 "lang" => $page[
"lang"],
2262 "nr" => $page[
"nr"],
2263 "user" => $page[
"user_id"]
2269 return $page_changes;
2276 string $a_parent_type,
2278 string $a_lang =
"-" 2282 $db = $DIC->database();
2285 if ($a_lang !=
"") {
2286 $and_lang =
" AND lang = " . $db->
quote($a_lang,
"text");
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;
2295 $key_add = ($a_lang ==
"")
2296 ?
":" . $page[
"lang"]
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"]
2313 string $a_parent_type,
2315 string $a_lang =
"-" 2319 $db = $DIC->database();
2322 if ($a_lang !=
"") {
2323 $and_lang =
" AND lang = " . $db->
quote($a_lang,
"text");
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";
2334 if ($page[
"created"] !=
"") {
2336 "created" => $page[
"created"],
2337 "id" => $page[
"page_id"],
2338 "lang" => $page[
"lang"],
2339 "user" => $page[
"create_user"],
2353 string $a_parent_type,
2355 string $a_lang =
"-" 2359 $db = $DIC->database();
2362 if ($a_lang !=
"") {
2363 $and_lang =
" AND lang = " . $db->
quote($a_lang,
"text");
2366 $contributors = array();
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)
2376 if ($a_lang ==
"") {
2377 $contributors[$page[
"last_change_user"]][$page[
"page_id"]][$page[
"lang"]] = 1;
2379 $contributors[$page[
"last_change_user"]][$page[
"page_id"]] = 1;
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)
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"];
2395 $contributors[$hpage[
"user_id"]][$hpage[
"page_id"]] =
2396 ($contributors[$hpage[
"user_id"]][$hpage[
"page_id"]] ?? 0) + $hpage[
"cnt"];
2401 foreach ($contributors as $k => $co) {
2404 $c[] = array(
"user_id" => $k,
2406 "lastname" => $name[
"lastname"],
2407 "firstname" => $name[
"firstname"]
2419 string $a_parent_type,
2421 string $a_lang =
"-" 2425 $db = $DIC->database();
2428 if ($a_lang !=
"") {
2429 $and_lang =
" AND lang = " . $db->
quote($a_lang,
"text");
2432 $contributors = array();
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)
2442 if ($a_lang ==
"") {
2443 $contributors[$page[
"last_change_user"]][$page[
"lang"]] = 1;
2445 $contributors[$page[
"last_change_user"]] = 1;
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)
2457 if ($a_lang ===
"") {
2458 $contributors[$hpage[
"user_id"]][$page[
"lang"]] =
2459 ($contributors[$hpage[
"user_id"]][$page[
"lang"]] ?? 0) + $hpage[
"cnt"];
2461 $contributors[$hpage[
"user_id"]] =
2462 ($contributors[$hpage[
"user_id"]] ?? 0) + $hpage[
"cnt"];
2467 foreach ($contributors as $k => $co) {
2469 $c[] = array(
"user_id" => $k,
2471 "lastname" => $name[
"lastname"],
2472 "firstname" => $name[
"firstname"]
2488 $db = $DIC->database();
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())
2495 "page_id" => array(
"integer", $this->
getId()),
2505 string $a_parent_type,
2507 string $a_lang =
"-" 2511 $db = $DIC->database();
2514 if ($a_lang !=
"") {
2515 $and_lang =
" AND lang = " . $db->
quote($a_lang,
"text");
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;
2525 $key_add = ($a_lang ==
"")
2526 ?
":" . $page[
"lang"]
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"]
2544 if (strpos($a_content,
"IntLink")) {
2560 return $this->page_manager->content($this->
getDomDoc());
2572 $cm->setInitialOpenedContent($a_type, $a_id, $a_target);
2582 return $cm->getInitialOpenedContent();
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 2611 if ($a_parent_type ==
"") {
2613 if ($a_new_parent_id == 0) {
2622 if (!$overwrite_existing) {
2629 $new_page_object->setParentId($a_new_parent_id);
2630 $new_page_object->setId($a_id);
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());
2638 $new_page_object->buildDom();
2639 $new_page_object->update();
2641 $new_page_object->create(
false);
2655 string $a_parent_type,
2660 $db = $DIC->database();
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")
2669 $langs[] = $rec[
"lang"];
2678 string $a_target_lang
2687 $transl_page->create(
false);
2692 $transl_page->setId($this->
getId());
2695 $transl_page->setActive($this->
getActive());
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") .
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")
2733 if ($rec[
"edit_lock_user"] != $user->
getId()) {
2750 $min = (
int) $aset->get(
"block_mode_minutes");
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")
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")
2769 if ($rec[
"edit_lock_user"] != $user->
getId()) {
2785 $min = (
int) $aset->get(
"block_mode_minutes");
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")
2793 $rec[
"edit_lock_until"] = $rec[
"edit_lock_ts"] + $min * 60;
2804 int $a_length = 100,
2805 string $a_ending =
'...',
2806 bool $a_exact =
false,
2807 bool $a_consider_html =
true 2810 if ($a_consider_html) {
2812 if (strlen(preg_replace(
'/<.*?>/',
'', $a_text)) <= $a_length) {
2817 $total_length = strlen($a_ending);
2818 $open_tags = array();
2820 preg_match_all(
'/(<.+?>)?([^<>]*)/s', $a_text, $lines, PREG_SET_ORDER);
2821 foreach ($lines as $line_matchings) {
2823 if (!empty($line_matchings[1])) {
2826 '/^<(\s*.+?\/\s*|\s*(img|br|input|hr|area|base|basefont|col|frame|isindex|link|meta|param)(\s.+?)?)>$/is',
2831 elseif (preg_match(
'/^<\s*\/([^\s]+?)\s*>$/s', $line_matchings[1], $tag_matchings)) {
2833 $pos = array_search($tag_matchings[1], $open_tags);
2834 if ($pos !==
false) {
2835 unset($open_tags[$pos]);
2838 elseif (preg_match(
'/^<\s*([^\s>!]+).*?>$/s', $line_matchings[1], $tag_matchings)) {
2840 array_unshift($open_tags, strtolower($tag_matchings[1]));
2843 $truncate .= $line_matchings[1];
2847 $content_length = strlen(preg_replace(
2848 '/&[0-9a-z]{2,8};|&#[0-9]{1,7};|[0-9a-f]{1,6};/i',
2852 if ($total_length + $content_length > $a_length) {
2854 $left = $a_length - $total_length;
2855 $entities_length = 0;
2858 '/&[0-9a-z]{2,8};|&#[0-9]{1,7};|[0-9a-f]{1,6};/i',
2864 foreach ($entities[0] as $entity) {
2865 if ($entity[1] + 1 - $entities_length <= $left) {
2867 $entities_length += strlen($entity[0]);
2881 $truncate .= $line_matchings[2];
2882 $total_length += $content_length;
2886 if ($total_length >= $a_length) {
2891 if (strlen($a_text) <= $a_length) {
2900 if (!count($open_tags)) {
2904 $spacepos = strrpos($truncate,
' ');
2905 if ($spacepos !==
false) {
2914 $truncate .= $a_ending;
2916 if ($a_consider_html) {
2918 foreach ($open_tags as $tag) {
2919 $truncate .=
'</' . $tag .
'>';
2939 string $a_parent_type,
2945 $db = $DIC->database();
2948 if ($a_lang !=
"") {
2949 $and_lang =
" AND lang = " . $db->
quote($a_lang,
"text");
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";
2961 return $rec[
"last_change"];
2966 if ($this->
getPageConfig()->getEditLockSupport() ==
false) {
2971 $min = (
int) $aset->get(
"block_mode_minutes");
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(
3023 ) as $pc_id => $co_model) {
3024 $model[$pc_id] = $co_model;
3045 if (is_array($targets)) {
3046 foreach ($targets as $t) {
3047 $tarr = explode(
":", $t);
3049 if (is_object($cont_obj) && $cont_obj->getType() ==
"par") {
3050 $cont_obj->setCharacteristic($char_par);
3052 if (is_object($cont_obj) && $cont_obj->getType() ==
"sec") {
3053 $cont_obj->setCharacteristic($char_sec);
3055 if (is_object($cont_obj) && $cont_obj->getType() ==
"media") {
3056 $cont_obj->setClass($char_med);
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)
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)
setTranslationProperties(self $transl_page)
getEffectiveEditLockTime()
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)
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...
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)
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.
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.
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.
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
static lookupParentId(int $a_id, string $a_type)
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)
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...
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)
getEditLockInfo()
Get edit lock info.
moveIntLinks(array $a_from_to)
Move internal links from one destination to another.
sendParagraph(string $par_id, string $filename)
registerOfflineHandler(object $handler)
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,)
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.
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)