27 public function init(): void
36 $parent_tr = $td->parent_node();
37 $new_tr = $parent_tr->clone_node(
true);
40 if ($new_tr->has_attribute(
"PCID")) {
41 $new_tr->remove_attribute(
"PCID");
43 if ($next_tr = $parent_tr->next_sibling()) {
44 $new_tr = $next_tr->insert_before($new_tr, $next_tr);
46 $parent_table = $parent_tr->parent_node();
47 $new_tr = $parent_table->append_child($new_tr);
60 $parent_tr = $td->parent_node();
61 $new_tr = $parent_tr->clone_node(
true);
62 $new_tr = $parent_tr->insert_before($new_tr, $parent_tr);
63 if ($new_tr->has_attribute(
"PCID")) {
64 $new_tr->remove_attribute(
"PCID");
81 for (
$i = 0;
$i < count($tds);
$i++) {
82 if ($tds[
$i]->has_attribute(
"PCID")) {
83 $tds[
$i]->remove_attribute(
"PCID");
85 $td_childs = $tds[
$i]->child_nodes();
86 for ($j = 0; $j < count($td_childs); $j++) {
87 $tds[
$i]->remove_child($td_childs[$j]);
99 for ($j = 0; $j < count($td_childs); $j++) {
108 $parent_tr = $td->parent_node();
109 $parent_tr->unlink($parent_tr);
121 $col_nr = array_pop(
$parts);
124 $parent_tr = $td->parent_node();
125 $parent_table = $parent_tr->parent_node();
128 $rows = $parent_table->child_nodes();
130 if (
$rows[
$i]->node_name() ==
"TableRow") {
132 $tds =
$rows[
$i]->child_nodes();
133 $new_td = $tds[$col_nr]->clone_node(
true);
135 if ($new_td->has_attribute(
"PCID")) {
136 $new_td->remove_attribute(
"PCID");
140 if ($next_td = $tds[$col_nr]->next_sibling()) {
141 $new_td = $next_td->insert_before($new_td, $next_td);
143 $new_td =
$rows[
$i]->append_child($new_td);
159 $col_nr = array_pop(
$parts);
161 $parent_tr = $td->parent_node();
162 $parent_table = $parent_tr->parent_node();
165 $rows = $parent_table->child_nodes();
167 if (
$rows[
$i]->node_name() ==
"TableRow") {
169 $tds =
$rows[
$i]->child_nodes();
170 $new_td = $tds[$col_nr]->clone_node(
true);
172 if ($new_td->has_attribute(
"PCID")) {
173 $new_td->remove_attribute(
"PCID");
177 $new_td = $tds[$col_nr]->insert_before($new_td, $tds[$col_nr]);
192 $col_nr = array_pop(
$parts);
195 $parent_tr = $td->parent_node();
196 $parent_table = $parent_tr->parent_node();
199 $rows = $parent_table->child_nodes();
201 if (
$rows[
$i]->node_name() ==
"TableRow") {
203 $tds =
$rows[
$i]->child_nodes();
204 $tds[$col_nr]->unlink($tds[$col_nr]);
214 $tr = $td->parent_node();
215 $next = $tr->next_sibling();
216 $next_copy = $next->clone_node(
true);
217 $next_copy = $tr->insert_before($next_copy, $tr);
218 $next->unlink($next);
226 $tr = $td->parent_node();
227 $prev = $tr->previous_sibling();
228 $tr_copy = $tr->clone_node(
true);
229 $tr_copy = $prev->insert_before($tr_copy, $prev);
242 $col_nr = array_pop(
$parts);
245 $parent_tr = $td->parent_node();
246 $parent_table = $parent_tr->parent_node();
249 $rows = $parent_table->child_nodes();
251 if (
$rows[
$i]->node_name() ==
"TableRow") {
252 $tds =
$rows[
$i]->child_nodes();
255 $next = $td->next_sibling();
256 $next_copy = $next->clone_node(
true);
257 $next_copy = $td->insert_before($next_copy, $td);
258 $next->unlink($next);
272 $col_nr = array_pop(
$parts);
275 $parent_tr = $td->parent_node();
276 $parent_table = $parent_tr->parent_node();
279 $rows = $parent_table->child_nodes();
281 if (
$rows[
$i]->node_name() ==
"TableRow") {
282 $tds =
$rows[
$i]->child_nodes();
284 $prev = $td->previous_sibling();
285 $td_copy = $td->clone_node(
true);
286 $td_copy = $prev->insert_before($td_copy, $prev);
296 $tr = $td->parent_node();
297 $table = $tr->parent_node();
298 $this->table_pc_node = $table->parent_node();
304 $table_obj->setNode($this->table_pc_node);
305 $table_obj->readHierId();
306 $table_obj->readPCId();
307 $table_obj->fixHideAndSpans();
setType(string $a_type)
Set Type.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
if($clientAssertionType !='urn:ietf:params:oauth:client-assertion-type:jwt-bearer'|| $grantType !='client_credentials') $parts
deleteTDContent(php4DOMElement $a_td_node)
delete content of a cell (not the cell itself)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
deleteRowContent(php4DOMElement $a_row_node)
delete content of cells of a row (not the cells itself)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
php4DOMElement $table_pc_node