4 require_once(
"./Services/COPage/classes/class.ilPCParagraph.php");
5 require_once(
"./Services/COPage/classes/class.ilPageContentGUI.php");
28 public function __construct($a_pg_obj, $a_content_obj, $a_hier_id, $a_pc_id =
"")
32 $this->
user = $DIC->user();
33 $this->ctrl = $DIC->ctrl();
34 $this->lng = $DIC->language();
48 $lng = $DIC->language();
50 return array(
"Standard" =>
$lng->txt(
"cont_standard"),
51 "Headline1" =>
$lng->txt(
"cont_Headline1"),
52 "Headline2" =>
$lng->txt(
"cont_Headline2"),
53 "Headline3" =>
$lng->txt(
"cont_Headline3"),
54 "Book" =>
$lng->txt(
"cont_Book"),
55 "Numbers" =>
$lng->txt(
"cont_Numbers"),
56 "Verse" =>
$lng->txt(
"cont_Verse"),
57 "List" =>
$lng->txt(
"cont_List"),
58 "TableContent" =>
$lng->txt(
"cont_TableContent")
69 $lng = $DIC->language();
70 return [
"Mnemonic",
"Attention"];
71 return array(
"Mnemonic" =>
$lng->txt(
"cont_Mnemonic"),
72 "Attention" =>
$lng->txt(
"cont_Attention")
85 if ($a_style_id > 0 &&
87 include_once(
"./Services/Style/Content/classes/class.ilObjStyleSheet.php");
89 $types = array(
"heading1",
"heading2",
"heading3",
"text_block");
91 foreach ($types as $t) {
92 $chars = array_merge($chars, $style->getCharacteristics($t));
95 foreach ($chars as $char) {
96 if ($st_chars[$char] !=
"") {
97 $new_chars[$char] = $st_chars[$char];
99 $new_chars[$char] = $char;
120 if ($a_style_id > 0 &&
123 $types = array(
"text_inline");
124 foreach ($types as $t) {
125 $chars = array_merge($chars, $style->getCharacteristics($t,
false, $a_include_core));
128 return self::_getStandardTextCharacteristics();
141 $next_class = $this->ctrl->getNextClass($this);
144 array(
"text_block",
"heading1",
"heading2",
"heading3")
148 $cmd = $this->ctrl->getCmd();
150 $this->log->debug(
"ilPCParagraphGUI: executeCommand " . $cmd);
152 switch ($next_class) {
154 $ret = $this->$cmd();
164 public function edit($a_insert =
false)
169 $tpl =
new ilTemplate(
"tpl.paragraph_edit.html",
true,
true,
"Services/COPage");
176 $tpl->setCurrentBlock(
"commands");
177 $tpl->setVariable(
"BTN_NAME",
"create_par");
178 $tpl->setVariable(
"BTN_TEXT", $this->lng->txt(
"save"));
179 $tpl->setVariable(
"BTN_CANCEL",
"cancelCreate");
180 $tpl->setVariable(
"TXT_CANCEL", $this->lng->txt(
"cancel"));
181 $tpl->parseCurrentBlock();
188 $tpl->setVariable(
"TXT_ACTION", $this->lng->txt(
"cont_insert_par"));
190 $tpl->setCurrentBlock(
"commands");
191 $tpl->setVariable(
"BTN_NAME",
"update");
192 $tpl->setVariable(
"BTN_TEXT", $this->lng->txt(
"save"));
193 $tpl->setVariable(
"BTN_CANCEL",
"cancelUpdate");
194 $tpl->setVariable(
"TXT_CANCEL", $this->lng->txt(
"cancel"));
195 $tpl->parseCurrentBlock();
202 $tpl->setVariable(
"TXT_ACTION", $this->lng->txt(
"cont_edit_par"));
208 if (key(
$_POST[
"cmd"]) ==
"update") {
209 $s_lang =
$_POST[
"par_language"];
211 $s_lang = $this->content_obj->getLanguage();
214 if (key(
$_POST[
"cmd"]) ==
"create_par") {
215 $s_lang =
$_POST[
"par_language"];
220 $s_lang =
$ilUser->getLanguage();
229 $tpl->setVariable(
"FORMACTION", $this->ctrl->getFormAction($this));
231 $tpl->setVariable(
"PAR_TA_NAME",
"par_content");
233 $this->tpl->addJavascript(
"./Services/COPage/phpBB/3_0_5/editor.js");
234 $this->tpl->addJavascript(
"./Services/COPage/js/paragraph_editing.js");
239 $tpl->setVariable(
"TXT_LANGUAGE", $this->lng->txt(
"language"));
240 $tpl->setVariable(
"TXT_ANCHOR", $this->lng->txt(
"cont_anchor"));
242 require_once(
"Services/MetaData/classes/class.ilMDLanguageItem.php");
245 $tpl->setVariable(
"SELECT_LANGUAGE", $select_lang);
247 $tpl->setVariable(
"TXT_CHARACTERISTIC", $this->lng->txt(
"cont_characteristic"));
252 if (key(
$_POST[
"cmd"]) ==
"update" || key(
$_POST[
"cmd"]) ==
"create_par") {
255 $s_text = str_replace(
"{",
"{", $s_text);
256 $s_text = str_replace(
"}",
"}", $s_text);
257 } elseif (!$a_insert) {
258 $s_text = $this->content_obj->xml2output($this->content_obj->getText());
261 $tpl->setVariable(
"PAR_TA_CONTENT", $s_text);
263 $tpl->parseCurrentBlock();
265 $this->tpl->setContent(
$tpl->get());
279 if (key(
$_POST[
"cmd"]) ==
"update") {
280 $s_char =
$_POST[
"par_characteristic"];
282 $s_char = $this->content_obj->getCharacteristic();
284 $s_char =
"Standard";
288 if (key(
$_POST[
"cmd"]) ==
"create_par") {
289 $s_char =
$_POST[
"par_characteristic"];
291 $s_char =
"Standard";
294 $cont_obj = $this->pg_obj->getContentObject($this->
getHierId());
295 if (is_object($cont_obj)) {
296 if ($cont_obj->getType() ==
"li" ||
297 ($cont_obj->getType() ==
"par" && $cont_obj->getCharacteristic() ==
"List")) {
301 if ($cont_obj->getType() ==
"td" ||
302 ($cont_obj->getType() ==
"par" && $cont_obj->getCharacteristic() ==
"TableContent")) {
303 $s_char =
"TableContent";
316 $s_text = $this->content_obj->getText();
317 $this->log->debug(
"step 1: " . substr($s_text, 0, 1000));
320 $s_text = $this->content_obj->xml2output($s_text,
true,
false);
321 $this->log->debug(
"step 2: " . substr($s_text, 0, 1000));
326 $this->log->debug(
"step 3: " . substr($s_text, 0, 1000));
329 $ids =
"###" . $this->content_obj->readHierId() .
":" . $this->content_obj->readPCId() .
"###" .
332 $this->log->debug(
"step 4: " . substr($ids . $s_text, 0, 1000));
341 echo $this->content_obj->getParagraphSequenceContent($this->pg_obj);
351 $s_text = str_replace(
352 array(
"<SimpleBulletList>",
"</SimpleBulletList>"),
353 array(
"<ul class='ilc_list_u_BulletedList'>",
"</ul>"),
356 $s_text = str_replace(
357 array(
"<SimpleNumberedList>",
"</SimpleNumberedList>"),
358 array(
"<ol class='ilc_list_o_NumberedList'>",
"</ol>"),
361 $s_text = str_replace(
362 array(
"<SimpleListItem>",
"</SimpleListItem>"),
363 array(
"<li class='ilc_list_item_StandardListItem'>",
"</li>"),
366 $s_text = str_replace(
367 array(
"<SimpleListItem/>"),
368 array(
"<li class='ilc_list_item_StandardListItem'></li>"),
377 include_once(
"./Services/COPage/classes/class.ilPageContentGUI.php");
379 if (!in_array($bb, array(
"code",
"tex",
"fn",
"xln",
"sub",
"sup"))) {
380 $s_text = str_replace(
382 '<span class="ilc_text_inline_' . $cl .
'">',
385 $s_text = str_replace(
394 $ws =
"[ \t\r\f\v\n]*";
395 while (preg_match(
"~\[(marked$ws(class$ws=$ws\"([^\"])*\")$ws)\]~i", $s_text, $found)) {
397 if (isset($attribs[
"class"])) {
398 $s_text = str_replace(
"[" . $found[1] .
"]",
"<span class=\"ilc_text_inline_" . $attribs[
"class"] .
"\">", $s_text);
400 $s_text = str_replace(
"[" . $found[1] .
"]",
"[error:marked" . $found[1] .
"]", $s_text);
403 $s_text = preg_replace(
'~\[\/marked\]~i',
"</span>", $s_text);
407 $s_text = str_replace(
408 array(
"[code]",
"[/code]"),
409 array(
"<code>",
"</code>"),
414 $s_text = str_replace(
415 array(
"[sup]",
"[/sup]"),
416 array(
'<sup class="ilc_sup_Sup">',
"</sup>"),
421 $s_text = str_replace(
422 array(
"[sub]",
"[/sub]"),
423 array(
'<sub class="ilc_sub_Sub">',
"</sub>"),
441 $this->log->debug(
"start");
443 $this->updated = $this->content_obj->saveJS(
445 $_POST[
"ajaxform_content"],
450 $this->log->debug(
"ilPCParagraphGUI, saveJS: got updated value " . $this->updated);
452 if (
$_POST[
"quick_save"]) {
453 if ($this->updated ===
true) {
454 $a_pc_id_str = $this->content_obj->getLastSavedPcId($this->pg_obj,
true);
455 $this->log->debug(
"ilPCParagraphGUI, saveJS: echoing pc_id_str " . $a_pc_id_str .
" (and exit)");
461 if ($this->updated !==
true && is_array($this->updated)) {
465 $a_pc_id_str = $this->content_obj->getLastSavedPcId($this->pg_obj,
true);
467 $ilCtrl->setParameterByClass(
468 $ilCtrl->getReturnClass($this),
470 urlencode($a_pc_id_str)
472 $this->log->debug(
"ilPCParagraphGUI, saveJS: redirecting to edit command of " . $ilCtrl->getReturnClass($this) .
".");
473 $ilCtrl->redirectByClass($ilCtrl->getReturnClass($this),
"edit",
"",
true);
484 foreach ($a_err as $err) {
485 $err_str .= $err[1] .
"<br />";
488 $this->log->debug(
"ilPCParagraphGUI, outputError() and exit: " . substr($err_str, 0, 100));
498 $this->log->debug(
"ilPCParagraphGUI, cancel(): return to parent: jump" . $this->hier_id);
499 $this->ctrl->returnToParent($this,
"jump" . $this->hier_id);
511 if ($chars[$a_seleted_value] ==
"" && ($a_seleted_value !=
"")) {
512 $chars = array_merge(
513 array($a_seleted_value => $a_seleted_value),
518 foreach ($chars as $char => $char_lang) {
519 $a_tpl->setCurrentBlock(
"characteristic_cell");
522 '<div class="ilc_text_block_' . $char .
'" style="margin-top:2px; margin-bottom:2px; position:static;">' . $char_lang .
"</div>" 524 $a_tpl->setVariable(
"CHAR_VALUE", $char);
525 if ($char == $a_seleted_value) {
528 ' checked="checked" ' 531 $a_tpl->parseCurrentBlock();
532 if (((
$i + 1) % 3) == 0) {
533 $a_tpl->touchBlock(
"characteristic_row");
537 $a_tpl->touchBlock(
"characteristic_table");
548 $a_tpl->setVariable(
"ADV_SEL_STYLE", self::getStyleSelector(
559 include_once(
"./Services/UIComponent/AdvancedSelectionList/classes/class.ilAdvancedSelectionListGUI.php");
561 $selection->setPullRight(
false);
562 $selection->setFormSelectMode(
563 "par_characteristic",
574 $selection->setId(
"style_selection");
575 $selection->setSelectionHeaderClass(
"ilEditSubmit ilTinyMenuDropDown");
577 $selection->setSelectedValue($a_selected);
578 $selection->setUseImages(
false);
580 if ($a_use_callback) {
581 $selection->setSelectCallback(
"ilCOPage.setParagraphClass");
585 $title_char = ($chars[$a_selected] !=
"")
586 ? $chars[$a_selected]
588 $selection->setListTitle($title_char);
590 if ($chars[$a_seleted] ==
"" && ($a_seleted !=
"")) {
591 $chars = array_merge(
592 array($a_seleted => $a_seleted),
597 foreach ($chars as $char => $char_lang) {
601 case "Headline1": $t =
"heading1"; $tag =
"h1";
break;
602 case "Headline2": $t =
"heading2"; $tag =
"h2";
break;
603 case "Headline3": $t =
"heading3"; $tag =
"h3";
break;
605 $html =
'<div class="ilCOPgEditStyleSelectionItem"><' . $tag .
' class="ilc_' . $t .
'_' . $char .
'" style="' . self::$style_selector_reset .
'">' . $char_lang .
"</" . $tag .
"></div>";
616 return $selection->getHTML();
626 $lng = $DIC->language();
628 include_once(
"./Services/UIComponent/AdvancedSelectionList/classes/class.ilAdvancedSelectionListGUI.php");
630 $selection->setPullRight(
false);
631 $selection->setFormSelectMode(
632 "char_characteristic",
643 $selection->setId(
"char_style_selection");
644 $selection->setSelectionHeaderClass(
"ilEditSubmit");
647 $selection->setUseImages(
false);
649 if (is_string($a_use_callback)) {
650 $selection->setSelectCallback($a_use_callback);
651 } elseif ($a_use_callback ===
true) {
652 $selection->setSelectCallback(
"ilCOPage.setCharacterClass");
659 $selection->setListTitle(
" <i>A</i>");
668 "Comment" => array(
"code" =>
"com",
"txt" =>
$lng->txt(
"cont_char_style_com")),
669 "Quotation" => array(
"code" =>
"quot",
"txt" =>
$lng->txt(
"cont_char_style_quot")),
670 "Accent" => array(
"code" =>
"acc",
"txt" =>
$lng->txt(
"cont_char_style_acc")),
671 "Code" => array(
"code" =>
"code",
"txt" =>
$lng->txt(
"cont_char_style_code"))
675 if (!isset($chars[$c])) {
676 $chars[
$c] = array(
"code" =>
"",
"txt" => $c);
680 foreach ($chars as $key => $char) {
683 "active_" . $char[
"code"],
689 case "Code": $tag =
"code";
break;
691 $html =
'<' . $tag .
' class="ilc_' . $t .
'_' . $key .
'" style="font-size:90%; margin-top:2px; margin-bottom:2px; position:static;">' . $char[
"txt"] .
"</" . $tag .
">";
697 $html =
'<a class="nostyle" style="display:block;" href="#" onclick="return false;">' . $html .
"</a>";
709 return $selection->getHTML();
717 include_once(
"./Services/Style/Content/classes/class.ilObjStyleSheet.php");
719 if ($this->pg_obj->getParentType() ==
"gdf" ||
720 $this->pg_obj->getParentType() ==
"lm") {
721 if ($this->pg_obj->getParentType() !=
"gdf") {
729 if ($this->pg_obj->getParentType() !=
"sahs") {
740 $this->log->debug(
"ilPCParagraphGUI, saveJS: got updated value " . $this->updated);
741 return $this->
edit(
true);
749 $this->log->debug(
"ilPCParagraphGUI, update(): start");
752 $this->content_obj->setLanguage(
$_POST[
"par_language"]);
753 $this->content_obj->setCharacteristic(
$_POST[
"par_characteristic"]);
755 $this->updated = $this->content_obj->setText(
756 $this->content_obj->input2xml(
758 $_POST[
"usedwsiwygeditor"]
762 if ($this->updated !==
true) {
767 $this->updated = $this->content_obj->updatePage($this->pg_obj);
770 if ($this->updated ===
true) {
771 $this->log->debug(
"ilPCParagraphGUI, update(): return to parent: jump" . $this->hier_id);
772 $this->ctrl->returnToParent($this,
"jump" . $this->hier_id);
774 $this->log->debug(
"ilPCParagraphGUI, update(): call edit.");
785 $this->log->debug(
"ilPCParagraphGUI, create(): start.");
787 if (
$_POST[
"ajaxform_hier_id"] !=
"") {
793 $this->content_obj->create($this->pg_obj, $this->hier_id, $this->pc_id);
795 $this->content_obj->setLanguage(
$_POST[
"par_language"]);
797 $this->content_obj->setCharacteristic(
$_POST[
"par_characteristic"]);
799 $this->updated = $this->content_obj->setText(
800 $this->content_obj->input2xml(
802 $_POST[
"usedwsiwygeditor"]
807 if ($this->updated !==
true) {
811 $this->updated = $this->content_obj->updatePage($this->pg_obj);
813 if ($this->updated ===
true) {
814 $this->ctrl->returnToParent($this,
"jump" . $this->hier_id);
828 $this->log->debug(
"ilPCParagraphGUI, createJS(): start");
831 $this->updated = $this->content_obj->saveJS(
833 $_POST[
"ajaxform_content"],
838 if (
$_POST[
"quick_save"]) {
839 if ($this->updated) {
840 $a_pc_id_str = $this->content_obj->getLastSavedPcId($this->pg_obj,
true);
842 $this->log->debug(
"ilPCParagraphGUI, createJS(): echo pc id and exit: " . $a_pc_id_str);
847 if ($this->updated !==
true && is_array($this->updated)) {
852 $a_pc_id_str = $this->content_obj->getLastSavedPcId($this->pg_obj,
true);
853 $ilCtrl->setParameterByClass(
854 $ilCtrl->getReturnClass($this),
856 urlencode($a_pc_id_str)
858 $this->log->debug(
"ilPCParagraphGUI, createJS(): return to edit cmd of " . $ilCtrl->getReturnClass($this));
860 $ilCtrl->redirectByClass($ilCtrl->getReturnClass($this),
"edit",
"",
true);
870 $a_tpl->setCurrentBlock(
"help_item");
871 $a_tpl->setVariable(
"TXT_HELP",
"<b>" .
$lng->txt(
"cont_syntax_help") .
"</b>");
872 $a_tpl->parseCurrentBlock();
873 $a_tpl->setCurrentBlock(
"help_item");
874 $a_tpl->setVariable(
"TXT_HELP",
"* " .
$lng->txt(
"cont_bullet_list"));
875 $a_tpl->parseCurrentBlock();
876 $a_tpl->setCurrentBlock(
"help_item");
877 $a_tpl->setVariable(
"TXT_HELP",
"# " .
$lng->txt(
"cont_numbered_list"));
878 $a_tpl->parseCurrentBlock();
879 $a_tpl->setCurrentBlock(
"help_item");
880 $a_tpl->setVariable(
"TXT_HELP",
"=" .
$lng->txt(
"cont_Headline1") .
"=<br />" .
881 "==" .
$lng->txt(
"cont_Headline2") .
"==<br />" .
882 "===" .
$lng->txt(
"cont_Headline3") .
"===");
883 $a_tpl->parseCurrentBlock();
886 $a_tpl->setCurrentBlock(
"help_item");
887 $a_tpl->setVariable(
"TXT_HELP",
"[[" .
$lng->txt(
"cont_wiki_page_link") .
"]]");
888 $a_tpl->parseCurrentBlock();
891 $a_tpl->setCurrentBlock(
"help");
892 $a_tpl->parseCurrentBlock();
static getContentStylePath($a_style_id, $add_random=true, $add_token=true)
get content style path
const ON_ITEM_CLICK_FORM_SELECT
getCharacteristicsOfCurrentStyle($a_type)
Get characteristics of current style.
static _lookupStyleSheetId($a_cont_obj_id)
lookup style sheet ID
update()
update paragraph in dom and update page in db
static attribsToArray($a_str)
converts a string of format var1 = "val1" var2 = "val2" ...
edit($a_insert=false)
edit paragraph form
__construct($a_pg_obj, $a_content_obj, $a_hier_id, $a_pc_id="")
Constructor public.
static xml2outputJS($s_text)
Prepare content for js output.
getHierId()
get hierarchical id in dom object
static _getCharacteristics($a_style_id)
Get characteristics.
insertStyleSelectionList($a_tpl, $a_selected)
Insert style selection list.
static _getStandardCharacteristics()
Get standard characteristics.
static _getTextCharacteristics($a_style_id, $a_include_core=false)
Get text characteristics.
static getStyleSelector($a_selected, $a_chars, $a_use_callback=false)
Get style selector.
getPageConfig()
Get Page Config.
insert()
insert paragraph form
saveJS()
Save paragraph by JS call.
create()
create new paragraph in dom and update page in db
setCharacteristics($a_chars)
Set Characteristics.
getBBMenu($a_ta_name="par_content")
Get the bb menu incl.
User Interface for Editing of Page Content Objects (Paragraphs, Tables, ...)
editJS()
Edit paragraph (Ajax mode, sends the content of the paragraph)
static getCharStyleSelector($a_par_type, $a_use_callback=true, $a_style_id=0)
Get character style selector.
displayValidationError()
display validation errors
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
getCharacteristics()
Get characteristics.
static _lookupType($a_id, $a_reference=false)
lookup object type
editMultipleJS()
Edit multiple paragraphs (Ajax mode, sends the content of the paragraphs)
static lookupSettingByParentType($a_par_type, $a_name, $a_default=false)
Lookup setting by parent type.
static formSelect( $selected, $varname, $options, $multiple=false, $direct_text=false, $size="0", $style_class="", $attribs="", $disabled=false)
Builds a select form field with options and shows the selected option first.
determineCharacteristic($a_insert=false)
Determine current characteristic.
__construct(Container $dic, ilPlugin $plugin)
executeCommand()
execute command
static _getCommonBBButtons()
Get common bb buttons.
outputError($a_err)
Output error.
static _getStandardTextCharacteristics()
Get standard characteristics.
insertCharacteristicTable($a_tpl, $a_seleted_value)
Insert characteristic table.
insertHelp($a_tpl)
Insert Help.
createJS()
Create paragraph per JS.