43 "quot" =>
"Quotation",
58 while (is_int(strpos($a_str,
"="))) {
59 $eq_pos = strpos($a_str,
"=");
60 $qu1_pos = strpos($a_str,
"\"");
61 $qu2_pos = strpos(substr($a_str, $qu1_pos + 1),
"\"") + $qu1_pos + 1;
62 if (is_int($eq_pos) && is_int($qu1_pos) && is_int($qu2_pos)) {
63 $var = trim(substr($a_str, 0, $eq_pos));
64 $val = trim(substr($a_str, $qu1_pos + 1, ($qu2_pos - $qu1_pos) - 1));
65 $attribs[$var] = $val;
66 $a_str = substr($a_str, $qu2_pos + 1);
74 public function init(): void
78 $this->
user = $DIC->user();
79 $this->
lng = $DIC->language();
88 return self::$bb_tags;
96 return array_flip(self::$bb_tags);
106 if ($succ_node = $node->nextSibling) {
107 $node = $succ_node->parentNode->insertBefore($node, $succ_node);
109 $parent_node = $node->parentNode;
110 $node = $parent_node->appendChild($node);
112 $par_node = $this->dom_doc->createElement(
"Paragraph");
113 $par_node = $node->appendChild($par_node);
114 $par_node->setAttribute(
"Language",
"");
125 string $a_pc_id =
"",
126 bool $from_placeholder =
false 141 $par_node = $this->dom_doc->createElement(
"Paragraph");
142 $par_node = $this->
getDomNode()->appendChild($par_node);
143 $par_node->setAttribute(
"Language",
"");
154 bool $a_auto_split =
false 160 $text = [[
"level" => 0,
"text" => $text]];
164 $orig_characteristic =
"";
167 $t = $text[0][
"text"] ??
"";
168 $temp_dom = $this->dom_util->docFromString(
169 '<?xml version="1.0" encoding="UTF-8"?><Paragraph>' . $t .
'</Paragraph>',
174 $this->dom_util->deleteAllChilds($this->
getChildNode());
177 $path =
"//Paragraph";
178 $nodes = $this->dom_util->path(
182 if (count($nodes) == 1) {
183 $new_par_node = $nodes->item(0);
184 $new_childs = $new_par_node->childNodes;
186 foreach ($new_childs as $new_child) {
187 $cloned_child = $new_child->cloneNode(
true);
188 $cloned_child = $this->dom_doc->importNode($cloned_child,
true);
195 if ((count($text) > 1) && (substr($orig_characteristic, 0, 8) ==
"Headline")) {
196 $orig_characteristic =
"";
198 if (isset($text[0][
"level"]) && $text[0][
"level"] > 0) {
199 $this->
getChildNode()->setAttribute(
"Characteristic",
'Headline' . $text[0][
"level"]);
207 for ($i = 1, $iMax = count($text); $i < $iMax; $i++) {
210 $next_par->createAfter($c_node);
212 if ($text[$i][
"level"] > 0) {
213 $next_par->setCharacteristic(
"Headline" . $text[$i][
"level"]);
215 $next_par->setCharacteristic($orig_characteristic);
217 $ok = $next_par->setText($text[$i][
"text"],
false);
218 $c_node = $next_par->getDomNode();
225 $check = array_reduce($text,
function ($t, $i) {
226 return $t . $i[
"text"];
228 $text = str_replace(
"<br>",
"\n",
$check);
229 $text = str_replace(
"<br/>",
"\n", $text);
230 $text = str_replace(
"<br />",
"\n", $text);
231 $text = str_replace(
"</SimpleListItem>",
"</SimpleListItem>\n", $text);
232 $text = str_replace(
"<SimpleBulletList>",
"\n<SimpleBulletList>", $text);
233 $text = str_replace(
"<SimpleNumberedList>",
"\n<SimpleNumberedList>", $text);
234 $text = str_replace(
"<Paragraph>\n",
"<Paragraph>", $text);
235 $text = str_replace(
"</Paragraph>",
"</Paragraph>\n", $text);
236 $doc = $this->dom_util->docFromString(
237 '<?xml version="1.0" encoding="UTF-8"?><Paragraph>' . $text .
'</Paragraph>',
240 $estr = (string) $error;
242 $estr .=
"<br />" . $text;
255 foreach ($text as $t) {
256 $check .=
"<Paragraph>" . $t[
"text"] .
"</Paragraph>";
259 $this->dom_util->docFromString(
260 '<?xml version="1.0" encoding="UTF-8"?><Paragraph>' .
$check .
'</Paragraph>',
269 public function getText(
bool $a_short_mode =
false): string
274 $content .= $this->dom_util->dump($c);
284 $this->dom_util->setAttribute($this->
getChildNode(),
"Characteristic", $a_char);
289 return (
string) $this->
getChildNode()?->getAttribute(
"Characteristic");
294 $this->dom_util->setAttribute($this->
getChildNode(),
"SubCharacteristic", $a_char);
299 return (
string) $this->
getChildNode()->getAttribute(
"AutoIndent");
304 $this->dom_util->setAttribute($this->
getChildNode(),
"AutoIndent", $ind);
309 return (
string) $this->
getChildNode()?->getAttribute(
"SubCharacteristic");
314 $this->dom_util->setAttribute($this->
getChildNode(),
"DownloadTitle", $title);
319 return (
string) $this->
getChildNode()?->getAttribute(
"DownloadTitle");
324 $a_char = empty($a_char)
328 $this->
getChildNode()->setAttribute(
"ShowLineNumbers", $a_char);
333 return (
string) $this->
getChildNode()?->getAttribute(
"ShowLineNumbers");
338 $this->
getChildNode()->setAttribute(
"Language", $a_lang);
348 bool $a_wysiwyg =
false,
349 bool $a_handle_lists =
true 359 $a_text = preg_replace(
'/\[' . $a_bb .
'\]/i',
"<" . $a_tag .
">", $a_text);
360 $a_text = preg_replace(
'/\[\/' . $a_bb .
'\]/i',
"</" . $a_tag .
">", $a_text);
372 bool $a_wysiwyg =
false,
373 bool $a_handle_lists =
true 376 if (!defined(
'COPAGE_TEST')) {
380 $log->
debug(
"...text: " . substr($a_text, 0, 1000));
382 $log->
debug(
"...wysiwyg: " . $a_wysiwyg);
383 $log->
debug(
"...handle_lists: " . $a_handle_lists);
391 $a_text = str_replace(
"<br />", chr(10), $a_text);
396 $a_text = trim($a_text);
402 $a_text = str_replace(
"&",
"&", $a_text);
404 $a_text = str_replace(
"<",
"<", $a_text);
405 $a_text = str_replace(
">",
">", $a_text);
415 $a_text = str_replace(chr(13) . chr(10),
"<br />", $a_text);
416 $a_text = str_replace(chr(13),
"<br />", $a_text);
417 $a_text = str_replace(chr(10),
"<br />", $a_text);
419 if ($a_handle_lists) {
423 foreach (self::getBBMap() as $bb => $tag) {
425 $a_text = str_replace(
"[" . $bb .
"][/" . $bb .
"]",
"", $a_text);
428 $a_text = self::replaceBBCode($a_text, $bb, $tag);
431 $a_text = self::intLinks2xml($a_text);
434 $ws =
"[ \t\r\f\v\n]*";
436 while (preg_match(
"~\[(xln$ws(url$ws=$ws\"([^\"])*\")$ws(target$ws=$ws(\"(Glossary|FAQ|Media)\"))?$ws)\]\[\/xln\]~i", $a_text, $found)) {
437 $a_text = str_replace($found[0],
"", $a_text);
439 while (preg_match(
'~\[(xln$ws(url$ws=$ws(([^]])*)))$ws\]\[\/xln\]~i', $a_text, $found)) {
440 $a_text = str_replace($found[0],
"", $a_text);
443 while (preg_match(
"~\[(xln$ws(url$ws=$ws\"([^\"])*\")$ws(target$ws=$ws(\"(Glossary|FAQ|Media)\"))?$ws)\]~i", $a_text, $found)) {
445 $attribs = self::attribsToArray($found[2]);
446 if (isset($attribs[
"url"])) {
447 $a_text = self::replaceBBTagByMatching(
448 "[" . $found[1] .
"]",
453 "Href" => $attribs[
"url"]
457 if ($old_text === $a_text) {
458 $a_text = str_replace(
"[" . $found[1] .
"]",
"[error: " . $found[1] .
"]", $a_text);
474 $ws =
"[ \t\r\f\v\n]*";
475 while (preg_match(
"~\[(anc$ws(name$ws=$ws\"([^\"])*\")$ws)\]~i", $a_text, $found)) {
476 $attribs = self::attribsToArray($found[2]);
477 $a_text = self::replaceBBTagByMatching(
478 "[" . $found[1] .
"]",
483 "Name" => $attribs[
"name"]
489 while (preg_match(
"~\[(marked$ws(class$ws=$ws\"([^\"])*\")$ws)\]~i", $a_text, $found)) {
490 $attribs = self::attribsToArray($found[2]);
491 if (isset($attribs[
"class"])) {
492 $a_text = self::replaceBBTagByMatching(
493 "[" . $found[1] .
"]",
498 "Class" => $attribs[
"class"]
502 $a_text = str_replace(
"[" . $found[1] .
"]",
"[error:marked" . $found[1] .
"]", $a_text);
506 if (!is_null(
$log)) {
507 $log->
debug(
"...finish: " . substr($a_text, 0, 1000));
515 $use_internal_errors = libxml_use_internal_errors(
true);
516 $sxe = simplexml_load_string(
"<?xml version='1.0'?><dummy>" . $content .
"</dummy>");
517 libxml_use_internal_errors($use_internal_errors);
518 return ($sxe !==
false);
529 string $xml_tag_name,
534 foreach ($attribs as $key => $value) {
536 $attrib_str .=
' ' . $key .
'="' . $value .
'"';
542 $pos1 = strpos($text, $start_tag);
545 if ($end_tag !=
"") {
546 $pos2 = strpos($text, $end_tag, $pos1 + strlen($start_tag));
547 if (is_int($pos1) && is_int($pos2)) {
548 $between = substr($text, $pos1 + strlen($start_tag), $pos2 - ($pos1 + strlen($start_tag)));
549 $ok = self::isValidTagContent($between);
556 $short = ($end_tag ==
"")
560 $slash_chars =
'/[]?()$*';
563 $replace_str = addcslashes($start_tag, $slash_chars);
564 $replace_str = str_replace(
"+",
"\\+", $replace_str);
566 $text = preg_replace(
567 '/' . $replace_str .
'/i',
568 "<" . $xml_tag_name . $attrib_str . $short .
">",
574 if ($end_tag !=
"") {
575 $text = preg_replace(
'~' . addcslashes($end_tag, $slash_chars) .
'~i',
"</" . $xml_tag_name .
">", $text, 1);
580 $text = preg_replace(
581 '/' . addcslashes($start_tag, $slash_chars) .
'/i',
589 $text = preg_replace(
590 '~' . addcslashes($end_tag, $slash_chars) .
'~i',
608 $objDefinition = $DIC[
"objDefinition"];
610 $rtypes = $objDefinition->getAllRepositoryTypes();
614 $ws =
"[ \t\r\f\v\n]*";
615 $ltypes =
"page|chap|term|media|obj|dfile|sess|wpage|ppage|" . implode(
"|", $rtypes);
617 while (preg_match(
'~\[(iln' . $ws .
'((inst' . $ws .
'=' . $ws .
'([\"0-9])*)?' . $ws .
618 "((" . $ltypes .
")$ws=$ws([\"0-9])*)$ws" .
619 "(target$ws=$ws(\"(New|FAQ|Media)\"))?$ws(anchor$ws=$ws(\"([^\"])*\"))?$ws))\]\[\/iln\]~i", $a_text, $found)) {
620 $a_text = str_replace($found[0],
"", $a_text);
622 while (preg_match(
'~\[(iln' . $ws .
'((inst' . $ws .
'=' . $ws .
'([\"0-9])*)?' . $ws .
623 "((" . $ltypes .
")$ws=$ws([\"0-9])*)$ws" .
624 "(target$ws=$ws(\"(New|FAQ|Media)\"))?$ws(anchor$ws=$ws(\"([^\"])*\"))?$ws))\]~i", $a_text, $found)) {
625 $attribs = self::attribsToArray($found[2]);
626 $inst_str = $attribs[
"inst"] ??
"";
628 if (isset($attribs[
"page"])) {
629 $a_text = self::replaceBBTagByMatching(
630 "[" . $found[1] .
"]",
635 "Target" =>
"il_" . $inst_str .
"_pg_" . $attribs[
'page'],
636 "Type" =>
"PageObject",
637 "TargetFrame" => $found[10] ??
"",
638 "Anchor" => $attribs[
"anchor"] ??
"" 643 elseif (isset($attribs[
"chap"])) {
644 $a_text = self::replaceBBTagByMatching(
645 "[" . $found[1] .
"]",
650 "Target" =>
"il_" . $inst_str .
"_st_" . $attribs[
'chap'],
651 "Type" =>
"StructureObject",
652 "TargetFrame" => $found[10] ??
"" 657 elseif (isset($attribs[
"term"])) {
658 $a_text = self::replaceBBTagByMatching(
659 "[" . $found[1] .
"]",
664 "Target" =>
"il_" . $inst_str .
"_git_" . $attribs[
'term'],
665 "Type" =>
"GlossaryItem",
666 "TargetFrame" => (($found[10] ??
"") ==
"New")
673 elseif (isset($attribs[
"wpage"])) {
674 $a_text = self::replaceBBTagByMatching(
675 "[" . $found[1] .
"]",
680 "Target" =>
"il_" . $inst_str .
"_wpage_" . $attribs[
'wpage'],
681 "Type" =>
"WikiPage",
682 "Anchor" => $attribs[
"anchor"] ??
"" 687 elseif (isset($attribs[
"ppage"])) {
688 $a_text = self::replaceBBTagByMatching(
689 "[" . $found[1] .
"]",
694 "Target" =>
"il_" . $inst_str .
"_ppage_" . $attribs[
'ppage'],
695 "Type" =>
"PortfolioPage" 700 elseif (isset($attribs[
"media"])) {
701 $a_text = self::replaceBBTagByMatching(
702 "[" . $found[1] .
"]",
707 "Target" =>
"il_" . $inst_str .
"_mob_" . $attribs[
'media'],
708 "Type" =>
"MediaObject",
709 "TargetFrame" => $found[10] ??
"" 714 elseif (isset($attribs[
"dfile"])) {
715 $a_text = self::replaceBBTagByMatching(
716 "[" . $found[1] .
"]",
721 "Target" =>
"il_" . $inst_str .
"_dfile_" . $attribs[
'dfile'],
729 foreach ($objDefinition->getAllRepositoryTypes() as $t) {
730 if (isset($attribs[$t])) {
731 $obj_id = $attribs[$t];
734 if (isset($attribs[
"obj"])) {
735 $obj_id = $attribs[
"obj"];
739 if ($inst_str ==
"") {
740 $a_text = self::replaceBBTagByMatching(
741 "[" . $found[1] .
"]",
746 "Target" =>
"il_" . $inst_str .
"_obj_" . $obj_id,
747 "Type" =>
"RepositoryItem" 751 $a_text = self::replaceBBTagByMatching(
752 "[" . $found[1] .
"]",
757 "Target" =>
"il_" . $inst_str .
"_" . $found[6] .
"_" . $obj_id,
758 "Type" =>
"RepositoryItem" 763 $a_text = preg_replace(
'/\[' . $found[1] .
'\]/i',
"[error: iln" . $found[1] .
"]", $a_text);
768 while (preg_match(
"~\[(iln$ws((inst$ws=$ws([\"0-9])*)?" . $ws .
"media$ws=$ws([\"0-9])*)$ws)/\]~i", $a_text, $found)) {
769 $attribs = self::attribsToArray($found[2]);
770 $inst_str = $attribs[
"inst"] ??
"";
771 $a_text = self::replaceBBTagByMatching(
772 "[" . $found[1] .
"/]",
777 "Target" =>
"il_" . $inst_str .
"_mob_" . $attribs[
'media'],
778 "Type" =>
"MediaObject" 784 while (preg_match(
"~\[(iln$ws((inst$ws=$ws([\"0-9])*)?" . $ws .
"user$ws=$ws(\"([^\"])*)\")$ws)/\]~i", $a_text, $found)) {
785 $attribs = self::attribsToArray($found[2]);
786 $inst_str = $attribs[
"inst"] ??
"";
788 $a_text = self::replaceBBTagByMatching(
789 "[" . $found[1] .
"/]",
794 "Target" =>
"il_" . $inst_str .
"_user_" .
$user_id,
812 $rows = explode(
"<br />", $a_text .
"<br />");
820 foreach ($rows as $row) {
822 if (str_replace(
"#",
"*", substr($row, 0, 3)) ==
"***") {
824 } elseif (str_replace(
"#",
"*", substr($row, 0, 2)) ==
"**") {
826 } elseif (str_replace(
"#",
"*", substr($row, 0, 1)) ==
"*") {
831 if ($level < $old_level) {
832 for ($i = $old_level; $i > $level; $i--) {
833 $text .=
"</SimpleListItem></" . $clist[$i] .
">";
836 $text .=
"</SimpleListItem>";
838 } elseif ($old_level > 0 && $level > 0 && ($level == $old_level)) {
839 $text .=
"</SimpleListItem>";
840 } elseif (($level == $old_level) && $text !=
"") {
845 if ($level > $old_level) {
846 for ($i = $old_level + 1; $i <= $level; $i++) {
847 if (substr($row, $i - 1, 1) ==
"*") {
848 $clist[$i] =
"SimpleBulletList";
850 $clist[$i] =
"SimpleNumberedList";
852 $text .=
"<" . $clist[$i] .
"><SimpleListItem>";
854 } elseif ($old_level > 0 && $level > 0) {
855 $text .=
"<SimpleListItem>";
857 $text .= substr($row, $level);
863 if (substr($text, strlen($text) - 6) ==
"<br />") {
864 $text = substr($text, 0, strlen($text) - 6);
882 "</SimpleListItem>",
"<SimpleListItem>",
"<SimpleListItem/>",
"<SimpleNumberedList>",
"</SimpleNumberedList>"));
884 $current_list = array();
886 for ($i = 0, $iMax = count($segments); $i < $iMax; $i++) {
887 if ($segments[$i] ==
"<SimpleBulletList>") {
888 if (count($current_list) == 0) {
891 $current_list[] =
"*";
893 } elseif ($segments[$i] ==
"<SimpleNumberedList>") {
894 if (count($current_list) == 0) {
897 $current_list[] =
"#";
899 } elseif ($segments[$i] ==
"</SimpleBulletList>") {
900 array_pop($current_list);
902 } elseif ($segments[$i] ==
"</SimpleNumberedList>") {
903 array_pop($current_list);
905 } elseif ($segments[$i] ==
"<SimpleListItem>") {
907 } elseif ($segments[$i] ==
"</SimpleListItem>") {
909 } elseif ($segments[$i] ==
"<SimpleListItem/>") {
914 foreach ($current_list as $list) {
925 foreach ($current_list as $list) {
929 $text .= $segments[$i];
938 if ((($segments[count($segments) - 1] ??
"") ===
"</SimpleBulletList>" ||
939 ($segments[count($segments) - 1] ??
"") ===
"</SimpleNumberedList>") &&
940 substr($text, strlen($text) - 6) ===
"<br />") {
941 $text = substr($text, 0, -6);
957 $nothing_found =
false;
958 while (!$nothing_found) {
959 $nothing_found =
true;
961 foreach ($a_needles as $needle) {
962 $pos = stripos($a_haystack, $needle);
963 if (is_int($pos) && ($pos < $found || $found == -1)) {
965 $found_needle = $needle;
966 $nothing_found =
false;
970 $segments[] = substr($a_haystack, 0, $found);
971 $a_haystack = substr($a_haystack, $found);
974 $segments[] = substr($a_haystack, 0, strlen($found_needle));
975 $a_haystack = substr($a_haystack, strlen($found_needle));
978 if ($a_haystack !=
"") {
979 $segments[] = $a_haystack;
992 bool $a_wysiwyg =
false,
993 bool $a_replace_lists =
true,
1003 foreach (self::getBBMap() as $bb => $tag) {
1004 $a_text = preg_replace(
'~<' . $tag .
'[^>]*>~i',
"[" . $bb .
"]", $a_text);
1005 $a_text = preg_replace(
'~</' . $tag .
'>~i',
"[/" . $bb .
"]", $a_text);
1006 $a_text = preg_replace(
'~<' . $tag .
'/>~i',
"[" . $bb .
"][/" . $bb .
"]", $a_text);
1010 if ($a_replace_lists) {
1017 while (preg_match(
'~<IntLink(' . $any .
')>~i', $a_text, $found)) {
1018 $attribs = self::attribsToArray($found[1]);
1019 $target = explode(
"_", $attribs[
"Target"]);
1020 $target_id = $target[count($target) - 1];
1021 $inst_str = (!is_int(strpos($attribs[
"Target"],
"__")))
1022 ? $inst_str =
"inst=\"" . ($target[1] ??
'') .
"\" " 1024 switch ($attribs[
"Type"]) {
1026 $tframestr = (!empty($attribs[
"TargetFrame"]))
1027 ?
" target=\"" . $attribs[
"TargetFrame"] .
"\"" 1029 $ancstr = (!empty($attribs[
"Anchor"]))
1030 ?
' anchor="' . $attribs[
"Anchor"] .
'"' 1032 $a_text = preg_replace(
'~<IntLink' . $found[1] .
'>~i',
"[iln " . $inst_str .
"page=\"" . $target_id .
"\"$tframestr$ancstr]", $a_text);
1035 case "StructureObject":
1036 $tframestr = (!empty($attribs[
"TargetFrame"]))
1037 ?
" target=\"" . $attribs[
"TargetFrame"] .
"\"" 1039 $a_text = preg_replace(
'~<IntLink' . $found[1] .
'>~i',
"[iln " . $inst_str .
"chap=\"" . $target_id .
"\"$tframestr]", $a_text);
1042 case "GlossaryItem":
1043 $tframestr = (empty($attribs[
"TargetFrame"]) || $attribs[
"TargetFrame"] ==
"Glossary")
1045 :
" target=\"" . $attribs[
"TargetFrame"] .
"\"";
1046 $a_text = preg_replace(
'~<IntLink' . $found[1] .
'>~i',
"[iln " . $inst_str .
"term=\"" . $target_id .
"\"" . $tframestr .
"]", $a_text);
1051 $ancstr = (!empty($attribs[
"Anchor"]))
1052 ?
' anchor="' . $attribs[
"Anchor"] .
'"' 1054 $a_text = preg_replace(
'~<IntLink' . $found[1] .
'>~i',
"[iln " . $inst_str .
"wpage=\"" . $target_id .
"\"" . $tframestr . $ancstr .
"]", $a_text);
1057 case "PortfolioPage":
1059 $a_text = preg_replace(
'~<IntLink' . $found[1] .
'>~i',
"[iln " . $inst_str .
"ppage=\"" . $target_id .
"\"" . $tframestr .
"]", $a_text);
1063 if (empty($attribs[
"TargetFrame"])) {
1064 $a_text = preg_replace(
'~<IntLink' . $found[1] .
'>~i',
"[iln " . $inst_str .
"media=\"" . $target_id .
"\"/]", $a_text);
1066 $a_text = preg_replace(
'~<IntLink' . $found[1] .
'>~i',
"[iln media=\"" . $target_id .
"\"" .
1067 " target=\"" . ($attribs[
"TargetFrame"] ??
"") .
"\"]", $a_text);
1072 case "RepositoryItem":
1073 if ($inst_str ==
"") {
1076 $rtype = ($target[count($target) - 2] ??
"");
1077 $target_type = $rtype;
1079 $a_text = preg_replace(
'~<IntLink' . $found[1] .
'>~i',
"[iln " . $inst_str .
"$target_type=\"" . $target_id .
"\"" . $tframestr .
"]", $a_text);
1084 $a_text = preg_replace(
'~<IntLink' . $found[1] .
'>~i',
"[iln " . $inst_str .
"dfile=\"" . $target_id .
"\"" . $tframestr .
"]", $a_text);
1089 $a_text = preg_replace(
'~<IntLink' . $found[1] .
'>~i',
"[iln " . $inst_str .
"user=\"" .
ilObjUser::_lookupLogin((
int) $target_id) .
"\"/]", $a_text);
1093 $a_text = preg_replace(
'~<IntLink' . $found[1] .
'>~i',
"[iln]", $a_text);
1097 $a_text = str_replace(
"</IntLink>",
"[/iln]", $a_text);
1100 while (preg_match(
'~<ExtLink(' . $any .
')>~i', $a_text, $found)) {
1101 $attribs = self::attribsToArray($found[1]);
1104 if (in_array(($attribs[
"TargetFrame"] ??
""), array(
"FAQ",
"Glossary",
"Media"))) {
1105 $tstr =
' target="' . ($attribs[
"TargetFrame"] ??
"") .
'"';
1107 $a_text = str_replace(
"<ExtLink" . $found[1] .
">",
"[xln url=\"" . ($attribs[
"Href"] ??
"") .
"\"$tstr]", $a_text);
1109 $a_text = str_replace(
"</ExtLink>",
"[/xln]", $a_text);
1112 while (preg_match(
'~<Anchor(' . $any .
'/)>~i', $a_text, $found)) {
1113 $attribs = self::attribsToArray($found[1]);
1114 $a_text = str_replace(
"<Anchor" . $found[1] .
">",
"[anc name=\"" . ($attribs[
"Name"] ??
"") .
"\"][/anc]", $a_text);
1116 while (preg_match(
'~<Anchor(' . $any .
')>~i', $a_text, $found)) {
1117 $attribs = self::attribsToArray($found[1]);
1118 $a_text = str_replace(
"<Anchor" . $found[1] .
">",
"[anc name=\"" . ($attribs[
"Name"] ??
"") .
"\"]", $a_text);
1120 $a_text = str_replace(
"</Anchor>",
"[/anc]", $a_text);
1123 while (preg_match(
'~<Marked(' . $any .
')>~i', $a_text, $found)) {
1124 $attribs = self::attribsToArray($found[1]);
1125 $a_text = str_replace(
"<Marked" . $found[1] .
">",
"[marked class=\"" . ($attribs[
"Class"] ??
"") .
"\"]", $a_text);
1127 $a_text = str_replace(
"</Marked>",
"[/marked]", $a_text);
1131 $a_text = str_replace(
"<br />",
"\n", $a_text);
1132 $a_text = str_replace(
"<br/>",
"\n", $a_text);
1137 $a_text = str_replace(
"{",
"{", $a_text);
1138 $a_text = str_replace(
"}",
"}", $a_text);
1142 $a_text = str_replace(
"<",
"<", $a_text);
1143 $a_text = str_replace(
">",
">", $a_text);
1147 $a_text = str_replace(
""",
"\"", $a_text);
1151 $a_text = str_replace(
"&",
"&", $a_text);
1155 $a_text = str_replace(
"<",
"&lt;", $a_text);
1156 $a_text = str_replace(
">",
"&gt;", $a_text);
1170 $a_text = str_replace(
"=<SimpleBulletList>",
"=<br /><SimpleBulletList>", $a_text);
1171 $a_text = str_replace(
"=<SimpleNumberedList>",
"=<br /><SimpleNumberedList>", $a_text);
1172 $a_text = str_replace(
"</SimpleBulletList>=",
"</SimpleBulletList><br />=", $a_text);
1173 $a_text = str_replace(
"</SimpleNumberedList>=",
"</SimpleNumberedList><br />=", $a_text);
1174 $a_text =
"<br />" . $a_text .
"<br />";
1179 while ($c_text !=
"") {
1182 $s1 = strpos($c_text,
"<br />=");
1185 $s2 = strpos($c_text,
"<br />==");
1186 if (is_int($s2) && $s2 <= $s1) {
1188 $s3 = strpos($c_text,
"<br />===");
1189 if (is_int($s3) && $s3 <= $s2) {
1191 $n = strpos($c_text,
"<br />", $s3 + 1);
1192 if ($n > ($s3 + 9) && substr($c_text, $n - 3, 9) ==
"===<br />") {
1195 if ($s3 > 0 || $head !=
"") {
1197 $chunks[] = array(
"level" => 0,
1201 $chunks[] = array(
"level" => 3,
1202 "text" => trim(substr($c_text, $s3 + 9, $n - $s3 - 12)));
1203 $c_text = $this->
handleNextBr(substr($c_text, $n + 6));
1206 $head .= substr($c_text, 0, $n);
1207 $c_text = substr($c_text, $n);
1211 $n = strpos($c_text,
"<br />", $s2 + 1);
1212 if ($n > ($s2 + 8) && substr($c_text, $n - 2, 8) ==
"==<br />") {
1215 if ($s2 > 0 || $head !=
"") {
1217 $chunks[] = array(
"level" => 0,
1221 $chunks[] = array(
"level" => 2,
"text" => trim(substr($c_text, $s2 + 8, $n - $s2 - 10)));
1222 $c_text = $this->
handleNextBr(substr($c_text, $n + 6));
1225 $head .= substr($c_text, 0, $n);
1226 $c_text = substr($c_text, $n);
1230 $n = strpos($c_text,
"<br />", $s1 + 1);
1231 if ($n > ($s1 + 7) && substr($c_text, $n - 1, 7) ==
"=<br />") {
1233 if ($s1 > 0 || $head !=
"") {
1234 $chunks[] = array(
"level" => 0,
1238 $chunks[] = array(
"level" => 1,
"text" => trim(substr($c_text, $s1 + 7, $n - $s1 - 8)));
1239 $c_text = $this->
handleNextBr(substr($c_text, $n + 6));
1242 $head .= substr($c_text, 0, $n);
1243 $c_text = substr($c_text, $n);
1249 $chunks[] = array(
"level" => 0,
"text" => $head . $c_text);
1254 if (count($chunks) == 0) {
1255 $chunks[] = array(
"level" => 0,
"text" =>
"");
1260 if (substr($chunks[0][
"text"], 0, 6) ==
"<br />") {
1261 $chunks[0][
"text"] = substr($chunks[0][
"text"], 6);
1266 $chunks[count($chunks) - 1][
"text"],
1267 strlen($chunks[count($chunks) - 1][
"text"]) - 6,
1270 $chunks[count($chunks) - 1][
"text"] =
1271 substr($chunks[count($chunks) - 1][
"text"], 0, strlen($chunks[count($chunks) - 1][
"text"]) - 6);
1272 if ($chunks[count($chunks) - 1][
"text"] ==
"") {
1273 unset($chunks[count($chunks) - 1]);
1286 if (substr($a_str, 0, 6) ==
"<br />" && substr($a_str, 6, 1) !=
"=") {
1287 $a_str = substr($a_str, 6);
1291 if (substr($a_str, 0, 1) ==
"=") {
1292 $a_str =
"<br />" . $a_str;
1303 if (substr($a_str, strlen($a_str) - 6) ==
"<br />") {
1304 $a_str = substr($a_str, 0, strlen($a_str) - 6);
1316 : parent::getType();
1334 string $a_insert_at =
"",
1335 bool $from_placeholder =
false 1339 $a_content = str_replace(
"<br>",
"<br />", $a_content);
1341 $this->log->debug(
"step 1: " . substr($a_content, 0, 1000));
1343 $t = self::handleAjaxContent($a_content);
1345 return $ex->getMessage() .
": " . htmlentities($a_content);
1347 $this->log->debug(
"step 2: " . substr($t[
"text"], 0, 1000));
1351 $pc_id = explode(
":", $a_pc_id);
1352 $insert_at = explode(
":", $a_insert_at);
1353 $t_id = explode(
":", $t[
"id"]);
1356 if ($a_insert_at !=
"") {
1358 $par->create($a_pg_obj, $insert_at[0], $insert_at[1], $from_placeholder);
1359 $par->writePCId($pc_id[1]);
1364 return $this->
lng->txt(
"copg_page_element_not_found") .
" (saveJS): " . $pc_id[0] .
":" . $pc_id[1] .
".";
1376 $par->setLanguage($ilUser->getLanguage());
1377 $par->setCharacteristic($t[
"class"]);
1379 $t2 = $par->input2xml($t[
"text"],
true,
false);
1380 $this->log->debug(
"step 3: " . substr($t2, 0, 1000));
1383 $this->log->debug(
"step 4: " . substr($t2, 0, 1000));
1385 $updated = $par->setText($t2,
true);
1387 if ($updated !==
true) {
1391 $updated = $par->updatePage($a_pg_obj);
1400 bool $a_as_ajax_str =
false 1404 if ($a_as_ajax_str) {
1409 array($this->inserted_pc_id)
1411 foreach ($combined as $pc_id =>
$hier_id) {
1413 $ids .= $sep .
$hier_id .
":" . $pc_id;
1432 $domutil = $DIC->copage()->internal()->domain()->domUtil();
1434 $a_content =
"<dummy>" . $a_content .
"</dummy>";
1443 $res = $doc->loadXML($content);
1450 $xpath =
new DOMXpath($doc);
1452 $tags = self::getXMLTagMap();
1454 $elements = $xpath->query(
"//span");
1455 while (!is_null($elements) && !is_null($element = $elements->item(0))) {
1457 $class = $element->getAttribute(
"class");
1458 if (substr($class, 0, 16) ==
"ilc_text_inline_") {
1459 $class_arr = explode(
" ", $class);
1460 $tag = substr($class_arr[0], 16);
1461 if (isset($tags[$tag])) {
1462 $cnode = $domutil->changeName($element,
"il" . substr($class_arr[0], 16),
false);
1464 $cnode = $domutil->changeName($element,
"ilMarked",
false);
1465 $cnode->setAttribute(
"Class", substr($class_arr[0], 16));
1467 for ($i = 1, $iMax = count($class_arr); $i < $iMax; $i++) {
1468 $tag = substr($class_arr[$i], 16);
1469 if (isset($tags[$tag])) {
1470 $cnode = $domutil->addParent($cnode,
"il" . substr($class_arr[$i], 16));
1472 $cnode = $domutil->addParent($cnode,
"ilMarked");
1473 $cnode->setAttribute(
"Class", substr($class_arr[$i], 16));
1477 $domutil->replaceByChilds($element);
1480 $elements = $xpath->query(
"//span");
1484 $xpath =
new DOMXpath($doc);
1485 $elements = $xpath->query(
"/dummy/div");
1488 if (!is_null($elements)) {
1489 foreach ($elements as $element) {
1490 $id = $element->getAttribute(
"id");
1491 $class = $element->getAttribute(
"class");
1492 $class = substr($class, 15);
1493 if (trim($class) ==
"") {
1494 $class =
"Standard";
1497 $text = $doc->saveXML($element);
1498 $text = str_replace(
"<br/>",
"\n", $text);
1501 $pos = strpos($text,
">");
1502 $text = substr($text, $pos + 1);
1503 $pos = strrpos($text,
"<");
1504 $text = substr($text, 0, $pos);
1510 if (!in_array($bb, array(
"code",
"tex",
"fn",
"xln"))) {
1511 $text = str_replace(
1516 $text = str_replace(
1521 $text = str_replace(
"<il" . $cl .
"/>",
"", $text);
1524 $text = str_replace(
1525 array(
"<code>",
"</code>"),
1526 array(
"[code]",
"[/code]"),
1529 $text = str_replace(
1530 array(
'<sup class="ilc_sup_Sup">',
'<sup>',
"</sup>"),
1531 array(
"[sup]",
"[sup]",
"[/sup]"),
1534 $text = str_replace(
1535 array(
'<sub class="ilc_sub_Sub">',
'<sub>',
"</sub>"),
1536 array(
"[sub]",
"[sub]",
"[/sub]"),
1540 $text = str_replace(
"<code/>",
"", $text);
1541 $text = str_replace(
'<ul class="ilc_list_u_BulletedList"/>',
"", $text);
1542 $text = str_replace(
'<ul class="ilc_list_o_NumberedList"/>',
"", $text);
1547 while (preg_match(
'~<ilMarked(' . $any .
')>~i', $text, $found)) {
1548 $attribs = self::attribsToArray($found[1]);
1549 $text = str_replace(
"<ilMarked" . $found[1] .
">",
"[marked class=\"" . $attribs[
"Class"] .
"\"]", $text);
1551 $text = str_replace(
"</ilMarked>",
"[/marked]", $text);
1554 $ret[] = array(
"text" => $text,
"id" =>
$id,
"class" => $class);
1567 $text = str_replace(
1568 array(
"<ul>",
"</ul>"),
1569 array(
"<SimpleBulletList>",
"</SimpleBulletList>"),
1572 $text = str_replace(
1573 array(
"<ol>",
"</ol>"),
1574 array(
"<SimpleNumberedList>",
"</SimpleNumberedList>"),
1577 $text = str_replace(
1578 array(
"<li>",
"</li>"),
1579 array(
"<SimpleListItem>",
"</SimpleListItem>"),
1582 while (preg_match(
'~<ul class=\"ilc_list_u_([^\"]*)\">~i', $text, $found)) {
1584 $text = str_replace(
'<ul class="ilc_list_u_' . $class .
'">',
'<SimpleBulletList Class="' . $class .
'">', $text);
1586 while (preg_match(
'~<ol class=\"ilc_list_o_([^\"]*)\">~i', $text, $found)) {
1588 $text = str_replace(
'<ol class="ilc_list_o_' . $class .
'">',
'<SimpleNumberedList Class="' . $class .
'">', $text);
1590 while (preg_match(
'~<li class=\"ilc_list_item_([^\"]*)\">~i', $text, $found)) {
1592 $text = str_replace(
'<li class="ilc_list_item_' . $class .
'">',
'<SimpleListItem Class="' . $class .
'">', $text);
1594 while (preg_match(
'~<li class=\"ilc_list_item_([^\"]*)\"\/>~i', $text, $found)) {
1596 $text = str_replace(
'<li class="ilc_list_item_' . $class .
'"/>',
'<SimpleListItem Class="' . $class .
'"></SimpleListItem>', $text);
1599 $text = str_replace(
"<SimpleBulletList><br />",
"<SimpleBulletList>", $text);
1600 $text = str_replace(
"<SimpleNumberedList><br />",
"<SimpleNumberedList>", $text);
1601 $text = str_replace(
"<br /><SimpleBulletList>",
"<SimpleBulletList>", $text);
1602 $text = str_replace(
"<br /><SimpleNumberedList>",
"<SimpleNumberedList>", $text);
1603 $text = str_replace(
"</SimpleBulletList><br />",
"</SimpleBulletList>", $text);
1604 $text = str_replace(
"</SimpleNumberedList><br />",
"</SimpleNumberedList>", $text);
1605 $text = str_replace(
"</SimpleListItem><br />",
"</SimpleListItem>", $text);
1620 return $a_page->
update();
1626 if (is_array($a_glos) && count($a_glos) > 0) {
1631 $text = strip_tags($this->
getText());
1632 $found_terms = array();
1633 foreach ($a_glos as $glo) {
1636 $glo_ref_id = current($ref_ids);
1637 if ($glo_ref_id > 0) {
1639 foreach ($terms as $t) {
1640 if (is_int(stripos($text, $t[
"term"]))) {
1641 $found_terms[$t[
"id"]] = $t;
1648 if (count($found_terms) > 0) {
1649 self::linkTermsInDom($this->dom_doc, $found_terms, $this->
getChildNode());
1664 $domutil = $DIC->copage()->internal()->domain()->domUtil();
1669 foreach ($a_terms as $k => $t) {
1670 $a_terms[$k][
"termlength"] = strlen($t[
"term"]);
1676 if ($par_node ==
null) {
1677 $parnodes = $xpath->query(
"//Paragraph[@Characteristic != 'Code']");
1679 $parnodes = $xpath->query(
".//Paragraph[@Characteristic != 'Code']", $par_node->parentNode);
1682 $strrPos =
function (
string $a_haystack,
string $a_needle, ?
int $a_offset =
null):
int {
1683 if (function_exists(
"mb_strpos")) {
1684 return mb_strrpos($a_haystack, $a_needle, (
int) $a_offset,
"UTF-8");
1686 return strrpos($a_haystack, $a_needle, (
int) $a_offset);
1690 foreach ($parnodes as $parnode) {
1691 $textnodes = $xpath->query(
'.//text()', $parnode);
1692 foreach ($textnodes as $node) {
1693 $p = $node->getNodePath();
1696 if (!is_int(strpos($p,
"/IntLink")) &&
1697 !is_int(strpos($p,
"/ExtLink"))) {
1698 $node_val = $node->nodeValue;
1701 foreach ($a_terms as $t) {
1705 while (is_int($pos)) {
1707 $tex_bpos = $strrPos(
ilStr::subStr($node_val, 0, $pos),
"[tex]");
1709 if ($tex_bpos > 0 && $tex_epos > 0 && $tex_bpos < $pos && $tex_epos > $pos) {
1714 $valid_limiters = array(
"",
" ",
" ",
".",
",",
":",
";",
"!",
"?",
"\"",
"'",
"(",
")");
1719 if ((in_array(
$b, $valid_limiters) || htmlentities(
$b,
null,
'utf-8') ==
" ") && in_array(
$a, $valid_limiters)) {
1720 $mid =
'[iln term="' . $t[
"id"] .
'"]' .
1739 $node->nodeValue = $node_val;
1748 $text = $a_dom->saveXML($parnode);
1749 $text = substr($text, 0, strlen($text) - strlen(
"</Paragraph>"));
1750 $text = substr($text, strpos($text,
">") + 1);
1753 $text = self::intLinks2xml($text);
1757 $temp_dom = $domutil->docFromString(
1758 '<?xml version="1.0" encoding="UTF-8"?><Paragraph>' . $text .
'</Paragraph>',
1762 if (empty($error)) {
1764 $children = $parnode->childNodes;
1765 while ($parnode->hasChildNodes()) {
1766 $parnode->removeChild($parnode->firstChild);
1770 $xpath_temp =
new DOMXPath($temp_dom);
1771 $temp_pars = $xpath_temp->query(
"//Paragraph");
1773 foreach ($temp_pars as $new_par_node) {
1774 $new_childs = $new_par_node->childNodes;
1776 foreach ($new_childs as $new_child) {
1778 $cloned_child = $a_dom->importNode($new_child,
true);
1779 $parnode->appendChild($cloned_child);
1797 self::linkTermsInDom($a_page->
getDomDoc(), $a_terms);
1811 self::saveMetaKeywords($a_page, $a_domdoc);
1812 self::saveAnchors($a_page, $a_domdoc);
1847 $nodes = $xpath->query(
'//Anchor');
1849 foreach ($nodes as $node) {
1850 $name = $node->getAttribute(
"Name");
1851 if (trim($name) !=
"" && !in_array($name, $saved)) {
1862 string $a_parent_type,
1868 $ilDB = $DIC->database();
1871 "DELETE FROM page_anchor WHERE " .
1872 " page_parent_type = " .
$ilDB->quote($a_parent_type,
"text") .
1873 " AND page_id = " .
$ilDB->quote($a_page_id,
"integer") .
1874 " AND page_lang = " .
$ilDB->quote($a_page_lang,
"text")
1882 string $a_parent_type,
1884 string $a_page_lang,
1885 string $a_anchor_name
1889 $ilDB = $DIC->database();
1891 $ilDB->manipulate(
"INSERT INTO page_anchor " .
1892 "(page_parent_type, page_id, page_lang, anchor_name) VALUES (" .
1893 $ilDB->quote($a_parent_type,
"text") .
"," .
1894 $ilDB->quote($a_page_id,
"integer") .
"," .
1895 $ilDB->quote($a_page_lang,
"text") .
"," .
1896 $ilDB->quote($a_anchor_name,
"text") .
1904 string $a_parent_type,
1906 string $a_page_lang =
"-" 1910 $ilDB = $DIC->database();
1912 $and_lang = ($a_page_lang !=
"")
1913 ?
" AND page_lang = " .
$ilDB->quote($a_page_lang,
"text")
1916 $set =
$ilDB->query(
1917 "SELECT * FROM page_anchor " .
1918 " WHERE page_parent_type = " .
$ilDB->quote($a_parent_type,
"text") .
1919 " AND page_id = " .
$ilDB->quote($a_page_id,
"integer") .
1923 while ($rec =
$ilDB->fetchAssoc($set)) {
1924 $anchors[] = $rec[
"anchor_name"];
1938 $lom_services = $DIC->learningObjectMetadata();
1944 $keywords = array();
1948 $nodes = $xpath->query(
'//Keyw');
1949 foreach ($nodes as $node) {
1950 $k = trim(strip_tags($node->nodeValue));
1951 if (!in_array($k, $keywords)) {
1960 $meta_id = $a_page->
getId();
1962 $lom_services->manipulate($meta_rep_id, $meta_id, $meta_type)
1963 ->prepareCreateOrUpdate($lom_services->paths()->keywords(), ...$keywords)
1972 if ($a_mode !=
"edit" && $adve_settings->get(
"auto_url_linking")) {
1983 if ($a_mode !=
"edit" && $adve_settings->get(
"auto_url_linking")) {
1984 return array(
"il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');");
1992 $model = new \stdClass();
1994 $s_text = static::xml2output($s_text,
true,
false);
2000 $model->characteristic = $char;
2001 $model->text = $s_text;
2018 string $a_insert_at =
"",
2019 string $a_new_pc_id =
"" 2024 $this->log->debug(
"step 1: " . substr($a_content, 0, 1000));
2027 $t = self::handleAjaxContent($a_content);
2029 return $ex->getMessage() .
": " . htmlentities($a_content);
2032 $this->log->debug(
"step 2: " . substr($t[
"text"], 0, 1000));
2037 $pc_id = explode(
":", $a_pc_id);
2038 $insert_at = explode(
":", $a_insert_at);
2039 $t_id = explode(
":", $t[
"id"]);
2042 if ($a_insert_at !=
"") {
2044 $par->create($page, $insert_at[0], $insert_at[1]);
2049 if ($a_insert_at !=
"") {
2050 $pc_id = ($a_new_pc_id !=
"")
2052 : $page->generatePcId();
2053 $par->writePCId($pc_id);
2054 $this->inserted_pc_id = $pc_id;
2056 $this->inserted_pc_id = $pc_id[1];
2060 $par->setCharacteristic($t[
"class"]);
2062 $t2 = $par->input2xml($t[
"text"],
true,
false);
2063 $this->log->debug(
"step 3: " . substr($t2, 0, 1000));
2066 $this->log->debug(
"step 4: " . substr($t2, 0, 1000));
2068 $updated = $par->setText($t2,
true);
2070 if ($updated !==
true) {
2074 $updated = $par->updatePage($page);
static saveMetaKeywords(ilPageObject $a_page, DOMDocument $a_domdoc)
save all keywords
setType(string $a_type)
Set Type.
removeTrailingBr(string $a_str)
Remove trailing
static xml2outputJS(string $s_text)
Prepare content for js output.
static handleAjaxContent(string $a_content)
Handle ajax content.
buildDom(bool $a_force=false)
static strIPos(string $a_haystack, string $a_needle, int $a_offset=0)
static getLogger(string $a_component_id)
Get component logger.
static getBBMap()
Get bb to xml tag map.
getJavascriptFiles(string $a_mode)
static _readAnchors(string $a_parent_type, int $a_page_id, string $a_page_lang="-")
Read anchors of a page.
static xml2outputReplaceLists(string $a_text)
Replaces with *.
static autoLinkGlossariesPage(ilPageObject $a_page, array $a_terms)
Auto link glossary of whole page.
static strPos(string $a_haystack, string $a_needle, int $a_offset=0)
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
update(bool $a_validate=true, bool $a_no_history=false)
update complete page content in db (dom xml content is used)
static _getAllReferences(int $id)
get all reference ids for object ID
static getLocalJsPaths()
Get paths of necessary js files.
updatePage(ilPageObject $a_page)
Update page object (it would be better to have this centralized and to change the constructors and pa...
saveJS(ilPageObject $a_pg_obj, string $a_content, string $a_char, string $a_pc_id, string $a_insert_at="", bool $from_placeholder=false)
Save input coming from ajax.
getOnloadCode(string $a_mode)
static xml2output(string $a_text, bool $a_wysiwyg=false, bool $a_replace_lists=true, bool $unmask=true)
Converts xml from DB to output in edit textarea.
insert(\ilPageObject $page, string $a_content, string $a_char, string $a_pc_id, string $a_insert_at="", string $a_new_pc_id="")
Save input coming from ajax.
static _lookupId($a_user_str)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getDomDoc()
Get dom doc (DOMDocument)
static subStr(string $a_str, int $a_start, ?int $a_length=null)
beforePageContentUpdate(ilPageContent $a_page_content)
Before page content update Note: This one is "work in progress", currently only text paragraphs call ...
checkTextArray(array $text)
Check text array.
static _saveAnchor(string $a_parent_type, int $a_page_id, string $a_page_lang, string $a_anchor_name)
Save an anchor.
getLastSavedPCId(ilPageObject $a_pg_obj, bool $a_as_ajax_str=false)
Get last inserted pc ids.
static getXMLTagMap()
Get tag to bb map.
static input2xmlReplaceLists(string $a_text)
Converts xml from DB to output in edit textarea.
Content object of ilPageObject (see ILIAS DTD).
create(ilPageObject $a_pg_obj, string $a_hier_id, string $a_pc_id="", bool $from_placeholder=false)
Create paragraph node (incl.
static saveAnchors(ilPageObject $a_page, DOMDocument $a_domdoc)
Save anchors.
static getTermList(array $a_glo_ref_id, string $searchterm="", string $a_first_letter="", string $a_def="", int $a_tax_node=0, bool $a_add_amet_fields=false, ?array $a_amet_filter=null, bool $a_include_references=false)
Get all terms for given set of glossary ids.
static replaceBBTagByMatching(string $start_tag, string $end_tag, string $xml_tag_name, string $text, array $attribs)
Transforms [iln...]...[] to <IntLink...>...</IntLink>, if content is valid, otherwise it removes the ...
setCharacteristic(string $a_char)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setLanguage(string $a_lang)
static strLen(string $a_string)
static handleAjaxContentPost(string $text)
Post input2xml handling of ajax content.
static afterPageHistoryEntry(ilPageObject $a_page, DOMDocument $a_old_domdoc, string $a_old_xml, int $a_old_nr)
After page history entry has been created.
getHierIdsForPCIds(array $a_pc_ids)
Get hier ids for a set of pc ids.
getType()
Need to override getType from ilPageContent to distinguish between Pararagraph and Source...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static beforePageDelete(ilPageObject $a_page)
Before page is being deleted.
handleNextBr(string $a_str)
Remove preceding
static isValidTagContent(string $content)
setText(string $a_text, bool $a_auto_split=false)
Set (xml) content of text paragraph.
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
static _input2xml(string $a_text, string $a_lang, bool $a_wysiwyg=false, bool $a_handle_lists=true)
Converts user input to xml User input comes as bb code information, e.g.
input2xml(string $a_text, bool $a_wysiwyg=false, bool $a_handle_lists=true)
setDomNode(DOMNode $node)
Class ilPageObject Handles PageObjects of ILIAS Learning Modules (see ILIAS DTD)
static replaceBBCode(string $a_text, string $a_bb, string $a_tag)
setShowLineNumbers(string $a_char)
setLanguage(string $a_val)
Set language.
static intLinks2xml(string $a_text)
internal links to xml
autoSplit(string $a_text)
This function splits a paragraph text that has been already processed with input2xml at each header p...
static _deleteAnchors(string $a_parent_type, int $a_page_id, string $a_page_lang)
Delete anchors of a page.
createAfter(DomNode $node)
Create paragraph node (incl.
createPageContentNode(bool $a_set_this_node=true)
Create page content node (always use this method first when adding a new element) ...
getText(bool $a_short_mode=false)
Get (xml) content of paragraph.
getContentObject(string $a_hier_id, string $a_pc_id="")
Get a content object of the page.
addHierIDs()
Add hierarchical ID (e.g.
static afterPageUpdate(ilPageObject $a_page, DOMDocument $a_domdoc, string $a_xml, bool $a_creation)
After page has been updated (or created)
autoLinkGlossaries(array $a_glos)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
static _getCommonBBButtons()
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
static segmentString(string $a_haystack, array $a_needles)
Segments a string into an array at each position of a substring.
debug(string $message, array $context=[])
setAutoIndent(string $ind)
static _lookupType(int $id, bool $reference=false)
setDownloadTitle(string $title)
exit
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static linkTermsInDom(DOMDocument $a_dom, array $a_terms, ?DOMNode $a_par_node=null)
Link terms in a dom page object in bb style.
setSubCharacteristic(string $a_char)
static attribsToArray(string $a_str)
converts a string of format var1 = "val1" var2 = "val2" ...
static sortArray(array $array, string $a_array_sortby_key, string $a_array_sortorder="asc", bool $a_numeric=false, bool $a_keep_keys=false)
static _lookupLogin(int $a_user_id)