19 declare(strict_types=1);
60 $this->main_tpl = $DIC->ui()->mainTemplate();
64 $this->
object = $style_sheet;
68 $this->request = $gui_service->standardRequest();
70 $cur = explode(
".", $this->request->getTag());
71 $this->current_tag = (string) $cur[0];
72 $this->current_class = (string) ($cur[1] ??
"");
74 $t = explode(
":", $cur[1] ??
"");
75 $this->current_base_class = (string) $t[0];
76 $this->current_pseudo_class = (string) ($t[1] ??
"");
78 $this->style_type = $this->request->getStyleType();
79 $this->requested_char = $this->request->getCharacteristic();
80 $this->mq_id = $this->request->getMediaQueryId();
82 $ctrl = $gui_service->ctrl();
83 $ctrl->saveParameter($this,
"tag");
87 bool $a_custom =
false 89 $style = $this->
object->getStyle();
90 $parameters = array();
91 foreach ($style as $tag) {
92 foreach ($tag as $par) {
93 if ($par[
"tag"] == $this->current_tag && $par[
"class"] == $this->current_class
94 && $par[
"type"] == $this->style_type && $this->mq_id == (
int) $par[
"mq_id"]
95 && (
int) $a_custom == (
int) $par[
"custom"]) {
96 $parameters[$par[
"parameter"]] = $par[
"value"];
108 $ctrl = $this->gui_service->ctrl();
110 $next_class = $ctrl->getNextClass($this);
111 $cmd = $ctrl->getCmd();
112 switch ($next_class) {
115 "listCharacteristics",
"addCharacteristic",
"saveCharacteristic",
116 "deleteCharacteristicConfirmation",
"cancelCharacteristicDeletion",
"deleteCharacteristic",
117 "copyCharacteristics",
"pasteCharacteristicsOverview",
"pasteCharacteristics",
118 "pasteCharacteristicsWithinStyle",
"pasteCharacteristicsFromOtherStyle",
119 "saveStatus",
"setOutdated",
"removeOutdated",
120 "editTagStyle",
"refreshTagStyle",
"updateTagStyle",
121 "editTagTitles",
"saveTagTitles",
"switchMQuery"])) {
129 $lng = $this->domain_service->lng();
130 $ilTabs = $this->gui_service->tabs();
131 $ilCtrl = $this->gui_service->ctrl();
132 $ilToolbar = $this->gui_service->toolbar();
133 $tpl = $this->gui_service->mainTemplate();
138 $chars = $this->
object->getCharacteristics();
140 $style_type = ($this->super_type !=
"")
143 $ilCtrl->setParameter($this,
"style_type", $style_type);
144 $ilTabs->activateSubTab(
"sty_" . $style_type .
"_char");
150 foreach ($subtypes as $t) {
155 if ($expandable && $this->access_manager->checkWrite()) {
156 $ilToolbar->addButton(
157 $lng->txt(
"sty_add_characteristic"),
158 $ilCtrl->getLinkTarget($this,
"addCharacteristic")
162 if ($this->manager->hasCopiedCharacteristics($style_type)) {
164 $ilToolbar->addSeparator();
166 $ilToolbar->addButton(
167 $lng->txt(
"sty_paste_style_classes"),
168 $ilCtrl->getLinkTarget($this,
"pasteCharacteristicsOverview")
172 $table_gui = $this->gui_service->characteristic()->CharacteristicTableGUI(
178 $this->access_manager
181 $tpl->setContent($table_gui->getHTML());
186 $lng = $this->domain_service->lng();
187 $tabs = $this->gui_service->tabs();
188 $ctrl = $this->gui_service->ctrl();
192 foreach ($types as $super_type => $t) {
194 $ctrl->setParameter($this,
"style_type", $super_type);
196 "sty_" . $super_type .
"_char",
197 $lng->txt(
"sty_" . $super_type .
"_char"),
198 $ctrl->getLinkTarget($this,
"listCharacteristics")
202 $ctrl->setParameter($this,
"style_type", $this->style_type);
207 $tpl = $this->gui_service->mainTemplate();
210 $tpl->setContent($form->getHTML());
215 $ilCtrl = $this->gui_service->ctrl();
216 $tpl = $this->gui_service->mainTemplate();
217 $lng = $this->domain_service->lng();
221 if ($form->checkInput()) {
222 $new_characteristic = $form->getInput(
"new_characteristic");
223 $type = $form->getInput(
"type");
224 if ($this->
object->characteristicExists($new_characteristic, $this->style_type)) {
225 $char_input = $form->getItemByPostVar(
"new_characteristic");
226 $char_input->setAlert(
$lng->txt(
"sty_characteristic_already_exists"));
228 $this->
object->addCharacteristic($type, $new_characteristic);
229 $this->main_tpl->setOnScreenMessage(
'info',
$lng->txt(
"sty_added_characteristic"),
true);
230 $ilCtrl->setParameter(
235 $ilCtrl->setParameter($this,
"style_type", $type);
236 $ilCtrl->redirectByClass(
"ilstylecharacteristicgui",
"editTagStyle");
239 $form->setValuesByPost();
240 $tpl->setContent($form->getHTML());
245 $ilCtrl = $this->gui_service->ctrl();
246 $tpl = $this->gui_service->mainTemplate();
247 $lng = $this->domain_service->lng();
251 $chars = $this->request->getCharacteristics();
252 if (count($chars) == 0) {
253 $this->main_tpl->setOnScreenMessage(
'info',
$lng->txt(
"no_checkbox"),
true);
254 $ilCtrl->redirect($this,
"edit");
258 foreach ($chars as $char) {
259 if (!empty($core_styles[$char])) {
266 $cgui->setFormAction($ilCtrl->getFormAction($this));
267 $cgui->setHeaderText(
$lng->txt(
"sty_confirm_char_deletion"));
268 $cgui->setCancel(
$lng->txt(
"cancel"),
"cancelCharacteristicDeletion");
269 $cgui->setConfirm(
$lng->txt(
"delete"),
"deleteCharacteristic");
271 foreach ($chars as $char) {
272 $char_comp = explode(
".", $char);
273 $cgui->addItem(
"char[]", $char, $char_comp[2]);
276 $tpl->setContent($cgui->getHTML());
283 $ilCtrl = $this->gui_service->ctrl();
284 $tpl = $this->gui_service->mainTemplate();
285 $lng = $this->domain_service->lng();
288 $cgui->setFormAction($ilCtrl->getFormAction($this));
294 $chars = $this->request->getCharacteristics();
295 foreach ($chars as $char) {
296 if (!empty($core_styles[$char])) {
298 $char_comp = explode(
".", $char);
299 $cgui->addItem(
"",
"", $char_comp[2]);
301 $cgui->addHiddenItem(
"char[]", $char);
304 $all_core_styles = ($cnt == count($chars));
306 if ($all_core_styles) {
307 $cgui->setHeaderText(
$lng->txt(
"sty_all_styles_obligatory"));
308 $cgui->setCancel(
$lng->txt(
"back"),
"cancelCharacteristicDeletion");
309 $cgui->setConfirm(
$lng->txt(
"ok"),
"cancelCharacteristicDeletion");
311 $cgui->setHeaderText(
$lng->txt(
"sty_some_styles_obligatory_delete_rest"));
312 $cgui->setCancel(
$lng->txt(
"cancel"),
"cancelCharacteristicDeletion");
313 $cgui->setConfirm(
$lng->txt(
"sty_delete_other_selected"),
"deleteCharacteristicConfirmation");
316 $tpl->setContent($cgui->getHTML());
321 $ilCtrl = $this->gui_service->ctrl();
322 $lng = $this->domain_service->lng();
324 $this->main_tpl->setOnScreenMessage(
'info',
$lng->txt(
"action_aborted"),
true);
325 $ilCtrl->redirect($this,
"listCharacteristics");
334 $ilCtrl = $this->gui_service->ctrl();
336 $chars = $this->request->getCharacteristics();
337 foreach ($chars as $char) {
338 $char_comp = explode(
".", $char);
339 $type = $char_comp[0];
340 $tag = $char_comp[1];
341 $class = $char_comp[2];
343 $this->manager->deleteCharacteristic(
349 $ilCtrl->redirect($this,
"listCharacteristics");
357 $lng = $this->domain_service->lng();
358 $ilCtrl = $this->gui_service->ctrl();
364 $txt_input->
setPattern(
"/^[a-zA-Z]+[a-zA-Z0-9]*$/");
365 $txt_input->setNoMatchMessage(
$lng->txt(
"sty_msg_characteristic_must_only_include") .
" A-Z, a-z, 0-9");
366 $txt_input->setRequired(
true);
367 $form->addItem($txt_input);
372 $exp_types = array();
373 foreach ($types as $t) {
375 $exp_types[$t] =
$lng->txt(
"sty_type_" . $t);
378 if (count($exp_types) > 1) {
381 $type_input->setValue(key($exp_types));
382 $form->addItem($type_input);
383 } elseif (count($exp_types) == 1) {
385 $hid_input->setValue(key($exp_types));
386 $form->addItem($hid_input);
389 $form->setTitle(
$lng->txt(
"sty_add_characteristic"));
390 $form->addCommandButton(
"saveCharacteristic",
$lng->txt(
"save"));
391 $form->addCommandButton(
"listCharacteristics",
$lng->txt(
"cancel"));
392 $form->setFormAction($ilCtrl->getFormAction($this));
399 $tabs = $this->gui_service->tabs();
400 $ctrl = $this->gui_service->ctrl();
401 $lng = $this->domain_service->lng();
403 $tabs->clearTargets();
406 $tabs->setBackTarget(
408 $ctrl->getLinkTargetByClass(
"ilobjstylesheetgui",
"edit")
412 $ctrl->setParameter($this,
"tag", $this->current_tag .
"." . $this->current_base_class);
415 $lng->txt(
"sty_parameters"),
416 $ctrl->getLinkTarget($this,
"editTagStyle")
422 $lng->txt(
"sty_titles"),
423 $ctrl->getLinkTarget($this,
"editTagTitles")
425 $ctrl->setParameter($this,
"tag", $this->request->getTag());
430 $tabs = $this->gui_service->tabs();
431 $ctrl = $this->gui_service->ctrl();
432 $lng = $this->domain_service->lng();
434 $pc = $this->
object->_getPseudoClasses($this->current_tag);
435 if (count($pc) > 0) {
437 $ctrl->setParameter($this,
"tag", $this->current_tag .
"." . $this->current_base_class);
440 $lng->txt(
"sty_tag_normal"),
441 $ctrl->getLinkTarget($this,
"editTagStyle")
443 if ($this->current_pseudo_class ==
"") {
444 $tabs->activateSubTab(
"sty_tag_normal");
447 foreach ($pc as $p) {
452 $this->current_tag .
"." . $this->current_base_class .
":" . $p
457 $ctrl->getLinkTarget($this,
"editTagStyle")
459 if ($this->current_pseudo_class == $p) {
460 $tabs->activateSubTab(
"sty_tag_" . $p);
463 $ctrl->setParameter($this,
"tag", $this->current_tag .
"." . $this->current_base_class);
465 $ctrl->setParameter($this,
"tag", $this->request->getTag());
470 $ilToolbar = $this->gui_service->toolbar();
471 $lng = $this->domain_service->lng();
472 $ilCtrl = $this->gui_service->ctrl();
473 $tabs = $this->gui_service->tabs();
477 $tabs->activateTab(
"parameters");
480 $mqs = $this->
object->getMediaQueries();
481 if (count($mqs) > 0) {
484 "" =>
$lng->txt(
"sty_default"),
486 foreach ($mqs as $mq) {
487 $options[$mq[
"id"]] = $mq[
"mquery"];
490 $si->setOptions($options);
491 $si->setValue($this->mq_id);
492 $ilToolbar->addInputItem($si,
true);
493 $ilToolbar->setFormAction($ilCtrl->getFormAction($this));
494 $ilToolbar->addFormButton(
$lng->txt(
"sty_switch"),
"switchMQuery");
510 $lng = $this->domain_service->lng();
511 $ilCtrl = $this->gui_service->ctrl();
513 $ilCtrl->saveParameter($this, array(
"mq_id"));
517 $avail_pars = $this->
object->getAvailableParameters();
518 $groups = $this->
object->getStyleParameterGroups();
521 foreach ($groups as $k => $group) {
525 if (isset($filtered_groups[$k]) && !in_array($this->current_tag, $filtered_groups[$k])) {
530 $sh->setTitle(
$lng->txt(
"sty_" . $k));
531 $form_gui->addItem($sh);
533 foreach ($group as $par) {
534 $basepar = explode(
".", $par);
535 $basepar = $basepar[0];
537 $var = str_replace(
"-",
"_", $basepar);
542 $options = array(
"" =>
"");
543 foreach ($avail_pars[$par] as $p) {
547 $form_gui->addItem($sel_input);
552 $text_input->setMaxLength(200);
553 $text_input->setSize(20);
554 $form_gui->addItem($text_input);
559 $form_gui->addItem($fs_input);
562 case "numeric_no_perc":
568 $form_gui->addItem($num_input);
574 $per_input->setMaxValue(100);
575 $per_input->setMaxLength(3);
576 $per_input->setSize(3);
577 $form_gui->addItem($per_input);
583 $col_input->setAcceptNamedColors(
true);
584 $form_gui->addItem($col_input);
592 $form_gui->addItem($num_input);
597 $form_gui->addItem($bw_input);
602 $form_gui->addItem($bw_input);
608 $form_gui->addItem($col_input);
611 case "background_image":
614 foreach ($this->image_manager->getImages() as $entry) {
615 $images[] = $entry->getFilename();
618 $im_input->setInfo(
$lng->txt(
"sty_bg_img_info"));
619 $form_gui->addItem($im_input);
622 case "background_position":
624 $form_gui->addItem($im_input);
632 $sh->setTitle(
$lng->txt(
"sty_custom"));
633 $form_gui->addItem($sh);
637 $ti->setMaxLength(300);
640 $ti->setInfo(
$lng->txt(
"sty_custom_par_info"));
641 $form_gui->addItem($ti);
645 $form_gui->addCommandButton(
"updateTagStyle",
$lng->txt(
"save_return"));
646 $form_gui->addCommandButton(
"refreshTagStyle",
$lng->txt(
"save_refresh"));
648 $form_gui->setFormAction($ilCtrl->getFormAction($this));
659 foreach ($parameters as $p => $v) {
661 if (isset($filtered_groups[$v[
"group"]]) && !in_array($this->current_tag, $filtered_groups[$v[
"group"]])) {
664 $p = explode(
".", $p);
667 switch ($v[
"input"]) {
675 $input->setAllValue($cur_parameters[$v[
"subpar"][0]] ??
"");
676 $input->setTopValue($cur_parameters[$v[
"subpar"][1]] ??
"");
677 $input->setRightValue($cur_parameters[$v[
"subpar"][2]] ??
"");
678 $input->setBottomValue($cur_parameters[$v[
"subpar"][3]] ??
"");
679 $input->setLeftValue($cur_parameters[$v[
"subpar"][4]] ??
"");
683 $input->setValue($cur_parameters[$p] ??
"");
690 foreach ($cust_parameters as $k =>
$c) {
691 $vals[] = $k .
": " .
$c;
694 $input->setValue($vals);
699 $tpl = $this->gui_service->mainTemplate();
702 $tpl->setCurrentBlock(
"ContentStyle");
704 "LOCATION_CONTENT_STYLESHEET",
708 $ts_tpl =
new ilTemplate(
"tpl.style_tag_edit.html",
true,
true,
"components/ILIAS/Style/Content");
710 $ts_tpl->setVariable(
715 $ts_tpl->setVariable(
722 $tpl->setContent($ts_tpl->get());
727 $tpl = $this->gui_service->mainTemplate();
728 $lng = $this->domain_service->lng();
729 $tpl->setTitle($this->current_class .
" (" .
$lng->txt(
"sty_type_" . $this->style_type) .
")");
734 $ilCtrl = $this->gui_service->ctrl();
738 if ($form->checkInput()) {
740 $ilCtrl->redirect($this,
"editTagStyle");
742 $form->setValuesByPost();
749 $ilCtrl = $this->gui_service->ctrl();
752 if ($form->checkInput()) {
754 $ilCtrl->redirectByClass(
"ilobjstylesheetgui",
"edit");
756 $form->setValuesByPost();
764 foreach ($avail_pars as $par => $v) {
765 $var = str_replace(
"-",
"_", $par);
766 $basepar_arr = explode(
".", $par);
767 $basepar = $basepar_arr[0];
768 if (($basepar_arr[1] ??
"") !=
"" && $basepar_arr[1] != $this->current_tag) {
772 switch ($v[
"input"]) {
774 case "numeric_no_perc":
776 case "background_image":
777 case "background_position":
783 $color = trim($form->
getInput($basepar));
784 if ($color !=
"" && trim(substr($color, 0, 1)) !=
"!") {
785 $color =
"#" . $color;
794 $this->
writeStylePar($v[
"subpar"][0], (
string) $in->getAllValue());
795 $this->
writeStylePar($v[
"subpar"][1], (
string) $in->getTopValue());
796 $this->
writeStylePar($v[
"subpar"][2], (
string) $in->getRightValue());
797 $this->
writeStylePar($v[
"subpar"][3], (
string) $in->getBottomValue());
798 $this->
writeStylePar($v[
"subpar"][4], (
string) $in->getLeftValue());
803 $tblr_p = array(0 =>
"getAllValue", 1 =>
"getTopValue", 2 =>
"getRightValue",
804 3 =>
"getBottomValue", 4 =>
"getLeftValue");
805 foreach ($tblr_p as $k => $func) {
806 $val = trim($in->$func());
807 $val = (($in->getAcceptNamedColors() && substr($val, 0, 1) ==
"!")
822 $this->
object->deleteCustomStylePars(
824 $this->current_class,
828 $custom_par = $form->
getInput(
"custom_par");
829 foreach ($custom_par as $cpar) {
830 $par_arr = explode(
":", $cpar);
831 if (count($par_arr) == 2) {
832 $par = trim($par_arr[0]);
833 $val = trim(str_replace(
";",
"", $par_arr[1]));
838 $this->
object->update();
844 protected function writeStylePar(
string $par,
string $value,
bool $a_custom =
false): void
846 if ($this->style_type ==
"") {
849 $this->manager->replaceParameter(
851 $this->current_class,
863 $tpl = $this->gui_service->mainTemplate();
864 $ui = $this->gui_service->ui();
865 $tabs = $this->gui_service->tabs();
869 $tabs->activateTab(
"titles");
870 $tpl->setContent($ui->renderer()->render($form));
878 $ui = $this->gui_service->ui();
880 $ctrl = $this->gui_service->ctrl();
881 $lng = $this->domain_service->lng();
884 $lng->loadLanguageModule(
"meta");
886 $characteristic = $this->manager->getByKey(
888 $this->current_base_class
890 $titles = $characteristic->getTitles();
892 foreach (
$lng->getInstalledLanguages() as $l) {
893 $fields[
"title_" . $l] =
$f->input()->field()->text(
$lng->txt(
"title") .
894 " - " .
$lng->txt(
"meta_l_" . $l))
895 ->withRequired(
false)
896 ->withValue($titles[$l] ??
"");
900 $section1 =
$f->input()->field()->section($fields,
$lng->txt(
"sty_titles"));
902 $form_action = $ctrl->getLinkTarget($this,
"saveTagTitles");
903 return $f->input()->container()->form()->standard($form_action, [
"sec" => $section1]);
908 $request = $this->gui_service->http()->request();
910 $lng = $this->domain_service->lng();
911 $ctrl = $this->gui_service->ctrl();
914 if ($request->getMethod() ==
"POST") {
915 $form = $form->withRequest($request);
916 $data = $form->getData();
917 if (isset(
$data[
"sec"])) {
920 foreach (
$lng->getInstalledLanguages() as $l) {
921 $titles[$l] =
$d[
"title_" . $l];
924 $manager->saveTitles(
926 $this->current_base_class,
930 $this->main_tpl->setOnScreenMessage(
'info',
$lng->txt(
"msg_obj_modified"),
true);
933 $ctrl->redirect($this,
"editTagTitles");
943 $ilCtrl = $this->gui_service->ctrl();
944 $lng = $this->domain_service->lng();
946 $all_chars = $this->request->getAllCharacteristics();
947 $hidden = $this->request->getHidden();
948 $order = $this->request->getOrder();
951 foreach ($all_chars as $char) {
952 $ca = explode(
".", $char);
953 $this->manager->saveHidden(
956 (in_array($char, $hidden))
961 if (count($order) > 0) {
963 foreach ($order as $char => $order_nr) {
964 $ca = explode(
".", $char);
965 $order_by_type[$ca[0]][$ca[2]] = $order_nr;
967 foreach ($order_by_type as $type => $order_nrs) {
968 $this->manager->saveOrderNrs(
975 $this->main_tpl->setOnScreenMessage(
'info',
$lng->txt(
"msg_obj_modified"),
true);
976 $ilCtrl->redirect($this,
"listCharacteristics");
981 $lng = $this->domain_service->lng();
982 $ctrl = $this->gui_service->ctrl();
984 $chars = $this->request->getCharacteristics();
985 if (count($chars) > 0) {
986 foreach ($chars as
$c) {
987 $c_parts = explode(
".", $c);
989 $this->manager->saveOutdated(
994 $this->main_tpl->setOnScreenMessage(
'info',
$lng->txt(
"msg_obj_modified"),
true);
998 $this->manager->saveOutdated(
1000 $this->requested_char,
1003 $this->main_tpl->setOnScreenMessage(
'info',
$lng->txt(
"msg_obj_modified"),
true);
1006 $ctrl->redirect($this,
"listCharacteristics");
1011 $lng = $this->domain_service->lng();
1012 $ctrl = $this->gui_service->ctrl();
1013 $chars = $this->request->getCharacteristics();
1015 if (count($chars) > 0) {
1016 foreach ($chars as
$c) {
1017 $c_parts = explode(
".", $c);
1019 $this->manager->saveOutdated(
1024 $this->main_tpl->setOnScreenMessage(
'info',
$lng->txt(
"msg_obj_modified"),
true);
1028 $this->manager->saveOutdated(
1030 $this->requested_char,
1033 $this->main_tpl->setOnScreenMessage(
'info',
$lng->txt(
"msg_obj_modified"),
true);
1036 $ctrl->redirect($this,
"listCharacteristics");
1041 $ilCtrl = $this->gui_service->ctrl();
1042 $lng = $this->domain_service->lng();
1044 $chars = $this->request->getCharacteristics();
1045 if (count($chars) == 0) {
1046 $this->main_tpl->setOnScreenMessage(
'failure',
$lng->txt(
"no_checkbox"),
true);
1048 $this->manager->setCopyCharacteristics(
1052 $this->main_tpl->setOnScreenMessage(
'success',
$lng->txt(
"sty_copied_please_select_target"),
true);
1054 $ilCtrl->redirect($this,
"listCharacteristics");
1059 $tpl = $this->gui_service->mainTemplate();
1060 $ilTabs = $this->gui_service->tabs();
1061 $ui = $this->gui_service->ui();
1063 $ilTabs->clearTargets();
1065 if ($this->manager->getCopyCharacteristicStyleId() ==
1066 $this->
object->getId()) {
1071 $tpl->setContent($ui->renderer()->render($form));
1080 $ui = $this->gui_service->ui();
1081 $f = $ui->factory();
1082 $ctrl = $this->gui_service->ctrl();
1085 foreach ($this->manager->getCopyCharacteristics() as $char) {
1087 $char_text = explode(
".", $char);
1088 $sections[$char] =
$f->input()->field()->section(
1094 $form_action = $ctrl->getLinkTarget($this,
"pasteCharacteristicsWithinStyle");
1095 return $f->input()->container()->form()->standard($form_action, $sections);
1104 $ui = $this->gui_service->ui();
1105 $lng = $this->domain_service->lng();
1106 $f = $ui->factory();
1107 $ctrl = $this->gui_service->ctrl();
1111 foreach ($this->manager->getCopyCharacteristics() as $char) {
1112 $char_text = explode(
".", $char);
1114 foreach ($this->manager->getByType($char_text[0]) as
$c) {
1115 $options[
$c->getCharacteristic()] =
$c->getCharacteristic();
1117 $group1 =
$f->input()->field()->group(
1119 $lng->txt(
"sty_create_new_class")
1121 $group2 =
$f->input()->field()->group(
1123 "overwrite_class" =>
$f->input()->field()->select(
1124 $lng->txt(
"sty_class"),
1126 )->withRequired(
true)
1128 $lng->txt(
"sty_overwrite_existing_class")
1130 $fields[$char] =
$f->input()->field()->switchableGroup(
1132 "new_" . $char => $group1,
1133 "overwrite_" . $char => $group2
1136 )->withValue(
"new_" . $char);
1138 $sections[
"sec"] =
$f->input()->field()->section(
1140 $lng->txt(
"sty_paste_chars")
1143 $form_action = $ctrl->getLinkTarget($this,
"pasteCharacteristicsFromOtherStyle");
1144 return $f->input()->container()->form()->standard($form_action, $sections);
1152 $ui = $this->gui_service->ui();
1153 $f = $ui->factory();
1154 $refinery = $this->domain_service->refinery();
1155 $lng = $this->domain_service->lng();
1160 $lng->loadLanguageModule(
"meta");
1162 $char_regexp_constraint =
$refinery->custom()->constraint(
function ($v) use (
$lng) {
1163 return (
bool) preg_match(
"/^[a-zA-Z]+[a-zA-Z0-9]*$/", $v);
1164 },
$lng->txt(
"sty_msg_characteristic_must_only_include") .
" A-Z, a-z, 0-9");
1166 $char_exists_constraint =
$refinery->custom()->constraint(
function ($v) use ($style_obj, $style_type) {
1167 return !$style_obj->characteristicExists($v, $style_type);
1168 },
$lng->txt(
"sty_characteristic_already_exists"));
1171 $fields[
"char_" . $char] =
$f->input()->field()->text(
$lng->txt(
"sty_class_name"))
1172 ->withRequired(
true)
1173 ->withAdditionalTransformation($char_regexp_constraint)
1174 ->withAdditionalTransformation($char_exists_constraint);
1176 foreach (
$lng->getInstalledLanguages() as $l) {
1177 $fields[
"title_" . $char .
"_" . $l] =
$f->input()->field()->text(
$lng->txt(
"title") .
1178 " - " .
$lng->txt(
"meta_l_" . $l))
1179 ->withRequired(
false)
1180 ->withValue($titles[$l] ??
"");
1188 $ui = $this->gui_service->ui();
1189 $request = $this->gui_service->http()->request();
1191 $tpl = $this->gui_service->mainTemplate();
1192 $ctrl = $this->gui_service->ctrl();
1193 $lng = $this->domain_service->lng();
1196 if ($request->getMethod() ==
"POST") {
1197 $form = $form->withRequest($request);
1198 $data = $form->getData();
1199 if (is_null(
$data)) {
1200 $tpl->setContent($ui->renderer()->render($form));
1203 foreach ($this->manager->getCopyCharacteristics() as $char) {
1204 if (is_array(
$data[$char])) {
1207 foreach (
$lng->getInstalledLanguages() as $l) {
1208 $titles[$l] =
$d[
"title_" . $char .
"_" . $l];
1210 $new_char =
$d[
"char_" . $char];
1211 $char_parts = explode(
".", $char);
1212 $manager->copyCharacteristicFromSource(
1213 $this->manager->getCopyCharacteristicStyleId(),
1221 $this->main_tpl->setOnScreenMessage(
'info',
$lng->txt(
"msg_obj_modified"),
true);
1223 $ctrl->redirect($this,
"listCharacteristics");
1232 $request = $this->gui_service->http()->request();
1234 $tpl = $this->gui_service->mainTemplate();
1235 $ctrl = $this->gui_service->ctrl();
1236 $lng = $this->domain_service->lng();
1237 $ui = $this->gui_service->ui();
1240 if ($request->getMethod() ==
"POST") {
1241 $form = $form->withRequest($request);
1242 $data = $form->getData();
1243 if (is_null(
$data)) {
1244 $tpl->setContent($ui->renderer()->render($form));
1247 foreach ($this->manager->getCopyCharacteristics() as $char) {
1248 if (is_array(
$data[
"sec"][$char])) {
1250 $char_parts = explode(
".", $char);
1257 if (isset(
$d[
"overwrite_class"])) {
1258 $manager->copyCharacteristicFromSource(
1259 $manager->getCopyCharacteristicStyleId(),
1262 $d[
"overwrite_class"],
1265 } elseif (isset(
$d[
"char_" . $char])) {
1267 foreach (
$lng->getInstalledLanguages() as $l) {
1268 $titles[$l] =
$d[
"title_" . $char .
"_" . $l];
1270 $new_char =
$d[
"char_" . $char];
1271 $manager->copyCharacteristicFromSource(
1272 $manager->getCopyCharacteristicStyleId(),
1281 $this->main_tpl->setOnScreenMessage(
'info',
$lng->txt(
"msg_obj_modified"),
true);
1283 $ctrl->redirect($this,
"listCharacteristics");
1288 $ilCtrl = $this->gui_service->ctrl();
1289 $lng = $this->domain_service->lng();
1291 $titles = $this->request->getTitles();
1292 $conflict_action = $this->request->getConflictAction();
1293 if (count($titles) > 0) {
1294 foreach ($titles as $from_char => $to_title) {
1295 $fc = explode(
".", $from_char);
1297 if ($conflict_action[$from_char] ==
"overwrite" ||
1298 !$this->
object->characteristicExists($to_title, $fc[0])) {
1300 $this->manager->copyCharacteristicFromSource(
1301 $this->request->getFromStyleId(),
1310 $this->manager->clearCopyCharacteristics();
1311 $this->main_tpl->setOnScreenMessage(
'success',
$lng->txt(
"sty_style_classes_copied"),
true);
1314 $ilCtrl->redirect($this,
"listCharacteristics");
1322 $ctrl = $this->gui_service->ctrl();
1323 $ctrl->setParameter($this,
"mq_id", $this->request->getMediaQueryId());
1324 $ctrl->redirectByClass(
"ilstylecharacteristicgui",
"editTagStyle");
string $current_pseudo_class
getPasteWithinStyleForm()
Init past within style form.
saveTagStyle(ilPropertyFormGUI $form)
Content InternalGUIService $gui_service
static _isExpandable(string $a_type)
deleteCharacteristic()
Delete one or multiple style characteristic.
Content style internal ui factory.
initTagStyleForm()
Init tag style editing form.
Content StandardGUIRequest $request
pasteCharacteristicsOverview()
cancelCharacteristicDeletion()
pasteCharacteristicsFromOtherStyle()
static _getStyleParameters(string $a_tag="")
writeStylePar(string $par, string $value, bool $a_custom=false)
Write style parameter.
getPasteFromOtherStyleForm()
Init past from other style form.
initCharacteristicForm()
Init tag style editing form.
static getStyleExampleHTML(string $a_type, string $a_class)
Get style example HTML.
static _getStyleSuperTypes()
switchMQuery()
Switch media query.
getValues(ilPropertyFormGUI $form)
FORM: Get current values from persistent object.
static isCoreStyle(string $a_type, string $a_class)
string $current_base_class
__construct(Content\InternalDomainService $domain_service, Content\InternalGUIService $gui_service, ilObjStyleSheet $style_sheet, string $super_type, Access\StyleAccessManager $access_manager, Content\CharacteristicManager $manager, Content\ImageManager $image_manager)
Content CharacteristicManager $manager
Main business logic for content style images.
Access StyleAccessManager $access_manager
static _getFilteredGroups()
static _writeUpToDate(int $a_id, bool $a_up_to_date)
Content InternalDomainService $domain_service
Main business logic for characteristics.
extractParametersOfTag(bool $a_custom=false)
executeCommand()
Execute command.
static getContentStylePath(int $a_style_id, bool $add_random=true, bool $add_token=true)
get content style path static (to avoid full reading)
saveStatus()
Save hide status for characteristics.
deleteCharacteristicConfirmation()
ilGlobalTemplateInterface $main_tpl
Content ImageManager $image_manager
Manages access to content style editing.
pasteCharacteristicsWithinStyle()
static _determineTag(string $a_type)
outputTagStyleEditScreen(ilPropertyFormGUI $form)
getCharacterTitleFormFields(string $char)
Get character title form section.
static _getStyleParameterInputType(string $par)