38 $this->tpl = $DIC[
"tpl"];
39 $this->
lng = $DIC->language();
40 $this->
ctrl = $DIC->ctrl();
47 $next_class = $this->
ctrl->getNextClass($this);
50 $cmd = $this->
ctrl->getCmd();
52 switch ($next_class) {
67 $this->tpl->setContent($this->
form->getHTML());
79 if ($this->
form->checkInput()) {
81 $this->content_obj->create($this->pg_obj, $this->hier_id, $this->pc_id);
82 $this->content_obj->addItems($this->
form->getInput(
"nr_items"));
83 $this->content_obj->setStartValue(
84 (
int) $this->
form->getInput(
"start_value")
86 $list_type = $this->
form->getInput(
"list_type");
87 $this->content_obj->setListType(
90 if ($list_type ==
"Unordered") {
91 $this->content_obj->setNumberingType(
"");
92 $this->content_obj->setStyleClass(
93 $this->
form->getInput(
"bullet_style")
96 $this->content_obj->setNumberingType(
97 $this->
form->getInput(
"numbering_type")
99 $this->content_obj->setStyleClass(
100 $this->
form->getInput(
"number_style")
103 $this->updated = $this->pg_obj->update();
104 if ($this->updated ===
true) {
105 $this->
ctrl->returnToParent($this,
"jump" . $this->hier_id);
108 $this->
form->setValuesByPost();
120 $this->tpl->setContent($this->
form->getHTML());
131 if ($this->
form->checkInput()) {
132 $this->content_obj->setStartValue(
133 $this->
form->getInput(
"start_value")
135 $list_type = $this->
form->getInput(
"list_type");
136 $this->content_obj->setListType(
139 if ($list_type ==
"Unordered") {
140 $this->content_obj->setNumberingType(
"");
141 $this->content_obj->setStyleClass(
142 $this->
form->getInput(
"bullet_style")
145 $this->content_obj->setNumberingType(
146 $this->
form->getInput(
"numbering_type")
148 $this->content_obj->setStyleClass(
149 $this->
form->getInput(
"number_style")
153 $this->updated = $this->pg_obj->update();
154 if ($this->updated ===
true) {
155 $this->
ctrl->returnToParent($this,
"jump" . $this->hier_id);
158 $this->
form->setValuesByPost();
163 string $a_mode =
"edit" 174 $this->
lng->txt(
"cont_style"),
179 if ($a_mode ==
"edit" && $this->content_obj->getListType() ==
"Unordered" 180 && $this->content_obj->getStyleClass() !=
"" 181 && !in_array($this->content_obj->getStyleClass(), $options)) {
182 $options[$this->content_obj->getStyleClass()] =
183 $this->content_obj->getStyleClass();
185 if (count($options) > 1) {
186 foreach ($options as $k => $option) {
187 $html =
'<ul class="ilc_list_u_' . $k .
'"><li class="ilc_list_item_StandardListItem">' .
188 $option .
'</li></ul>';
189 if ($k ==
"BulletedList") {
192 $style->addOption($k, $option, $html);
198 $radg->addOption($op1);
205 $this->
lng->txt(
"cont_style"),
210 if ($a_mode ==
"edit" && $this->content_obj->getListType() ==
"Ordered" 211 && $this->content_obj->getStyleClass() !=
"" 212 && !in_array($this->content_obj->getStyleClass(), $options)) {
213 $options[$this->content_obj->getStyleClass()] =
214 $this->content_obj->getStyleClass();
216 if (count($options) > 1) {
217 foreach ($options as $k => $option) {
218 $html =
'<ol class="ilc_list_o_' . $k .
'"><li class="ilc_list_item_StandardListItem">' .
219 $option .
'</li></ol>';
220 if ($k ==
"NumberedList") {
223 $style->addOption($k, $option, $html);
226 $op2->addSubItem($style);
231 "Number" => $this->
lng->txt(
"cont_number_std"),
232 "Decimal" => $this->
lng->txt(
"cont_decimal"),
233 "Roman" => $this->
lng->txt(
"cont_roman"),
234 "roman" => $this->
lng->txt(
"cont_roman_s"),
235 "Alphabetic" => $this->
lng->txt(
"cont_alphabetic"),
236 "alphabetic" => $this->
lng->txt(
"cont_alphabetic_s")
239 $si->setOptions($options);
240 $op2->addSubItem($si);
246 $ni->setInfo(
$lng->
txt(
"cont_start_value_info"));
247 $op2->addSubItem($ni);
249 $radg->addOption($op2);
250 $radg->setValue(
"Unordered");
251 $this->
form->addItem($radg);
255 if ($a_mode ==
"create") {
256 for (
$i = 1;
$i <= 10;
$i++) {
260 $si->setOptions($options);
262 $this->
form->addItem($si);
266 if ($a_mode ==
"create") {
267 $this->
form->addCommandButton(
"create_list",
$lng->
txt(
"save"));
268 $this->
form->addCommandButton(
"cancelCreate",
$lng->
txt(
"cancel"));
269 $this->
form->setTitle(
$lng->
txt(
"cont_insert_list"));
271 $this->
form->addCommandButton(
"saveProperties",
$lng->
txt(
"save"));
272 $this->
form->addCommandButton(
"cancelUpdate",
$lng->
txt(
"cancel"));
273 $this->
form->setTitle(
$lng->
txt(
"cont_list_properties"));
276 $this->
form->setFormAction($this->
ctrl->getFormAction($this));
283 $values[
"start_value"] = $this->content_obj->getStartValue();
284 $values[
"list_type"] = $this->content_obj->getListType();
285 $values[
"numbering_type"] = $this->content_obj->getNumberingType();
286 if ($values[
"list_type"] ==
"Ordered") {
287 $values[
"number_style"] = $this->content_obj->getStyleClass();
288 $values[
"bullet_style"] =
"";
290 $values[
"bullet_style"] = $this->content_obj->getStyleClass();
291 $values[
"number_style"] =
"";
293 $this->
form->setValuesByArray($values);
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(ilPageObject $a_pg_obj, ?ilPageContent $a_content_obj, string $a_hier_id, string $a_pc_id="")
getCharacteristicsOfCurrentStyle(array $a_type)
Get characteristics of current style and call setCharacteristics, if style is given.
insert()
insert new list form
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...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
initListForm(string $a_mode="edit")
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
User Interface for Editing of Page Content Objects (Paragraphs, Tables, ...)
setContent(string $a_html)
Sets content for standard template.
setValue(string $a_value)
Class ilPageObject Handles PageObjects of ILIAS Learning Modules (see ILIAS DTD)
ilGlobalTemplateInterface $tpl
saveProperties()
Save properties.
form( $class_path, string $cmd)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(Container $dic, ilPlugin $plugin)
edit()
edit properties form