30 public function init(): void
37 parent::setNode($a_node);
48 $this->list_node = $this->dom->create_element(
"List");
49 $this->list_node = $this->node->append_child($this->list_node);
57 for (
$i = 1;
$i <= $a_nr;
$i++) {
58 $new_item = $this->dom->create_element(
"ListItem");
59 $new_item = $this->list_node->append_child($new_item);
69 if ($this->list_node->get_attribute(
"Type") ==
"Unordered") {
73 $nt = $this->list_node->get_attribute(
"NumberingType");
90 if ($this->list_node->get_attribute(
"Type") ==
"Unordered") {
98 $this->list_node->set_attribute(
"Type", $a_val);
106 $nt = $this->list_node->get_attribute(
"NumberingType");
124 $this->list_node->set_attribute(
"NumberingType", $a_val);
126 if ($this->list_node->has_attribute(
"NumberingType")) {
127 $this->list_node->remove_attribute(
"NumberingType");
135 $this->list_node->set_attribute(
"StartValue", $a_val);
137 if ($this->list_node->has_attribute(
"StartValue")) {
138 $this->list_node->remove_attribute(
"StartValue");
145 return (
int) $this->list_node->get_attribute(
"StartValue");
150 if (!in_array($a_val, array(
"",
"BulletedList",
"NumberedList"))) {
151 $this->list_node->set_attribute(
"Class", $a_val);
153 if ($this->list_node->has_attribute(
"Class")) {
154 $this->list_node->remove_attribute(
"Class");
161 return $this->list_node->get_attribute(
"Class");
setType(string $a_type)
Set Type.
create(ilPageObject $a_pg_obj, string $a_hier_id, string $a_pc_id="")
getOrderType()
Get order type.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setStartValue(int $a_val)
insertContent(ilPageContent $a_cont_obj, string $a_pos, int $a_mode=IL_INSERT_AFTER, string $a_pcid="", bool $remove_placeholder=true)
insert a content node before/after a sibling or as first child of a parent
Class ilPageObject Handles PageObjects of ILIAS Learning Modules (see ILIAS DTD)
setNode(php4DOMElement $a_node)
getNumberingType()
Get numbering type.
createPageContentNode(bool $a_set_this_node=true)
Create page content node (always use this method first when adding a new element) ...
setListType(string $a_val)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setNumberingType(string $a_val)
addItems(int $a_nr)
Add a number of items to list.
php4DOMElement $list_node
setStyleClass(string $a_val)