5 require_once(
"./Services/COPage/classes/class.ilPageContent.php");
35 $new_tab =& $this->dom->create_element(
"Tab");
36 if ($next_tab =&
$tab->next_sibling())
38 $new_tab =& $next_tab->insert_before($new_tab, $next_tab);
42 $parent_tabs =
$tab->parent_node();
43 $new_tab =& $parent_tabs->append_child($new_tab);
54 $new_tab = $this->dom->create_element(
"Tab");
55 $new_tab =
$tab->insert_before($new_tab,
$tab);
74 $next =
$tab->next_sibling();
75 $next_copy = $next->clone_node(
true);
76 $next_copy =
$tab->insert_before($next_copy,
$tab);
86 $prev =
$tab->previous_sibling();
87 $tab_copy =
$tab->clone_node(
true);
88 $tab_copy =& $prev->insert_before($tab_copy, $prev);