ILIAS  Release_4_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
class.ilPCParagraph.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
4 require_once("./Services/COPage/classes/class.ilPageContent.php");
5 require_once("./Services/COPage/classes/class.ilWysiwygUtil.php");
6 
18 {
19  var $dom;
20  var $par_node; // node of Paragraph element
21 
25  function init()
26  {
27  $this->setType("par");
28  }
29 
35  function setNode(&$a_node)
36  {
37  parent::setNode($a_node); // this is the PageContent node
38 
39  $childs = $a_node->child_nodes();
40 
41  for ($i=0; $i<count($childs); $i++)
42  {
43  if ($childs[$i]->node_name() == "Paragraph")
44  {
45  $this->par_node = $childs[$i]; //... and this the Paragraph node
46  }
47  }
48  }
49 
50 
56  function createAtNode(&$node)
57  {
58  $this->node = $this->createPageContentNode();
59  $this->par_node =& $this->dom->create_element("Paragraph");
60  $this->par_node =& $this->node->append_child($this->par_node);
61  $this->par_node->set_attribute("Language", "");
62  $node->append_child ($this->node);
63  }
64 
71  function createAfter($node)
72  {
73  $this->node = $this->createPageContentNode(false);
74  if($succ_node = $node->next_sibling())
75  {
76  $this->node = $succ_node->insert_before($this->node, $succ_node);
77  }
78  else
79  {
80  $parent_node = $node->parent_node();
81  $this->node = $parent_node->append_child($this->node);
82  }
83  $this->par_node = $this->dom->create_element("Paragraph");
84  $this->par_node = $this->node->append_child($this->par_node);
85  $this->par_node->set_attribute("Language", "");
86  }
87 
95  function create(&$a_pg_obj, $a_hier_id, $a_pc_id = "")
96  {
97 //echo "-$a_pc_id-";
98  $this->node =& $this->dom->create_element("PageContent");
99  $a_pg_obj->insertContent($this, $a_hier_id, IL_INSERT_AFTER, $a_pc_id);
100  $this->par_node =& $this->dom->create_element("Paragraph");
101  $this->par_node =& $this->node->append_child($this->par_node);
102  $this->par_node->set_attribute("Language", "");
103  }
104 
111  function setText($a_text, $a_auto_split = false)
112  {
113 //var_dump($a_text);
114  if (!is_array($a_text))
115  {
116  $text = array(array("level" => 0, "text" => $a_text));
117  }
118  else
119  {
120  $text = $a_text;
121  }
122 
123  if ($a_auto_split)
124  {
125  $text = $this->autoSplit($a_text);
126  }
127 
128  // DOMXML_LOAD_PARSING, DOMXML_LOAD_VALIDATING, DOMXML_LOAD_RECOVERING
129  $check = "";
130  foreach ($text as $t)
131  {
132  $check.= "<Paragraph>".$t["text"]."</Paragraph>";
133  }
134  /*$temp_dom = domxml_open_mem('<?xml version="1.0" encoding="UTF-8"?><Paragraph>'.$text[0]["text"].'</Paragraph>',
135  DOMXML_LOAD_PARSING, $error);*/
136  $temp_dom = domxml_open_mem('<?xml version="1.0" encoding="UTF-8"?><Paragraph>'.$check.'</Paragraph>',
138 
139  //$this->text = $a_text;
140  // remove all childs
141  if(empty($error))
142  {
143  $temp_dom = domxml_open_mem('<?xml version="1.0" encoding="UTF-8"?><Paragraph>'.$text[0]["text"].'</Paragraph>',
145 
146  // delete children of paragraph node
147  $children = $this->par_node->child_nodes();
148  for($i=0; $i<count($children); $i++)
149  {
150  $this->par_node->remove_child($children[$i]);
151  }
152 
153  // copy new content children in paragraph node
154  $xpc = xpath_new_context($temp_dom);
155  $path = "//Paragraph";
156  $res =& xpath_eval($xpc, $path);
157  if (count($res->nodeset) == 1)
158  {
159  $new_par_node =& $res->nodeset[0];
160  $new_childs = $new_par_node->child_nodes();
161 
162  for($i=0; $i<count($new_childs); $i++)
163  {
164  $cloned_child =& $new_childs[$i]->clone_node(true);
165  $this->par_node->append_child($cloned_child);
166  }
167  $orig_characteristic = $this->getCharacteristic();
168 
169  // if headlines are entered and current characteristic is a headline
170  // use no characteristic as standard
171  if ((count($text) > 1) && (substr($orig_characteristic, 0, 8) == "Headline"))
172  {
173  $orig_characteristic = "";
174  }
175  if ($text[0]["level"] > 0)
176  {
177  $this->par_node->set_attribute("Characteristic", 'Headline'.$text[0]["level"]);
178  }
179  }
180 
181  $ok = true;
182 
183  $c_node = $this->node;
184  // add other chunks afterwards
185  for ($i=1; $i<count($text); $i++)
186  {
187  if ($ok)
188  {
189  $next_par = new ilPCParagraph($this->dom);
190  $next_par->createAfter($c_node);
191  $next_par->setLanguage($this->getLanguage());
192  if ($text[$i]["level"] > 0)
193  {
194  $next_par->setCharacteristic("Headline".$text[$i]["level"]);
195  }
196  else
197  {
198  $next_par->setCharacteristic($orig_characteristic);
199  }
200  $ok = $next_par->setText($text[$i]["text"], false);
201  $c_node = $next_par->node;
202  }
203  }
204 
205  return true;
206  }
207  else
208  {
209  // We want the correct number of \n here to have the real lines numbers
210  $text = str_replace("<br>", "\n", $check); // replace <br> with \n to get correct line
211  $text = str_replace("<br/>", "\n", $text);
212  $text = str_replace("<br />", "\n", $text);
213  $text = str_replace("</SimpleListItem>", "</SimpleListItem>\n", $text);
214  $text = str_replace("<SimpleBulletList>", "\n<SimpleBulletList>", $text);
215  $text = str_replace("<SimpleNumberedList>", "\n<SimpleNumberedList>", $text);
216  $text = str_replace("<Paragraph>\n", "<Paragraph>", $text);
217  $text = str_replace("</Paragraph>", "</Paragraph>\n", $text);
218  include_once("./Services/Dom/classes/class.ilDomDocument.php");
219  $doc = new ilDOMDocument();
220  $text = '<?xml version="1.0" encoding="UTF-8"?><Paragraph>'.$text.'</Paragraph>';
221 //echo htmlentities($text);
222  $this->success = $doc->loadXML($text);
223  $error = $doc->errors;
224  $estr = "";
225  foreach ($error as $e)
226  {
227  $e = str_replace(" in Entity", "", $e);
228  $estr.= $e."<br />";
229  }
230  return $estr;
231  }
232  }
233 
239  function getText($a_short_mode = false)
240  {
241  if (is_object($this->par_node))
242  {
243  $content = "";
244  $childs = $this->par_node->child_nodes();
245  for($i=0; $i<count($childs); $i++)
246  {
247  $content .= $this->dom->dump_node($childs[$i]);
248  }
249  return $content;
250  }
251  else
252  {
253  return "";
254  }
255  }
256 
262  function setCharacteristic($a_char)
263  {
264  if (!empty($a_char))
265  {
266  $this->par_node->set_attribute("Characteristic", $a_char);
267  }
268  else
269  {
270  if ($this->par_node->has_attribute("Characteristic"))
271  {
272  $this->par_node->remove_attribute("Characteristic");
273  }
274  }
275  }
276 
282  function getCharacteristic()
283  {
284  if (is_object($this->par_node))
285  {
286  return $this->par_node->get_attribute("Characteristic");
287  }
288  }
289 
290 
294  function setSubCharacteristic($a_char)
295  {
296  if (!empty($a_char))
297  {
298  $this->par_node->set_attribute("SubCharacteristic", $a_char);
299  }
300  else
301  {
302  if ($this->par_node->has_attribute("SubCharacteristic"))
303  {
304  $this->par_node->remove_attribute("SubCharacteristic");
305  }
306  }
307  }
308 
314  function getAutoIndent()
315  {
316  return $this->par_node->get_attribute("AutoIndent");
317  }
318 
319  function setAutoIndent($a_char)
320  {
321  if (!empty($a_char))
322  {
323  $this->par_node->set_attribute("AutoIndent", $a_char);
324  }
325  else
326  {
327  if ($this->par_node->has_attribute("AutoIndent"))
328  {
329  $this->par_node->remove_attribute("AutoIndent");
330  }
331  }
332  }
333 
338  {
339  return $this->par_node->get_attribute("SubCharacteristic");
340  }
341 
346  function setDownloadTitle($a_char)
347  {
348  if (!empty($a_char))
349  {
350  $this->par_node->set_attribute("DownloadTitle", $a_char);
351  }
352  else
353  {
354  if ($this->par_node->has_attribute("DownloadTitle"))
355  {
356  $this->par_node->remove_attribute("DownloadTitle");
357  }
358  }
359  }
360 
364  function getDownloadTitle()
365  {
366  return $this->par_node->get_attribute("DownloadTitle");
367  }
368 
373  function setShowLineNumbers($a_char)
374  {
375  $a_char = empty($a_char)?"n":$a_char;
376 
377  $this->par_node->set_attribute("ShowLineNumbers", $a_char);
378  }
379 
385  {
386  return $this->par_node->get_attribute("ShowLineNumbers");
387  }
388 
392  function setLanguage($a_lang)
393  {
394  $this->par_node->set_attribute("Language", $a_lang);
395  }
396 
400  function getLanguage()
401  {
402  return $this->par_node->get_attribute("Language");
403  }
404 
405  function input2xml($a_text, $a_wysiwyg = 0, $a_handle_lists = true)
406  {
407  return $this->_input2xml($a_text, $this->getLanguage(), $a_wysiwyg, $a_handle_lists);
408  }
409 
413  static function _input2xml($a_text, $a_lang, $a_wysiwyg = 0, $a_handle_lists = true)
414  {
415  $a_text = ilUtil::stripSlashes($a_text, false);
416 
417  // note: the order of the processing steps is crucial
418  // and should be the same as in xml2output() in REVERSE order!
419  $a_text = trim($a_text);
420 
421 //echo "<br>between:".htmlentities($a_text);
422 
423  // mask html
424  $a_text = str_replace("&","&amp;",$a_text);
425  $a_text = str_replace("<","&lt;",$a_text);
426  $a_text = str_replace(">","&gt;",$a_text);
427 
428  // Reconvert PageTurn and BibItemIdentifier
429  $a_text = preg_replace('/&lt;([\s\/]*?PageTurn.*?)&gt;/i',"<$1>",$a_text);
430  $a_text = preg_replace('/&lt;([\s\/]*?BibItemIdentifier.*?)&gt;/i',"<$1>",$a_text);
431 
432 //echo "<br>second:".htmlentities($a_text);
433 
434  // mask curly brackets
435 /*
436 echo htmlentities($a_text);
437  $a_text = str_replace("{", "&#123;", $a_text);
438  $a_text = str_replace("}", "&#125;", $a_text);
439 echo htmlentities($a_text);*/
440  // linefeed to br
441  $a_text = str_replace(chr(13).chr(10),"<br />",$a_text);
442  $a_text = str_replace(chr(13),"<br />", $a_text);
443  $a_text = str_replace(chr(10),"<br />", $a_text);
444 
445  if ($a_handle_lists)
446  {
447  $a_text = ilPCParagraph::input2xmlReplaceLists($a_text);
448  }
449 
450  // bb code to xml
451  $a_text = eregi_replace("\[com\]","<Comment Language=\"".$a_lang."\">",$a_text);
452  $a_text = eregi_replace("\[\/com\]","</Comment>",$a_text);
453  $a_text = eregi_replace("\[emp\]","<Emph>",$a_text);
454  $a_text = eregi_replace("\[\/emp\]","</Emph>",$a_text);
455  $a_text = eregi_replace("\[str\]","<Strong>",$a_text);
456  $a_text = eregi_replace("\[\/str\]","</Strong>",$a_text);
457  $a_text = eregi_replace("\[fn\]","<Footnote>",$a_text);
458  $a_text = eregi_replace("\[\/fn\]","</Footnote>",$a_text);
459  $a_text = eregi_replace("\[quot\]","<Quotation Language=\"".$a_lang."\">",$a_text);
460  $a_text = eregi_replace("\[\/quot\]","</Quotation>",$a_text);
461  $a_text = eregi_replace("\[code\]","<Code>",$a_text);
462  $a_text = eregi_replace("\[\/code\]","</Code>",$a_text);
463  $a_text = eregi_replace("\[acc\]","<Accent>",$a_text);
464  $a_text = eregi_replace("\[\/acc\]","</Accent>",$a_text);
465  $a_text = eregi_replace("\[imp\]","<Important>",$a_text);
466  $a_text = eregi_replace("\[\/imp\]","</Important>",$a_text);
467  $a_text = eregi_replace("\[kw\]","<Keyw>",$a_text);
468  $a_text = eregi_replace("\[\/kw\]","</Keyw>",$a_text);
469 
470  // internal links
471  //$any = "[^\]]*"; // this doesn't work :-(
472  $ws= "[ \t\r\f\v\n]*";
473 
474  while (eregi("\[(iln$ws((inst$ws=$ws([\"0-9])*)?$ws".
475  "((page|chap|term|media|htlm|lm|dbk|glo|frm|exc|tst|svy|webr|chat|cat|crs|grp|file|fold|sahs|mcst|obj)$ws=$ws([\"0-9])*)$ws".
476  "(target$ws=$ws(\"(New|FAQ|Media)\"))?$ws(anchor$ws=$ws(\"([^\"])*\"))?$ws))\]", $a_text, $found))
477  {
478  $attribs = ilUtil::attribsToArray($found[2]);
479  $inst_str = $attribs["inst"];
480  // pages
481  if (isset($attribs["page"]))
482  {
483  $tframestr = "";
484  if (!empty($found[10]))
485  {
486  $tframestr = " TargetFrame=\"".$found[10]."\" ";
487  }
488  $ancstr = "";
489  if ($attribs["anchor"] != "")
490  {
491  $ancstr = ' Anchor="'.$attribs["anchor"].'" ';
492  }
493  $a_text = eregi_replace("\[".$found[1]."\]",
494  "<IntLink Target=\"il_".$inst_str."_pg_".$attribs[page]."\" Type=\"PageObject\"".$tframestr.$ancstr.">", $a_text);
495  }
496  // chapters
497  else if (isset($attribs["chap"]))
498  {
499  if (!empty($found[10]))
500  {
501  $tframestr = " TargetFrame=\"".$found[10]."\" ";
502  }
503  else
504  {
505  $tframestr = "";
506  }
507  $a_text = eregi_replace("\[".$found[1]."\]",
508  "<IntLink Target=\"il_".$inst_str."_st_".$attribs[chap]."\" Type=\"StructureObject\"".$tframestr.">", $a_text);
509  }
510  // glossary terms
511  else if (isset($attribs["term"]))
512  {
513  switch ($found[10])
514  {
515  case "New":
516  $tframestr = " TargetFrame=\"New\" ";
517  break;
518 
519  default:
520  $tframestr = " TargetFrame=\"Glossary\" ";
521  break;
522  }
523  $a_text = eregi_replace("\[".$found[1]."\]",
524  "<IntLink Target=\"il_".$inst_str."_git_".$attribs[term]."\" Type=\"GlossaryItem\" $tframestr>", $a_text);
525  }
526  // media object
527  else if (isset($attribs["media"]))
528  {
529  if (!empty($found[10]))
530  {
531  $tframestr = " TargetFrame=\"".$found[10]."\" ";
532  $a_text = eregi_replace("\[".$found[1]."\]",
533  "<IntLink Target=\"il_".$inst_str."_mob_".$attribs[media]."\" Type=\"MediaObject\"".$tframestr.">", $a_text);
534  }
535  else
536  {
537  $a_text = eregi_replace("\[".$found[1]."\]",
538  "<IntLink Target=\"il_".$inst_str."_mob_".$attribs[media]."\" Type=\"MediaObject\"/>", $a_text);
539  }
540  }
541  // repository items (id is ref_id (will be used internally but will
542  // be replaced by object id for export purposes)
543  else if (isset($attribs["lm"]) || isset($attribs["dbk"]) || isset($attribs["glo"])
544  || isset($attribs["frm"]) || isset($attribs["exc"]) || isset($attribs["tst"])
545  || isset($attribs["svy"]) || isset($attribs["obj"]) || isset($attribs['webr'])
546  || isset($attribs["htlm"]) || isset($attribs["chat"]) || isset($attribs["grp"])
547  || isset($attribs["fold"]) || isset($attribs["sahs"]) || isset($attribs["mcst"])
548  || isset($attribs["cat"]) || isset($attribs["crs"]) || isset($attribs["file"]))
549  {
550  $obj_id = (isset($attribs["lm"])) ? $attribs["lm"] : $obj_id;
551  $obj_id = (isset($attribs["dbk"])) ? $attribs["dbk"] : $obj_id;
552  $obj_id = (isset($attribs["chat"])) ? $attribs["chat"] : $obj_id;
553  $obj_id = (isset($attribs["glo"])) ? $attribs["glo"] : $obj_id;
554  $obj_id = (isset($attribs["frm"])) ? $attribs["frm"] : $obj_id;
555  $obj_id = (isset($attribs["exc"])) ? $attribs["exc"] : $obj_id;
556  $obj_id = (isset($attribs["htlm"])) ? $attribs["htlm"] : $obj_id;
557  $obj_id = (isset($attribs["tst"])) ? $attribs["tst"] : $obj_id;
558  $obj_id = (isset($attribs["svy"])) ? $attribs["svy"] : $obj_id;
559  $obj_id = (isset($attribs["obj"])) ? $attribs["obj"] : $obj_id;
560  $obj_id = (isset($attribs["webr"])) ? $attribs["webr"] : $obj_id;
561  $obj_id = (isset($attribs["fold"])) ? $attribs["fold"] : $obj_id;
562  $obj_id = (isset($attribs["cat"])) ? $attribs["cat"] : $obj_id;
563  $obj_id = (isset($attribs["crs"])) ? $attribs["crs"] : $obj_id;
564  $obj_id = (isset($attribs["grp"])) ? $attribs["grp"] : $obj_id;
565  $obj_id = (isset($attribs["file"])) ? $attribs["file"] : $obj_id;
566  $obj_id = (isset($attribs["sahs"])) ? $attribs["sahs"] : $obj_id;
567  $obj_id = (isset($attribs["mcst"])) ? $attribs["mcst"] : $obj_id;
568  //$obj_id = (isset($attribs["obj"])) ? $attribs["obj"] : $obj_id;
569 
570  if ($inst_str == "")
571  {
572  $a_text = eregi_replace("\[".$found[1]."\]",
573  "<IntLink Target=\"il_".$inst_str."_obj_".$obj_id."\" Type=\"RepositoryItem\">", $a_text);
574  }
575  else
576  {
577  $a_text = eregi_replace("\[".$found[1]."\]",
578  "<IntLink Target=\"il_".$inst_str."_".$found[6]."_".$obj_id."\" Type=\"RepositoryItem\">", $a_text);
579  }
580  }
581  else
582  {
583  $a_text = eregi_replace("\[".$found[1]."\]", "[error: iln".$found[1]."]",$a_text);
584  }
585  }
586  while (eregi("\[(iln$ws((inst$ws=$ws([\"0-9])*)?".$ws."media$ws=$ws([\"0-9])*)$ws)/\]", $a_text, $found))
587  {
588  $attribs = ilUtil::attribsToArray($found[2]);
589  $inst_str = $attribs["inst"];
590  $a_text = eregi_replace("\[".$found[1]."/\]",
591  "<IntLink Target=\"il_".$inst_str."_mob_".$attribs[media]."\" Type=\"MediaObject\"/>", $a_text);
592  }
593  $a_text = eregi_replace("\[\/iln\]","</IntLink>",$a_text);
594 
595  // external link
596  $ws= "[ \t\r\f\v\n]*";
597  while (eregi("\[(xln$ws(url$ws=$ws\"([^\"])*\")$ws(target$ws=$ws(\"(Glossary|FAQ|Media)\"))?$ws)\]", $a_text, $found))
598  {
599  $attribs = ilUtil::attribsToArray($found[2]);
600  if (isset($attribs["url"]))
601  {
602  $a2 = ilUtil::attribsToArray($found[4]);
603  $tstr = "";
604  if (in_array($a2["target"], array("FAQ", "Glossary", "Media")))
605  {
606  $tstr = ' TargetFrame="'.$a2["target"].'"';
607  }
608  $a_text = str_replace("[".$found[1]."]", "<ExtLink Href=\"".$attribs["url"]."\"$tstr>", $a_text);
609  }
610  else
611  {
612  $a_text = str_replace("[".$found[1]."]", "[error: xln".$found[1]."]",$a_text);
613  }
614  }
615  $a_text = eregi_replace("\[\/xln\]","</ExtLink>",$a_text);
616 
617  // anchor
618  $ws= "[ \t\r\f\v\n]*";
619  while (eregi("\[(anc$ws(name$ws=$ws\"([^\"])*\")$ws)\]", $a_text, $found))
620  {
621  $attribs = ilUtil::attribsToArray($found[2]);
622  $a_text = str_replace("[".$found[1]."]", "<Anchor Name=\"".$attribs["name"]."\">", $a_text);
623  }
624  $a_text = eregi_replace("\[\/anc\]","</Anchor>",$a_text);
625 
626  return $a_text;
627  }
628 
636  function input2xmlReplaceLists($a_text)
637  {
638  $rows = explode("<br />", $a_text."<br />");
639 //var_dump($a_text);
640 
641  $old_level = 0;
642 
643  $text = "";
644 
645  foreach ($rows as $row)
646  {
647  $level = 0;
648  if (str_replace("#", "*", substr($row, 0, 3)) == "***")
649  {
650  $level = 3;
651  }
652  else if (str_replace("#", "*", substr($row, 0, 2)) == "**")
653  {
654  $level = 2;
655  }
656  else if (str_replace("#", "*", substr($row, 0, 1)) == "*")
657  {
658  $level = 1;
659  }
660 
661  // end previous line
662  if ($level < $old_level)
663  {
664  for ($i = $old_level; $i > $level; $i--)
665  {
666  $text.= "</SimpleListItem></".$clist[$i].">";
667  }
668  if ($level > 0)
669  {
670  $text.= "</SimpleListItem>";
671  }
672  }
673  else if ($old_level > 0 && $level > 0 && ($level == $old_level))
674  {
675  $text.= "</SimpleListItem>";
676  }
677  else if (($level == $old_level) && $text != "")
678  {
679  $text.= "<br />";
680  }
681 
682  // start next line
683  if ($level > $old_level)
684  {
685  for($i = $old_level + 1; $i <= $level; $i++)
686  {
687  if (substr($row, $i - 1, 1) == "*")
688  {
689  $clist[$i] = "SimpleBulletList";
690  }
691  else
692  {
693  $clist[$i] = "SimpleNumberedList";
694  }
695  $text.= "<".$clist[$i]."><SimpleListItem>";
696  }
697  }
698  else if ($old_level > 0 && $level > 0)
699  {
700  $text.= "<SimpleListItem>";
701  }
702  $text.= substr($row, $level);
703 
704  $old_level = $level;
705  }
706 
707  // remove "<br />" at the end
708  if (substr($text, strlen($text) - 6) == "<br />")
709  {
710  $text = substr($text, 0, strlen($text) - 6);
711  }
712 
713  return $text;
714  }
715 
723  static function xml2outputReplaceLists($a_text)
724  {
725  $segments = ilPCParagraph::segmentString($a_text, array("<SimpleBulletList>", "</SimpleBulletList>",
726  "</SimpleListItem>", "<SimpleListItem>", "<SimpleListItem/>", "<SimpleNumberedList>", "</SimpleNumberedList>"));
727 
728  $current_list = array();
729  $text = "";
730  for ($i=0; $i<= count($segments); $i++)
731  {
732  if ($segments[$i] == "<SimpleBulletList>")
733  {
734  if (count($current_list) == 0)
735  {
736  $list_start = true;
737  }
738  array_push($current_list, "*");
739  $li = false;
740  }
741  else if ($segments[$i] == "<SimpleNumberedList>")
742  {
743  if (count($current_list) == 0)
744  {
745  $list_start = true;
746  }
747  array_push($current_list, "#");
748  $li = false;
749  }
750  else if ($segments[$i] == "</SimpleBulletList>")
751  {
752  array_pop($current_list);
753  $li = false;
754  }
755  else if ($segments[$i] == "</SimpleNumberedList>")
756  {
757  array_pop($current_list);
758  $li = false;
759  }
760  else if ($segments[$i] == "<SimpleListItem>")
761  {
762  $li = true;
763  }
764  else if ($segments[$i] == "</SimpleListItem>")
765  {
766  $li = false;
767  }
768  else if ($segments[$i] == "<SimpleListItem/>")
769  {
770  if ($list_start)
771  {
772  $text.= "<br />";
773  $list_start = false;
774  }
775  foreach($current_list as $list)
776  {
777  $text.= $list;
778  }
779  $text.= "<br />";
780  $li = false;
781  }
782  else
783  {
784  if ($li)
785  {
786  if ($list_start)
787  {
788  $text.= "<br />";
789  $list_start = false;
790  }
791  foreach($current_list as $list)
792  {
793  $text.= $list;
794  }
795  }
796  $text.= $segments[$i];
797  if ($li)
798  {
799  $text.= "<br />";
800  }
801  $li = false;
802  }
803  }
804 
805  // remove trailing <br />, if text ends with list
806  if ($segments[count($segments) - 1] == "</SimpleBulletList>" ||
807  $segments[count($segments) - 1] == "</SimpleNumberedList>" &&
808  substr($text, strlen($text) - 6) == "<br />")
809  {
810  $text = substr($text, 0, strlen($text) - 6);
811  }
812 
813  return $text;
814  }
815 
819  static function segmentString($a_haystack, $a_needles)
820  {
821  $segments = array();
822 
823  $nothing_found = false;
824  while (!$nothing_found)
825  {
826  $nothing_found = true;
827  $found = -1;
828  foreach($a_needles as $needle)
829  {
830  $pos = stripos($a_haystack, $needle);
831  if (is_int($pos) && ($pos < $found || $found == -1))
832  {
833  $found = $pos;
834  $found_needle = $needle;
835  $nothing_found = false;
836  }
837  }
838  if ($found > 0)
839  {
840  $segments[] = substr($a_haystack, 0, $found);
841  $a_haystack = substr($a_haystack, $found);
842  }
843  if ($found > -1)
844  {
845  $segments[] = substr($a_haystack, 0, strlen($found_needle));
846  $a_haystack = substr($a_haystack, strlen($found_needle));
847  }
848  }
849  if ($a_haystack != "")
850  {
851  $segments[] = $a_haystack;
852  }
853 
854  return $segments;
855  }
856 
864  static function xml2output($a_text)
865  {
866  // note: the order of the processing steps is crucial
867  // and should be the same as in input2xml() in REVERSE order!
868 
869  // xml to bb code
870  $any = "[^>]*";
871  $a_text = eregi_replace("<Comment[^>]*>","[com]",$a_text);
872  $a_text = eregi_replace("</Comment>","[/com]",$a_text);
873  $a_text = eregi_replace("<Comment/>","[com][/com]",$a_text);
874  $a_text = eregi_replace("<Emph>","[emp]",$a_text);
875  $a_text = eregi_replace("</Emph>","[/emp]",$a_text);
876  $a_text = eregi_replace("<Emph/>","[emp][/emp]",$a_text);
877  $a_text = eregi_replace("<Strong>","[str]",$a_text);
878  $a_text = eregi_replace("</Strong>","[/str]",$a_text);
879  $a_text = eregi_replace("<Strong/>","[str][/str]",$a_text);
880  $a_text = eregi_replace("<Footnote[^>]*>","[fn]",$a_text);
881  $a_text = eregi_replace("</Footnote>","[/fn]",$a_text);
882  $a_text = eregi_replace("<Footnote/>","[fn][/fn]",$a_text);
883  $a_text = eregi_replace("<Quotation[^>]*>","[quot]",$a_text);
884  $a_text = eregi_replace("</Quotation>","[/quot]",$a_text);
885  $a_text = eregi_replace("<Quotation/>","[quot][/quot]",$a_text);
886  $a_text = eregi_replace("<Code[^>]*>","[code]",$a_text);
887  $a_text = eregi_replace("</Code>","[/code]",$a_text);
888  $a_text = eregi_replace("<Code/>","[code][/code]",$a_text);
889  $a_text = eregi_replace("<Accent>","[acc]",$a_text);
890  $a_text = eregi_replace("</Accent>","[/acc]",$a_text);
891  $a_text = eregi_replace("<Important>","[imp]",$a_text);
892  $a_text = eregi_replace("</Important>","[/imp]",$a_text);
893  $a_text = eregi_replace("<Keyw>","[kw]",$a_text);
894  $a_text = eregi_replace("</Keyw>","[/kw]",$a_text);
895 
896  // replace lists
897  $a_text = ilPCParagraph::xml2outputReplaceLists($a_text);
898 
899  // internal links
900  while (eregi("<IntLink($any)>", $a_text, $found))
901  {
902  $found[0];
903  $attribs = ilUtil::attribsToArray($found[1]);
904  $target = explode("_", $attribs["Target"]);
905  $target_id = $target[count($target) - 1];
906  $inst_str = (!is_int(strpos($attribs["Target"], "__")))
907  ? $inst_str = "inst=\"".$target[1]."\" "
908  : $inst_str = "";
909  switch($attribs["Type"])
910  {
911  case "PageObject":
912  $tframestr = (!empty($attribs["TargetFrame"]))
913  ? " target=\"".$attribs["TargetFrame"]."\""
914  : "";
915  $ancstr = (!empty($attribs["Anchor"]))
916  ? ' anchor="'.$attribs["Anchor"].'"'
917  : "";
918  $a_text = eregi_replace("<IntLink".$found[1].">","[iln ".$inst_str."page=\"".$target_id."\"$tframestr$ancstr]",$a_text);
919  break;
920 
921  case "StructureObject":
922  $tframestr = (!empty($attribs["TargetFrame"]))
923  ? " target=\"".$attribs["TargetFrame"]."\""
924  : "";
925  $a_text = eregi_replace("<IntLink".$found[1].">","[iln ".$inst_str."chap=\"".$target_id."\"$tframestr]",$a_text);
926  break;
927 
928  case "GlossaryItem":
929  $tframestr = (empty($attribs["TargetFrame"]) || $attribs["TargetFrame"] == "Glossary")
930  ? ""
931  : " target=\"".$attribs["TargetFrame"]."\"";
932  $a_text = eregi_replace("<IntLink".$found[1].">","[iln ".$inst_str."term=\"".$target_id."\"".$tframestr."]",$a_text);
933  break;
934 
935  case "MediaObject":
936  if (empty($attribs["TargetFrame"]))
937  {
938  $a_text = eregi_replace("<IntLink".$found[1].">","[iln ".$inst_str."media=\"".$target_id."\"/]",$a_text);
939  }
940  else
941  {
942  $a_text = eregi_replace("<IntLink".$found[1].">","[iln media=\"".$target_id."\"".
943  " target=\"".$attribs["TargetFrame"]."\"]",$a_text);
944  }
945  break;
946 
947  case "RepositoryItem":
948  if ($inst_str == "")
949  {
951  }
952  else
953  {
954  $rtype = $target[count($target) - 2];
955  $target_type = $rtype;
956  }
957  $a_text = eregi_replace("<IntLink".$found[1].">","[iln ".$inst_str."$target_type=\"".$target_id."\"".$tframestr."]",$a_text);
958  break;
959 
960  default:
961  $a_text = eregi_replace("<IntLink".$found[1].">","[iln]",$a_text);
962  break;
963  }
964  }
965  $a_text = eregi_replace("</IntLink>","[/iln]",$a_text);
966 
967  // external links
968  while (eregi("<ExtLink($any)>", $a_text, $found))
969  {
970  $found[0];
971  $attribs = ilUtil::attribsToArray($found[1]);
972  //$found[1] = str_replace("?", "\?", $found[1]);
973  $tstr = "";
974  if (in_array($attribs["TargetFrame"], array("FAQ", "Glossary", "Media")))
975  {
976  $tstr = ' target="'.$attribs["TargetFrame"].'"';
977  }
978  $a_text = str_replace("<ExtLink".$found[1].">","[xln url=\"".$attribs["Href"]."\"$tstr]",$a_text);
979  }
980  $a_text = eregi_replace("</ExtLink>","[/xln]",$a_text);
981 
982  // anchor
983  while (eregi("<Anchor($any)>", $a_text, $found))
984  {
985  $found[0];
986  $attribs = ilUtil::attribsToArray($found[1]);
987  $a_text = str_replace("<Anchor".$found[1].">","[anc name=\"".$attribs["Name"]."\"]",$a_text);
988  }
989  $a_text = eregi_replace("</Anchor>","[/anc]",$a_text);
990 
991 
992  // br to linefeed
993  $a_text = str_replace("<br />", "\n", $a_text);
994  $a_text = str_replace("<br/>", "\n", $a_text);
995 
996  // prevent curly brackets from being swallowed up by template engine
997  $a_text = str_replace("{", "&#123;", $a_text);
998  $a_text = str_replace("}", "&#125;", $a_text);
999 
1000  // unmask html
1001  $a_text = str_replace("&lt;", "<", $a_text);
1002  $a_text = str_replace("&gt;", ">",$a_text);
1003 
1004  // this is needed to allow html like <tag attribute="value">... in paragraphs
1005  $a_text = str_replace("&quot;", "\"", $a_text);
1006 
1007  // make ampersands in (enabled) html attributes work
1008  // e.g. <a href="foo.php?n=4&t=5">hhh</a>
1009  $a_text = str_replace("&amp;", "&", $a_text);
1010 
1011  // make &gt; and $lt; work to allow (disabled) html descriptions
1012  $a_text = str_replace("&lt;", "&amp;lt;", $a_text);
1013  $a_text = str_replace("&gt;", "&amp;gt;", $a_text);
1014 
1015  return $a_text;
1016  //return str_replace("<br />", chr(13).chr(10), $a_text);
1017  }
1018 
1025  function autoSplit($a_text)
1026  {
1027  $a_text = str_replace ("=<SimpleBulletList>", "=<br /><SimpleBulletList>", $a_text);
1028  $a_text = str_replace ("=<SimpleNumberedList>", "=<br /><SimpleNumberedList>", $a_text);
1029  $a_text = str_replace ("</SimpleBulletList>=", "</SimpleBulletList><br />=", $a_text);
1030  $a_text = str_replace ("</SimpleNumberedList>=", "</SimpleNumberedList><br />=", $a_text);
1031  $a_text = "<br />".$a_text."<br />"; // add preceding and trailing br
1032 
1033  $chunks = array();
1034  $c_text = $a_text;
1035 //echo "0";
1036  while ($c_text != "")
1037  {
1038 //var_dump($c_text); flush();
1039 //echo "1";
1040  $s1 = strpos($c_text, "<br />=");
1041  if (is_int($s1))
1042  {
1043 //echo "2";
1044  $s2 = strpos($c_text, "<br />==");
1045  if (is_int($s2) && $s2 <= $s1)
1046  {
1047 //echo "3";
1048  $s3 = strpos($c_text, "<br />===");
1049  if (is_int($s3) && $s3 <= $s2) // possible level three header
1050  {
1051 //echo "4";
1052  $n = strpos($c_text, "<br />", $s3 + 1);
1053  if ($n > ($s3+9) && substr($c_text, $n-3, 9) == "===<br />")
1054  {
1055 //echo "5";
1056  // found level three header
1057  if ($s3 > 0 || $head != "")
1058  {
1059 //echo "6";
1060  $chunks[] = array("level" => 0,
1061  "text" => $this->removeTrailingBr($head.substr($c_text, 0, $s3)));
1062  $head = "";
1063  }
1064  $chunks[] = array("level" => 3,
1065  "text" => trim(substr($c_text, $s3+9, $n-$s3-12)));
1066  $c_text = $this->handleNextBr(substr($c_text, $n+6));
1067  }
1068  else
1069  {
1070 //echo "7";
1071  $head.= substr($c_text, 0, $n);
1072  $c_text = substr($c_text, $n);
1073  }
1074  }
1075  else // possible level two header
1076  {
1077 //echo "8";
1078  $n = strpos($c_text, "<br />", $s2 + 1);
1079  if ($n > ($s2+8) && substr($c_text, $n-2, 8) == "==<br />")
1080  {
1081 //echo "9";
1082  // found level two header
1083  if ($s2 > 0 || $head != "")
1084  {
1085 //echo "A";
1086  $chunks[] = array("level" => 0,
1087  "text" => $this->removeTrailingBr($head.substr($c_text, 0, $s2)));
1088  $head = "";
1089  }
1090  $chunks[] = array("level" => 2, "text" => trim(substr($c_text, $s2+8, $n-$s2-10)));
1091  $c_text = $this->handleNextBr(substr($c_text, $n+6));
1092  }
1093  else
1094  {
1095 //echo "B";
1096  $head.= substr($c_text, 0, $n);
1097  $c_text = substr($c_text, $n);
1098  }
1099  }
1100  }
1101  else // possible level one header
1102  {
1103 //echo "C";
1104  $n = strpos($c_text, "<br />", $s1 + 1);
1105  if ($n > ($s1+7) && substr($c_text, $n-1, 7) == "=<br />")
1106  {
1107 //echo "D";
1108  // found level one header
1109  if ($s1 > 0 || $head != "")
1110  {
1111 //echo "E";
1112  $chunks[] = array("level" => 0,
1113  "text" => $this->removeTrailingBr($head.substr($c_text, 0, $s1)));
1114  $head = "";
1115  }
1116  $chunks[] = array("level" => 1, "text" => trim(substr($c_text, $s1+7, $n-$s1-8)));
1117  $c_text = $this->handleNextBr(substr($c_text, $n+6));
1118 //echo "<br>ctext:".htmlentities($c_text)."<br>";
1119  }
1120  else
1121  {
1122  $head.= substr($c_text, 0, $n);
1123  $c_text = substr($c_text, $n);
1124 //echo "<br>head:".$head."c_text:".$c_text."<br>";
1125  }
1126  }
1127  }
1128  else
1129  {
1130 //echo "G";
1131  $chunks[] = array("level" => 0, "text" => $head.$c_text);
1132  $head = "";
1133  $c_text = "";
1134  }
1135  }
1136  if (count($chunks) == 0)
1137  {
1138  $chunks[] = array("level" => 0, "text" => "");
1139  }
1140 
1141 
1142  // remove preceding br
1143  if (substr($chunks[0]["text"], 0, 6) == "<br />")
1144  {
1145  $chunks[0]["text"] = substr($chunks[0]["text"], 6);
1146  }
1147 
1148  // remove trailing br
1149  if (substr($chunks[count($chunks) - 1]["text"],
1150  strlen($chunks[count($chunks) - 1]["text"]) - 6, 6) == "<br />")
1151  {
1152  $chunks[count($chunks) - 1]["text"] =
1153  substr($chunks[count($chunks) - 1]["text"], 0, strlen($chunks[count($chunks) - 1]["text"]) - 6);
1154  if ($chunks[count($chunks) - 1]["text"] == "")
1155  {
1156  unset($chunks[count($chunks) - 1]);
1157  }
1158  }
1159  return $chunks;
1160  }
1161 
1165  function handleNextBr($a_str)
1166  {
1167  // do not remove, if next line starts with a "=", otherwise two
1168  // headlines in a row will not be recognized
1169  if (substr($a_str, 0, 6) == "<br />" && substr($a_str, 6, 1) != "=")
1170  {
1171  $a_str = substr($a_str, 6);
1172  }
1173  else
1174  {
1175  // if next line starts with a "=" we need to reinsert the <br />
1176  // otherwise it will not be recognized
1177  if (substr($a_str, 0, 1) == "=")
1178  {
1179  $a_str = "<br />".$a_str;
1180  }
1181  }
1182  return $a_str;
1183  }
1184 
1188  function removeTrailingBr($a_str)
1189  {
1190  if (substr($a_str, strlen($a_str) - 6) == "<br />")
1191  {
1192  $a_str = substr($a_str, 0, strlen($a_str) - 6);
1193  }
1194  return $a_str;
1195  }
1196 
1200  function getType()
1201  {
1202  return ($this->getCharacteristic() == "Code")?"src":parent::getType();
1203  }
1204 
1205 }
1206 ?>