29 public function init(): void
36 parent::setNode($a_node);
47 $this->res_node = $this->dom->create_element(
"Resources");
48 $this->res_node = $this->node->append_child($this->res_node);
53 if (!empty($a_type)) {
54 $children = $this->res_node->child_nodes();
55 for (
$i = 0;
$i < count($children);
$i++) {
56 $this->res_node->remove_child($children[
$i]);
58 $list_node = $this->dom->create_element(
"ResourceList");
59 $list_node = $this->res_node->append_child($list_node);
60 $list_node->set_attribute(
"Type", $a_type);
66 if (!empty($a_ref_id)) {
67 $children = $this->res_node->child_nodes();
68 for (
$i = 0;
$i < count($children);
$i++) {
69 $this->res_node->remove_child($children[
$i]);
71 $list_node = $this->dom->create_element(
"ItemGroup");
72 $list_node = $this->res_node->append_child($list_node);
73 $list_node->set_attribute(
"RefId", $a_ref_id);
82 if (is_object($this->res_node)) {
83 $children = $this->res_node->child_nodes();
84 if (is_object($children[0]) && $children[0]->node_name() ==
"ResourceList") {
85 return $children[0]->get_attribute(
"Type");
96 if (is_object($this->res_node)) {
97 $children = $this->res_node->child_nodes();
98 if (is_object($children[0]) && $children[0]->node_name() ==
"ItemGroup") {
99 return (
int) $children[0]->get_attribute(
"RefId");
107 if (is_object($this->res_node)) {
108 $children = $this->res_node->child_nodes();
109 if (is_object($children[0])) {
110 return (
string) $children[0]->node_name();
128 $igs = $xpath_temp->query(
"//Resources/ItemGroup");
130 foreach ($igs as $ig_node) {
131 $ref_id = $ig_node->getAttribute(
"RefId");
133 $log->
debug(
"Ref Id Mapping:" . print_r($mappings,
true));
134 if (($mappings[
$ref_id] ?? 0) > 0) {
135 $ig_node->setAttribute(
"RefId", $mappings[$ref_id]);
144 return array(
"pc_res");
151 return self::modifyItemGroupRefIdsByMapping($page, $ref_mappings);
static resolveResources(ilPageObject $page, array $ref_mappings)
setType(string $a_type)
Set Type.
static getLogger(string $a_component_id)
Get component logger.
debug(string $a_message, array $a_context=array())
getResourceListType()
Get Resource List Type.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static modifyItemGroupRefIdsByMapping(ilPageObject $a_page, array $mappings)
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)
setResourceListType(string $a_type)
createPageContentNode(bool $a_set_this_node=true)
Create page content node (always use this method first when adding a new element) ...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
create(ilPageObject $a_pg_obj, string $a_hier_id, string $a_pc_id="")
setNode(php4DOMElement $a_node)
getItemGroupRefId()
Get item group ref id.
setItemGroupRefId(int $a_ref_id)