ILIAS  release_8 Revision v8.24
class.ilPCSourceCode.php
Go to the documentation of this file.
1<?php
2
28{
29 public function init(): void
30 {
31 $this->setType("src");
32 }
33
34 public static function getLangVars(): array
35 {
36 return array("ed_insert_code", "pc_code");
37 }
38
39 public function modifyPageContentPostXsl(
40 string $a_output,
41 string $a_mode = "presentation",
42 bool $a_abstract_only = false
43 ): string {
44 $dom = $this->getPage()->getDom();
45
46 $xpc = xpath_new_context($dom);
47 $path = "//Paragraph"; //"[@Characteristic = 'Code']";
48 $res = xpath_eval($xpc, $path);
49 for ($i = 0; $i < count($res->nodeset); $i++) {
50 $context_node = $res->nodeset[$i];
51 $char = $context_node->get_attribute('Characteristic');
52
53 if ($char != "Code") {
54 continue;
55 }
56
57 $n = $context_node->parent_node();
58 $char = $context_node->get_attribute('Characteristic');
59 $subchar = $context_node->get_attribute('SubCharacteristic');
60 $showlinenumbers = $context_node->get_attribute('ShowLineNumbers');
61 $downloadtitle = $context_node->get_attribute('DownloadTitle');
62 $autoindent = $context_node->get_attribute('AutoIndent');
63
64 $content = "";
65
66 // get XML Content
67 $childs = $context_node->child_nodes();
68
69 for ($j = 0; $j < count($childs); $j++) {
70 $content .= $dom->dump_node($childs[$j]);
71 }
72
73 while ($context_node->has_child_nodes()) {
74 $node_del = $context_node->first_child();
75 $context_node->remove_child($node_del);
76 }
77
78 $content = str_replace("<br />", "<br/>", utf8_decode($content));
79 $content = str_replace("<br/>", "\n", $content);
80 $rownums = count(explode("\n", $content));
81
82 // see #23028
83 //$plain_content = html_entity_decode($content);
84 $plain_content = $content;
85
86 $plain_content = preg_replace_callback(
87 "/\&#x([1-9a-f]{2});?/is",
88 function ($hit) {
89 return chr(base_convert($hit[1], 16, 10));
90 },
91 $plain_content
92 );
93 $plain_content = preg_replace_callback(
94 "/\&#(\d+);?/is",
95 function ($hit) {
96 return chr($hit[1]);
97 },
98 $plain_content
99 );
100 $content = utf8_encode($this->highlightText($plain_content, $subchar));
101
102 $content = str_replace("&amp;lt;", "&lt;", $content);
103 $content = str_replace("&amp;gt;", "&gt;", $content);
104 // $content = str_replace("&", "&amp;", $content);
105 //var_dump($content);
106 $rows = "<tr valign=\"top\">";
107 $rownumbers = "";
108 $linenumbers = "";
109
110 //if we have to show line numbers
111 if (strcmp($showlinenumbers, "y") == 0) {
112 $linenumbers = "<td nowrap=\"nowrap\" class=\"ilc_LineNumbers\" >";
113 $linenumbers .= "<pre class=\"ilc_Code ilc_code_block_Code\">";
114
115 for ($j = 0; $j < $rownums; $j++) {
116 $indentno = strlen($rownums) - strlen($j + 1) + 2;
117 $rownumeration = ($j + 1);
118 $linenumbers .= "<span class=\"ilc_LineNumber\">$rownumeration</span>";
119 if ($j < $rownums - 1) {
120 $linenumbers .= "\n";
121 }
122 }
123 $linenumbers .= "</pre>";
124 $linenumbers .= "</td>";
125 }
126
127 $rows .= $linenumbers . "<td class=\"ilc_Sourcecode\"><pre class=\"ilc_Code ilc_code_block_Code\">" . $content . "</pre></td>";
128 $rows .= "</tr>";
129
130 // fix for ie explorer which is not able to produce empty line feeds with <br /><br />;
131 // workaround: add a space after each br.
132 $newcontent = str_replace("\n", "<br/>", $rows);
133 // fix for IE
134 $newcontent = str_replace("<br/><br/>", "<br/> <br/>", $newcontent);
135 // falls drei hintereinander...
136 $newcontent = str_replace("<br/><br/>", "<br/> <br/>", $newcontent);
137
138 // workaround for preventing template engine
139 // from hiding paragraph text that is enclosed
140 // in curly brackets (e.g. "{a}", see ilLMEditorGUI::executeCommand())
141 $newcontent = str_replace("{", "&#123;", $newcontent);
142 $newcontent = str_replace("}", "&#125;", $newcontent);
143
144 //echo htmlentities($newcontent);
145 $a_output = str_replace("[[[[[Code;" . ($i + 1) . "]]]]]", $newcontent, $a_output);
146
147 if ($a_mode != "presentation" && is_object($this->getPage()->getOfflineHandler())
148 && trim($downloadtitle) != "") {
149 // call code handler for offline versions
150 $this->getPage()->getOfflineHandler()->handleCodeParagraph($this->getPage()->getId(), $i + 1, $downloadtitle, $plain_content);
151 }
152 }
153
154 return $a_output;
155 }
156
160 public function highlightText(
161 string $a_text,
162 string $proglang
163 ): string {
164 $proglang = ilSyntaxHighlighter::getNewLanguageId($proglang);
165 if (ilSyntaxHighlighter::isSupported($proglang)) {
166 $highl = ilSyntaxHighlighter::getInstance($proglang);
167 $a_text = $highl->highlight($a_text);
168 }
169 return $a_text;
170 }
171}
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
highlightText(string $a_text, string $proglang)
Highlights Text with given ProgLang.
static getLangVars()
Get lang vars needed for editing.
modifyPageContentPostXsl(string $a_output, string $a_mode="presentation", bool $a_abstract_only=false)
Modify page content after xsl.
php4DOMDocument $dom
setType(string $a_type)
Set Type.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static isSupported(string $a_lang)
Is language supported?
static getInstance(string $a_lang)
xpath_new_context($dom_document)
xpath_eval(php4DOMXPath $xpath_context, string $eval_str, $contextnode=null)
$path
Definition: ltiservices.php:32
$res
Definition: ltiservices.php:69
$i
Definition: metadata.php:41
$rows
Definition: xhr_table.php:10