24 require_once(
"./Services/COPage/classes/class.ilPageContent.php");
54 $new_tab =& $this->dom->create_element(
"Tab");
55 if ($next_tab =&
$tab->next_sibling())
57 $new_tab =& $next_tab->insert_before($new_tab, $next_tab);
61 $parent_tabs =
$tab->parent_node();
62 $new_tab =& $parent_tabs->append_child($new_tab);
73 $new_tab = $this->dom->create_element(
"Tab");
74 $new_tab =
$tab->insert_before($new_tab,
$tab);
93 $next =
$tab->next_sibling();
94 $next_copy = $next->clone_node(
true);
95 $next_copy =
$tab->insert_before($next_copy,
$tab);
105 $prev =
$tab->previous_sibling();
106 $tab_copy =
$tab->clone_node(
true);
107 $tab_copy =& $prev->insert_before($tab_copy, $prev);