ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
class.ilPCSourceCode.php
Go to the documentation of this file.
1<?php
2/* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3
4require_once("./Services/COPage/classes/class.ilPCParagraph.php");
5
18{
22 public function init()
23 {
24 $this->setType("src");
25 }
26
31 public static function getLangVars()
32 {
33 return array("ed_insert_code", "pc_code");
34 }
35
42 public function modifyPageContentPostXsl($a_output, $outputmode = "presentation")
43 {
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, $autoindent));
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\">";
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\">" . $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 ($outputmode != "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($a_text, $proglang, $autoindent = "")
161 {
162 include_once("./Services/UIComponent/SyntaxHighlighter/classes/class.ilSyntaxHighlighter.php");
163 $proglang = ilSyntaxHighlighter::getNewLanguageId($proglang);
164 if (ilSyntaxHighlighter::isSupported($proglang)) {
165 $highl = ilSyntaxHighlighter::getInstance($proglang);
166 $a_text = $highl->highlight($a_text);
167 }
168 return $a_text;
169 }
170
171 public function hasHighlighter($hfile_ext)
172 {
173 return file_exists("Services/COPage/syntax_highlight/php/HFile/HFile_" . $hfile_ext . ".php");
174 }
175}
$n
Definition: RandomTest.php:85
An exception for terminatinating execution or to throw for unit testing.
Class ilPCParagraph.
Class ilPCSourceCode.
static getLangVars()
Get lang vars needed for editing.
highlightText($a_text, $proglang, $autoindent="")
Highligths Text with given ProgLang.
init()
Init page content component.
modifyPageContentPostXsl($a_output, $outputmode="presentation")
Modify page content after xsl.
hasHighlighter($hfile_ext)
setType($a_type)
Set Type.
static isSupported($a_lang)
Is language supported?
static getInstance($a_lang)
Get instance.
static getNewLanguageId($a_old_lang_id)
Get new language id (for an old one)
$i
Definition: disco.tpl.php:19
xpath_eval($xpath_context, $eval_str, $contextnode=null)
xpath_new_context($dom_document)
foreach($_POST as $key=> $value) $res
$rows
Definition: xhr_table.php:10