38 $this->
user = $DIC->user();
39 $this->
ctrl = $DIC->ctrl();
40 $this->
lng = $DIC->language();
54 $lng = $DIC->language();
56 return array(
"Standard" =>
$lng->
txt(
"cont_standard"),
57 "Headline1" =>
$lng->
txt(
"cont_Headline1"),
58 "Headline2" =>
$lng->
txt(
"cont_Headline2"),
59 "Headline3" =>
$lng->
txt(
"cont_Headline3"),
60 "Book" =>
$lng->
txt(
"cont_Book"),
61 "Numbers" =>
$lng->
txt(
"cont_Numbers"),
62 "Verse" =>
$lng->
txt(
"cont_Verse"),
63 "List" =>
$lng->
txt(
"cont_List"),
64 "TableContent" =>
$lng->
txt(
"cont_TableContent")
73 return [
"Mnemonic",
"Attention"];
82 $request = $DIC->copage()->internal()
88 $service = $DIC->contentStyle()->internal();
92 if ($a_style_id > 0 &&
94 $access_manager =
$service->domain()->access(
104 [
"text_block",
"heading1",
"heading2",
"heading3"],
108 $new_chars = array();
109 foreach (
$chars as $char) {
110 if (($st_chars[$char->getCharacteristic()] ??
"") !=
"") {
113 $char->getCharacteristic()
116 $title = $st_chars[$char->getCharacteristic()];
118 $new_chars[$char->getCharacteristic()] = $title;
120 $new_chars[$char->getCharacteristic()] =
$char_manager->getPresentationTitle(
122 $char->getCharacteristic()
135 public static function _getTextCharacteristics(
137 bool $a_include_core =
false 143 $service = $DIC->contentStyle()->internal();
144 $request = $DIC->copage()->internal()
150 if ($a_style_id > 0 &&
153 $access_manager =
$service->domain()->access(
155 $DIC->user()->getId()
164 $ti_chars =
$char_manager->getByTypes([
"text_inline",
"code_inline"],
169 foreach ($ti_chars as $k => $v) {
170 if (!
$char_manager->isOutdated(
"text_inline", $v->getCharacteristic())) {
171 $chars[] = $v->getCharacteristic();
175 return self::_getStandardTextCharacteristics();
189 $next_class = $this->
ctrl->getNextClass($this);
192 array(
"text_block",
"heading1",
"heading2",
"heading3")
196 $cmd = $this->
ctrl->getCmd();
198 $this->log->debug(
"ilPCParagraphGUI: executeCommand " . $cmd);
200 switch ($next_class) {
202 $ret = $this->$cmd();
215 $cmd = $this->
ctrl->getCmd();
218 if ($cmd ==
"update") {
219 $s_char = $this->request->getString(
"par_characteristic");
221 $s_char = $this->content_obj->getCharacteristic();
223 $s_char =
"Standard";
227 if ($cmd ==
"create_par") {
228 $s_char = $this->request->getString(
"par_characteristic");
230 $s_char =
"Standard";
233 $cont_obj = $this->pg_obj->getContentObject($this->
getHierId());
234 if (is_object($cont_obj)) {
235 if ($cont_obj->getType() ==
"li" ||
236 ($cont_obj->getType() ==
"par" && $cont_obj->getCharacteristic() ==
"List")) {
240 if ($cont_obj->getType() ==
"td" ||
241 ($cont_obj->getType() ==
"par" && $cont_obj->getCharacteristic() ==
"TableContent")) {
242 $s_char =
"TableContent";
255 $s_text = $this->content_obj->getText();
256 $this->log->debug(
"step 1: " . substr($s_text, 0, 1000));
259 $s_text = $this->content_obj->xml2output($s_text,
true,
false);
260 $this->log->debug(
"step 2: " . substr($s_text, 0, 1000));
265 $this->log->debug(
"step 3: " . substr($s_text, 0, 1000));
268 $ids =
"###" . $this->content_obj->readHierId() .
":" . $this->content_obj->readPCId() .
"###" .
271 $this->log->debug(
"step 4: " . substr($ids . $s_text, 0, 1000));
280 echo $this->content_obj->getParagraphSequenceContent($this->pg_obj);
290 $s_text = str_replace(
291 array(
"<SimpleBulletList>",
"</SimpleBulletList>"),
292 array(
"<ul class='ilc_list_u_BulletedList'>",
"</ul>"),
295 $s_text = str_replace(
296 array(
"<SimpleNumberedList>",
"</SimpleNumberedList>"),
297 array(
"<ol class='ilc_list_o_NumberedList'>",
"</ol>"),
300 $s_text = str_replace(
301 array(
"<SimpleListItem>",
"</SimpleListItem>"),
302 array(
"<li class='ilc_list_item_StandardListItem'>",
"</li>"),
305 $s_text = str_replace(
306 array(
"<SimpleListItem/>"),
307 array(
"<li class='ilc_list_item_StandardListItem'></li>"),
313 if (!in_array($bb, array(
"code",
"tex",
"fn",
"xln",
"sub",
"sup"))) {
314 $s_text = str_replace(
316 '<span class="ilc_text_inline_' . $cl .
'">',
319 $s_text = str_replace(
328 $ws =
"[ \t\r\f\v\n]*";
329 while (preg_match(
"~\[(marked$ws(class$ws=$ws\"([^\"])*\")$ws)\]~i", $s_text, $found)) {
331 if (isset($attribs[
"class"])) {
332 $s_text = str_replace(
"[" . $found[1] .
"]",
"<span class=\"ilc_text_inline_" . $attribs[
"class"] .
"\">", $s_text);
334 $s_text = str_replace(
"[" . $found[1] .
"]",
"[error:marked" . $found[1] .
"]", $s_text);
337 $s_text = preg_replace(
'~\[\/marked\]~i',
"</span>", $s_text);
341 $s_text = str_replace(
342 array(
"[code]",
"[/code]"),
343 array(
"<code>",
"</code>"),
348 $s_text = str_replace(
349 array(
"[sup]",
"[/sup]"),
350 array(
'<sup class="ilc_sup_Sup">',
"</sup>"),
355 $s_text = str_replace(
356 array(
"[sub]",
"[/sub]"),
357 array(
'<sub class="ilc_sub_Sub">',
"</sub>"),
370 foreach ($a_err as $err) {
371 $err_str .= $err[1] .
"<br />";
374 $this->log->debug(
"ilPCParagraphGUI, outputError() and exit: " . substr($err_str, 0, 100));
380 $this->log->debug(
"ilPCParagraphGUI, cancel(): return to parent: jump" . $this->hier_id);
381 $this->
ctrl->returnToParent($this,
"jump" . $this->hier_id);
389 string $a_seleted_value
395 if (
$chars[$a_seleted_value] ==
"" && ($a_seleted_value !=
"")) {
397 array($a_seleted_value => $a_seleted_value),
402 foreach (
$chars as $char => $char_lang) {
406 '<div class="ilc_text_block_' . $char .
'" style="margin-top:2px; margin-bottom:2px; position:static;">' . $char_lang .
"</div>" 409 if ($char == $a_seleted_value) {
412 ' checked="checked" ' 416 if (((
$i + 1) % 3) == 0) {
431 $a_tpl->
setVariable(
"ADV_SEL_STYLE", self::getStyleSelector(
443 bool $a_use_callback =
false 447 $selection->setPullRight(
false);
448 $selection->setFormSelectMode(
449 "par_characteristic",
460 $selection->setId(
"style_selection");
461 $selection->setSelectionHeaderClass(
"ilEditSubmit ilTinyMenuDropDown");
463 $selection->setSelectedValue($a_selected);
464 $selection->setUseImages(
false);
466 if ($a_use_callback) {
467 $selection->setSelectCallback(
"ilCOPage.setParagraphClass");
471 $title_char = (
$chars[$a_selected] !=
"")
474 $selection->setListTitle($title_char);
476 if (
$chars[$a_seleted] ==
"" && ($a_seleted !=
"")) {
478 array($a_seleted => $a_seleted),
483 foreach (
$chars as $char => $char_lang) {
487 case "Headline1": $t =
"heading1"; $tag =
"h1";
break;
488 case "Headline2": $t =
"heading2"; $tag =
"h2";
break;
489 case "Headline3": $t =
"heading3"; $tag =
"h3";
break;
491 $html =
'<div class="ilCOPgEditStyleSelectionItem"><' . $tag .
' class="ilc_' . $t .
'_' . $char .
'" style="' . self::$style_selector_reset .
'">' . $char_lang .
"</" . $tag .
"></div>";
502 return $selection->getHTML();
510 bool $a_use_callback =
true,
515 $lng = $DIC->language();
518 $selection->setPullRight(
false);
519 $selection->setFormSelectMode(
520 "char_characteristic",
531 $selection->setId(
"char_style_selection");
532 $selection->setSelectionHeaderClass(
"ilEditSubmit");
535 $selection->setUseImages(
false);
537 $selection->setSelectCallback(
"ilCOPage.setCharacterClass");
543 $selection->setListTitle(
" <i>A</i>");
552 "Comment" => array(
"code" =>
"com",
"txt" =>
$lng->
txt(
"cont_char_style_com")),
553 "Quotation" => array(
"code" =>
"quot",
"txt" =>
$lng->
txt(
"cont_char_style_quot")),
554 "Accent" => array(
"code" =>
"acc",
"txt" =>
$lng->
txt(
"cont_char_style_acc")),
555 "Code" => array(
"code" =>
"code",
"txt" =>
$lng->
txt(
"cont_char_style_code"))
558 foreach (ilPCParagraphGUI::_getTextCharacteristics($a_style_id) as
$c) {
560 $chars[
$c] = array(
"code" =>
"",
"txt" => $c);
567 "active_" . $char[
"code"],
573 case "Code": $tag =
"code";
break;
575 $html =
'<' . $tag .
' class="ilc_' . $t .
'_' .
$key .
'" style="font-size:90%; margin-top:2px; margin-bottom:2px; position:static;">' . $char[
"txt"] .
"</" . $tag .
">";
581 $html =
'<a class="nostyle" style="display:block;" href="#" onclick="return false;">' . $html .
"</a>";
593 return $selection->getHTML();
598 if ($this->pg_obj->getParentType() ==
"gdf" ||
599 $this->pg_obj->getParentType() ==
"lm") {
600 if ($this->pg_obj->getParentType() !=
"gdf") {
615 $this->log->debug(
"ilPCParagraphGUI, saveJS: got updated value " . $this->updated);
616 return $this->edit(
true);
624 $this->log->debug(
"ilPCParagraphGUI, update(): start");
627 $this->content_obj->setLanguage(
628 $this->request->getString(
"par_language")
630 $this->content_obj->setCharacteristic(
631 $this->request->getString(
"par_characteristic")
634 $this->updated = $this->content_obj->setText(
635 $this->content_obj->input2xml(
636 $this->request->getRaw(
"par_content"),
637 $this->request->getString(
"usedwsiwygeditor")
641 if ($this->updated !==
true) {
646 $this->updated = $this->content_obj->updatePage($this->pg_obj);
649 if ($this->updated ===
true) {
650 $this->log->debug(
"ilPCParagraphGUI, update(): return to parent: jump" . $this->hier_id);
651 $this->
ctrl->returnToParent($this,
"jump" . $this->hier_id);
653 $this->log->debug(
"ilPCParagraphGUI, update(): call edit.");
663 $this->log->debug(
"ilPCParagraphGUI, create(): start.");
665 if ($this->request->getString(
"ajaxform_hier_id") !=
"") {
672 $this->content_obj->create($this->pg_obj, $this->hier_id, $this->pc_id);
674 $this->content_obj->setLanguage(
675 $this->request->getString(
"par_language")
678 $this->content_obj->setCharacteristic(
679 $this->request->getString(
"par_characteristic")
682 $this->updated = $this->content_obj->setText(
683 $this->content_obj->input2xml(
684 $this->request->getRaw(
"par_content"),
685 $this->request->getString(
"usedwsiwygeditor")
690 if ($this->updated !==
true) {
694 $this->updated = $this->content_obj->updatePage($this->pg_obj);
696 if ($this->updated ===
true) {
697 $this->
ctrl->returnToParent($this,
"jump" . $this->hier_id);
721 "==" .
$lng->
txt(
"cont_Headline2") .
"==<br />" .
722 "===" .
$lng->
txt(
"cont_Headline3") .
"===");
parseCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
const ON_ITEM_CLICK_FORM_SELECT
static lookupSettingByParentType(string $a_par_type, string $a_name, string $a_default='0')
Lookup setting by parent type.
static xml2outputJS(string $s_text)
Prepare content for js output.
update()
update paragraph in dom and update page in db
getCharacteristicsOfCurrentStyle(array $a_type)
Get characteristics of current style and call setCharacteristics, if style is given.
outputError(array $a_err)
Output error.
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
__construct(ilPageObject $a_pg_obj, ?ilPageContent $a_content_obj, string $a_hier_id, string $a_pc_id="")
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setCharacteristics(array $a_chars)
static _getStandardCharacteristics()
Get standard characteristics.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
insert()
insert paragraph form
create()
create new paragraph in dom and update page in db
touchBlock(string $block)
User Interface for Editing of Page Content Objects (Paragraphs, Tables, ...)
static getCharStyleSelector(string $a_par_type, bool $a_use_callback=true, int $a_style_id=0)
Get character style selector.
Style Content CharacteristicManager $char_manager
setVariable($variable, $value='')
Sets a variable value.
editJS()
Edit paragraph (Ajax mode, sends the content of the paragraph)
static _lookupStyleSheetId(int $a_cont_obj_id)
insertCharacteristicTable(ilTemplate $a_tpl, string $a_seleted_value)
Insert characteristic table.
insertHelp(ilTemplate $a_tpl)
Insert Help.
Class ilPageObject Handles PageObjects of ILIAS Learning Modules (see ILIAS DTD)
determineCharacteristic(bool $a_insert=false)
Determine current characteristic.
static _getCharacteristics(int $a_style_id)
Get characteristics.
setCurrentTextLang(string $lang_key)
static getContentStylePath(int $a_style_id, bool $add_random=true, bool $add_token=true)
get content style path static (to avoid full reading)
editMultipleJS()
Edit multiple paragraphs (Ajax mode, sends the content of the paragraphs)
setCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
__construct(Container $dic, ilPlugin $plugin)
executeCommand()
execute command
static _getCommonBBButtons()
static getStyleSelector(string $a_selected, array $a_chars, bool $a_use_callback=false)
Get style selector.
insertStyleSelectionList(ilTemplate $a_tpl, string $a_selected)
Insert style selection list.
static _lookupType(int $id, bool $reference=false)
static _getStandardTextCharacteristics()
Get standard characteristics.
static attribsToArray(string $a_str)
converts a string of format var1 = "val1" var2 = "val2" ...
Class ilPCParagraphGUI User Interface for Paragraph Editing.