29 public function init(): void
36 return array(
"ed_insert_code",
"pc_code");
41 string $a_mode =
"presentation",
42 bool $a_abstract_only =
false 44 $nodes = $this->dom_util->path($this->dom_doc,
"//Paragraph");
46 foreach ($nodes as $context_node) {
47 $char = $context_node->getAttribute(
'Characteristic');
49 if ($char !==
"Code") {
54 $n = $context_node->parentNode;
55 $char = $context_node->getAttribute(
'Characteristic');
56 $subchar = $context_node->getAttribute(
'SubCharacteristic');
57 $showlinenumbers = $context_node->getAttribute(
'ShowLineNumbers');
58 $downloadtitle = $context_node->getAttribute(
'DownloadTitle');
59 $autoindent = $context_node->getAttribute(
'AutoIndent');
63 foreach ($context_node->childNodes as $child) {
64 $content .= $this->dom_util->dump($child);
67 while ($context_node->firstChild) {
68 $node_del = $context_node->firstChild;
69 $node_del->parentNode->removeChild($node_del);
73 $content = str_replace(
"<br />",
"<br/>", $content);
74 $content = str_replace(
"<br/>",
"\n", $content);
75 $rownums = count(explode(
"\n", $content));
79 $plain_content = $content;
81 $plain_content = preg_replace_callback(
82 "/\&#x([1-9a-f]{2});?/is",
84 return chr(base_convert($hit[1], 16, 10));
88 $plain_content = preg_replace_callback(
96 if ($subchar ===
"") {
101 $content = str_replace(
"&lt;",
"<", $content);
102 $content = str_replace(
"&gt;",
">", $content);
105 $rows =
"<tr valign=\"top\">";
110 if (strcmp($showlinenumbers,
"y") == 0) {
111 $linenumbers =
"<td nowrap=\"nowrap\" class=\"ilc_LineNumbers\" >";
112 $linenumbers .=
"<pre class=\"ilc_Code ilc_code_block_Code\">";
114 for ($j = 0; $j < $rownums; $j++) {
115 $indentno = strlen($rownums) - strlen($j + 1) + 2;
116 $rownumeration = ($j + 1);
117 $linenumbers .=
"<span class=\"ilc_LineNumber\">$rownumeration</span>";
118 if ($j < $rownums - 1) {
119 $linenumbers .=
"\n";
122 $linenumbers .=
"</pre>";
123 $linenumbers .=
"</td>";
126 $rows .= $linenumbers .
"<td class=\"ilc_Sourcecode\"><pre class=\"ilc_Code ilc_code_block_Code\">" . $content .
"</pre></td>";
131 $newcontent = str_replace(
"\n",
"<br/>", $rows);
133 $newcontent = str_replace(
"<br/><br/>",
"<br/> <br/>", $newcontent);
135 $newcontent = str_replace(
"<br/><br/>",
"<br/> <br/>", $newcontent);
140 $newcontent = str_replace(
"{",
"{", $newcontent);
141 $newcontent = str_replace(
"}",
"}", $newcontent);
143 $a_output = str_replace(
"[[[[[Code;" . ($i + 1) .
"]]]]]", $newcontent, $a_output);
145 if ($a_mode !=
"presentation" && is_object($this->
getPage()->getOfflineHandler())
146 && trim($downloadtitle) !=
"") {
148 $this->
getPage()->getOfflineHandler()->handleCodeParagraph($this->
getPage()->
getId(), $i + 1, $downloadtitle, $plain_content);
163 $map = [
"php3" =>
"php",
165 "html" =>
"html4strict"];
166 if (isset($map[$proglang])) {
167 $proglang = $map[$proglang];
170 $geshi =
new GeSHi(html_entity_decode($a_text), $proglang);
171 $a_code = $geshi->parse_code();
172 $a_code = substr($a_code, strpos($a_code,
">") + 1);
173 $a_code = substr($a_code, 0, strrpos($a_code,
"<"));
179 if ($tmpname !==
"") {
180 $tmpfs = $this->domain->filesystem()->temp();
182 $this->
input2xml($tmpfs->read($tmpname), 0,
false)
184 $tmpfs->delete($tmpname);
setType(string $a_type)
Set Type.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
modifyPageContentPostXsl(string $a_output, string $a_mode="presentation", bool $a_abstract_only=false)
importFile(string $tmpname)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setText(string $a_text, bool $a_auto_split=false)
Set (xml) content of text paragraph.
input2xml(string $a_text, bool $a_wysiwyg=false, bool $a_handle_lists=true)
highlightText(string $a_text, string $proglang)
Highlights Text with given ProgLang.