27 public function init(): void
38 $new_item = $this->dom_doc->createElement(
"FileItem");
39 if ($next_li = $li->nextSibling) {
40 $new_item = $next_li->parentNode->insertBefore($new_item, $next_li);
42 $parent_list = $li->parentNode;
43 $new_item = $parent_list->appendChild($new_item);
47 $id_node = $this->dom_doc->createElement(
"Identifier");
48 $id_node = $new_item->appendChild($id_node);
49 $id_node->setAttribute(
"Catalog",
"ILIAS");
50 $id_node->setAttribute(
"Entry",
"il__file_" . $a_id);
53 $loc_node = $this->dom_doc->createElement(
"Location");
54 $loc_node = $new_item->appendChild($loc_node);
55 $loc_node->setAttribute(
"Type",
"LocalFile");
56 $this->dom_util->setContent($loc_node, $a_location);
59 $form_node = $this->dom_doc->createElement(
"Format");
60 $form_node = $new_item->appendChild($form_node);
61 $this->dom_util->setContent($form_node, $a_format);
74 $new_item = $this->dom_doc->createElement(
"FileItem");
75 $new_item = $li->parentNode->insertBefore($new_item, $li);
78 $id_node = $this->dom_doc->createElement(
"Identifier");
79 $id_node = $new_item->appendChild($id_node);
80 $id_node->setAttribute(
"Catalog",
"ILIAS");
81 $id_node->setAttribute(
"Entry",
"il__file_" . $a_id);
84 $loc_node = $this->dom_doc->createElement(
"Location");
85 $loc_node = $new_item->appendChild($loc_node);
86 $loc_node->setAttribute(
"Type",
"LocalFile");
87 $this->dom_util->setContent($loc_node, $a_location);
90 $form_node = $this->dom_doc->createElement(
"Format");
91 $form_node = $new_item->appendChild($form_node);
92 $this->dom_util->setContent($form_node, $a_format);
101 $li->parentNode->removeChild($li);
110 $next = $li->nextSibling;
111 $next_copy = $next->cloneNode(
true);
112 $next_copy = $li->parentNode->insertBefore($next_copy, $li);
113 $next->parentNode->removeChild($next);
122 $prev = $li->previousSibling;
123 $li_copy = $li->cloneNode(
true);
124 $li_copy = $prev->parentNode->insertBefore($li_copy, $prev);
125 $li->parentNode->removeChild($li);
130 $list = $this->
getDomNode()->parentNode->parentNode;
131 return $list->getAttribute(
"PCID");
deleteItem()
Delete file item.
setType(string $a_type)
Set Type.
newItemAfter(int $a_id, string $a_location, string $a_format)
Content object of ilPageObject (see ILIAS DTD).
newItemBefore(int $a_id, string $a_location, string $a_format)
insert new list item before current one
moveItemDown()
move list item down
moveItemUp()
move list item up
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...