28 public function init(): void
35 parent::setNode($a_node);
46 $this->tab_node = $this->dom->create_element(
"Table");
47 $this->tab_node = $this->node->append_child($this->tab_node);
48 $this->tab_node->set_attribute(
"Language",
"");
53 $new_tr = $this->dom->create_element(
"TableRow");
63 $new_td = $this->dom->create_element(
"TableData");
69 $new_par = $this->dom->create_element(
"Paragraph");
70 $new_par = $new_pg->append_child($new_par);
71 $new_par->set_attribute(
"Language", $a_lang);
72 $new_par->set_attribute(
"Characteristic",
"TableContent");
73 $new_par->set_content($a_data);
74 $new_td->append_child($new_pg);
87 if (is_object($cell_par)) {
89 $childs = $cell_par->child_nodes();
90 for ($i = 0; $i < count($childs); $i++) {
91 $content .= $this->dom->dump_node($childs[$i]);
106 "/Table/TableRow[$i+1]/TableData[$j+1]/PageContent[1]/Paragraph[1]";
111 if (isset(
$res->nodeset[0])) {
112 return $res->nodeset[0];
114 if (!$create_if_not_exists) {
118 $path2 =
"//PageContent[@HierId='" . $this->
getHierId() .
"']" .
119 "/Table/TableRow[" . ($i + 1) .
"]/TableData[" . ($j + 1) .
"]";
124 $td_node = $res2->nodeset[0];
126 if (is_object($td_node)) {
128 $children = $td_node->child_nodes();
129 for ($i = 0; $i < count($children); $i++) {
130 $td_node->remove_child($children[$i]);
135 $pc_node = $td_node->append_child($pc_node);
136 $par_node = $this->dom->create_element(
"Paragraph");
137 $par_node = $pc_node->append_child($par_node);
138 $par_node->set_attribute(
"Characteristic",
"TableContent");
139 $par_node->set_attribute(
154 public function addRows(
int $a_nr_rows,
int $a_nr_cols): void
156 for (
$i = 1;
$i <= $a_nr_rows;
$i++) {
158 for ($j = 1; $j <= $a_nr_cols; $j++) {
173 str_replace($a_data,
"\r",
"\n");
174 str_replace($a_data,
"\n\n",
"\n");
175 $target_rows = array();
176 $rows = explode(
"\n", $a_data);
180 foreach (
$rows as $row) {
181 $cells = explode(
"\t", $row);
182 $max_cols = ($max_cols > count($cells))
185 $target_rows[] = $cells;
189 foreach ($target_rows as $row) {
191 for ($j = 0; $j < $max_cols; $j++) {
193 $data = str_replace(
"&",
"&", ($row[$j] ??
""));
256 $this->tab_node->set_attribute(
"HorizontalAlign", $a_halign);
274 if ($a_pc_id ==
"") {
275 $path =
"//TableData[@HierId = '" . $a_hier_id .
"']";
277 $path =
"//TableData[@PCID = '" . $a_pc_id .
"']";
281 if (count(
$res->nodeset) == 1) {
282 if ($a_width !=
"") {
283 $res->nodeset[0]->set_attribute(
"Width", $a_width);
285 if (
$res->nodeset[0]->has_attribute(
"Width")) {
286 $res->nodeset[0]->remove_attribute(
"Width");
297 $rows = $this->tab_node->child_nodes();
298 foreach (
$rows as $row) {
299 if ($row->node_name() ==
"TableRow") {
301 $cells = $row->child_nodes();
302 foreach ($cells as $cell) {
303 if ($cell->node_name() ==
"TableData") {
304 $ckey = $cell->get_attribute(
"HierId") .
":" . $cell->get_attribute(
"PCID");
305 if ((
int) ($a_colspans[$ckey] ?? 0) > 1) {
306 $cell->set_attribute(
"ColSpan", (
int) $a_colspans[$ckey]);
308 if ($cell->has_attribute(
"ColSpan")) {
309 $cell->remove_attribute(
"ColSpan");
312 if ((
int) ($a_rowspans[$ckey] ?? 0) > 1) {
313 $cell->set_attribute(
"RowSpan", (
int) $a_rowspans[$ckey]);
315 if ($cell->has_attribute(
"RowSpan")) {
316 $cell->remove_attribute(
"RowSpan");
339 $rows = $this->tab_node->child_nodes();
341 foreach (
$rows as $row) {
342 if ($row->node_name() ==
"TableRow") {
344 $cells = $row->child_nodes();
345 foreach ($cells as $cell) {
346 if ($cell->node_name() ==
"TableData") {
347 $max_x = max($max_x, $x);
348 $max_y = max($max_y, $y);
360 $rows = $this->tab_node->child_nodes();
361 foreach (
$rows as $row) {
362 if ($row->node_name() ==
"TableRow") {
364 $cells = $row->child_nodes();
365 foreach ($cells as $cell) {
366 if ($cell->node_name() ==
"TableData") {
367 $cspan = max(1, (
int) $cell->get_attribute(
"ColSpan"));
368 $rspan = max(1, (
int) $cell->get_attribute(
"RowSpan"));
371 if ($cspan > $max_x - $x + 1) {
372 $cell->set_attribute(
"ColSpan", $max_x - $x + 1);
373 $cspan = $max_x - $x + 1;
375 if ($rspan > $max_y - $y + 1) {
376 $cell->set_attribute(
"RowSpan", $max_y - $y + 1);
377 $rspan = $max_y - $y + 1;
383 $cell->set_attribute(
"Hidden",
"Y");
386 if ($cell->has_attribute(
"ColSpan")) {
387 $cell->remove_attribute(
"ColSpan");
389 if ($cell->has_attribute(
"RowSpan")) {
390 $cell->remove_attribute(
"RowSpan");
395 if ($cell->has_attribute(
"Hidden")) {
396 $cell->remove_attribute(
"Hidden");
400 $colspans[$x][$y] = $cspan;
401 $rowspans[$x][$y] = $rspan;
418 for (
$i = 0;
$i < count($children);
$i++) {
426 public function checkCellHidden(array $colspans, array $rowspans,
int $x,
int $y): bool
428 for (
$i = 0;
$i <= $x;
$i++) {
429 for ($j = 0; $j <= $y; $j++) {
430 if (
$i != $x || $j != $y) {
431 if (((
$i + $colspans[
$i][$j] > $x) &&
432 ($j + $rowspans[
$i][$j] > $y))) {
447 $rows = $this->tab_node->child_nodes();
448 foreach (
$rows as $row) {
449 if ($row->node_name() ==
"TableRow") {
450 $cells = $row->child_nodes();
451 foreach ($cells as $cell) {
452 if ($cell->node_name() ==
"TableData") {
453 $classes[$cell->get_attribute(
"HierId") .
":" . $cell->get_attribute(
"PCID")]
454 = $cell->get_attribute(
"Class");
466 $rows = $this->tab_node->child_nodes();
467 foreach (
$rows as $row) {
468 if ($row->node_name() ==
"TableRow") {
469 $cells = $row->child_nodes();
470 foreach ($cells as $cell) {
471 if ($cell->node_name() ==
"TableData") {
472 $classes[$cell->get_attribute(
"HierId") .
":" . $cell->get_attribute(
"PCID")]
473 = $cell->get_attribute(
"HorizontalAlign");
488 $rows = $this->tab_node->child_nodes();
492 foreach (
$rows as $row) {
493 if ($row->node_name() ==
"TableRow") {
495 $cells = $row->child_nodes();
496 foreach ($cells as $cell) {
497 if ($cell->node_name() ==
"TableData") {
498 $spans[$cell->get_attribute(
"HierId") .
":" . $cell->get_attribute(
"PCID")]
499 = array(
"x" => $x,
"y" => $y,
"colspan" => $cell->get_attribute(
"ColSpan"),
500 "rowspan" => $cell->get_attribute(
"RowSpan"));
501 $max_x = max($max_x, $x);
502 $max_y = max($max_y, $y);
509 foreach ($spans as $k => $v) {
510 $spans[$k][
"max_x"] = $max_x;
511 $spans[$k][
"max_y"] = $max_y;
524 $rows = $this->tab_node->child_nodes();
525 foreach (
$rows as $row) {
526 if ($row->node_name() ==
"TableRow") {
527 $cells = $row->child_nodes();
528 foreach ($cells as $cell) {
529 if ($cell->node_name() ==
"TableData") {
530 $widths[$cell->get_attribute(
"HierId") .
":" . $cell->get_attribute(
"PCID")]
531 = $cell->get_attribute(
"Width");
549 if ($a_pc_id ==
"") {
550 $path =
"//TableData[@HierId = '" . $a_hier_id .
"']";
552 $path =
"//TableData[@PCID = '" . $a_pc_id .
"']";
555 if (count(
$res->nodeset) == 1) {
556 if ($a_class !=
"") {
557 $res->nodeset[0]->set_attribute(
"Class", $a_class);
559 if (
$res->nodeset[0]->has_attribute(
"Class")) {
560 $res->nodeset[0]->remove_attribute(
"Class");
575 if ($a_pc_id ==
"") {
576 $path =
"//TableData[@HierId = '" . $a_hier_id .
"']";
578 $path =
"//TableData[@PCID = '" . $a_pc_id .
"']";
581 if (count(
$res->nodeset) == 1) {
582 if ($a_class !=
"") {
583 $res->nodeset[0]->set_attribute(
"HorizontalAlign", $a_class);
585 if (
$res->nodeset[0]->has_attribute(
"HorizontalAlign")) {
586 $res->nodeset[0]->remove_attribute(
"HorizontalAlign");
597 $path =
"//PageContent[@HierId = '" .
$hier_id .
"']/Table/Caption";
600 if (count(
$res->nodeset) == 1) {
601 return $res->nodeset[0]->get_content();
615 $path =
"//PageContent[@HierId = '" .
$hier_id .
"']/Table/Caption";
617 if (count(
$res->nodeset) == 1) {
618 return $res->nodeset[0]->get_attribute(
"Align");
624 public function setCaption(
string $a_content,
string $a_align): void
626 if ($a_content !=
"") {
631 array(
"Summary",
"TableRow"),
633 array(
"Align" => $a_align)
648 switch (strtolower($n->node_name())) {
678 switch (strtolower($n->node_name())) {
699 if ($n->node_type() == XML_ELEMENT_NODE &&
700 strcasecmp($n->node_name(),
"td") == 0) {
714 $aCell = $this->
addCell($aRow);
716 $par->createAtNode($aCell);
717 $par->setText($par->input2xml($this->extractText($cellNode)));
718 $par->setCharacteristic(
"TableContent");
719 $par->setLanguage($lng);
730 $total_children = count($children);
731 for (
$i = 0;
$i < $total_children;
$i++) {
732 $cur_child_node = $children[
$i];
733 $output .= $owner_document->dump_node($cur_child_node);
751 $path =
"//table[1] | //Table[1]";
754 if (count(
$res->nodeset) == 0) {
755 $error =
"Could not find a table root node";
759 for (
$i = 0;
$i < count(
$res->nodeset);
$i++) {
766 if ($n->node_type() == XML_ELEMENT_NODE &&
767 strcasecmp($n->node_name(),
"tr") == 0) {
776 if (is_array($error)) {
778 foreach ($error as $errorline) { # Loop through all errors
779 $errmsg .=
"[" . $errorline[
'line'] .
", " . $errorline[
'col'] .
"]: " . $errorline[
'errormessage'] .
" at Node '" . $errorline[
'nodename'] .
"'<br />";
785 if (empty($errmsg)) {
795 $childs = $this->tab_node->child_nodes();
796 foreach ($childs as $child) {
797 if ($child->node_name() ==
"TableRow") {
798 $gchilds = $child->child_nodes();
799 foreach ($gchilds as $gchild) {
800 if ($gchild->node_name() ==
"TableData") {
801 $gchild->set_attribute(
"Class", $a_class);
879 if (!empty($a_value)) {
880 $this->tab_node->set_attribute($a_attr, $a_value);
882 if ($this->tab_node->has_attribute($a_attr)) {
883 $this->tab_node->remove_attribute($a_attr);
890 if (is_object($this->tab_node)) {
891 return $this->tab_node->get_attribute($a_attr);
898 return array(
"ed_insert_dtable",
"ed_insert_atable",
"ed_new_row_after",
"ed_new_row_before",
899 "ed_new_col_after",
"ed_new_col_before",
"ed_delete_col",
900 "ed_delete_row",
"ed_edit_data",
"ed_row_up",
"ed_row_down",
901 "ed_col_left",
"ed_col_right");
907 bool $a_self_ass =
true,
908 bool $a_clone_mobs =
false,
909 int $new_parent_id = 0,
913 $nodes = $xpath->query(
"//Table");
914 foreach ($nodes as
$node) {
915 $node->removeAttribute(
"Id");
921 $model = new \stdClass();
923 $rows = $this->tab_node->child_nodes();
926 foreach (
$rows as $row) {
927 if ($row->node_name() ==
"TableRow") {
929 $cells = $row->child_nodes();
930 foreach ($cells as $cell) {
931 if ($cell->node_name() ==
"TableData") {
938 $model->content[$y][$x] = $text;
xpath_eval(php4DOMXPath $xpath_context, string $eval_str, $contextnode=null)
setNode(php4DOMElement $a_node)
importSpreadsheet(string $a_lang, string $a_data)
import from table
setType(string $a_type)
Set Type.
setCellPadding(string $a_padding)
addRows(int $a_nr_rows, int $a_nr_cols)
add rows to table
static setFirstOptionalElement(php4DOMDocument $doc, php4DOMElement $parent_node, string $a_node_name, array $a_successors, string $a_content, array $a_attributes, bool $a_remove_childs=true)
searches for an element $a_node_name within the childs of $parent_node if no node is found...
static xml2outputJS(string $s_text)
Prepare content for js output.
checkCellHidden(array $colspans, array $rowspans, int $x, int $y)
Check hidden status.
setCellSpacing(string $a_spacing)
create(ilPageObject $a_pg_obj, string $a_hier_id, string $a_pc_id="")
set_attribute($name, $value)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static deleteAllChildsByName(php4DOMElement $a_parent, array $a_node_names)
delete all childs of a node by names in $a_node_names
setTDAlignment(string $a_hier_id, string $a_class, string $a_pc_id="")
set alignment of table data cell
getCellNode(int $i, int $j, bool $create_if_not_exists=false)
Get cell paragraph node of row $i and cell $j.
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
setTDWidth(string $a_hier_id, string $a_width, string $a_pc_id="")
set width of table data cell
extractText(php4DOMElement $node)
static xml2output(string $a_text, bool $a_wysiwyg=false, bool $a_replace_lists=true, bool $unmask=true)
Converts xml from DB to output in edit textarea.
importCell(string $lng, php4DOMElement $cellNode, php4DOMElement $aRow)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setCaption(string $a_content, string $a_align)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setTableAttribute(string $a_attr, string $a_value)
Set attribute of table tag.
xpath_new_context($dom_document)
domxml_open_mem($str, $mode=0, &$error=null)
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
setHorizontalAlign(string $a_halign)
Class ilPageObject Handles PageObjects of ILIAS Learning Modules (see ILIAS DTD)
importTableAttributes(php4DOMElement $node)
static handleCopiedContent(DOMDocument $a_domdoc, bool $a_self_ass=true, bool $a_clone_mobs=false, int $new_parent_id=0, int $obj_copy_id=0)
getCellText(int $i, int $j)
Get cell text of row $i and cell $j.
createPageContentNode(bool $a_set_this_node=true)
Create page content node (always use this method first when adding a new element) ...
getAllCellWidths()
Get all cell widths.
setFirstRowStyle(string $a_class)
getCaptionAlign()
get caption alignment (Top | Bottom)
setBorder(string $a_border)
getAllCellSpans()
Get all cell spans.
setWidth(string $a_width)
makeEmptyCell(php4DOMElement $td_node)
Make cell empty.
importCellAttributes(php4DOMElement $node, php4DOMElement $par)
setTDSpans(array $a_colspans, array $a_rowspans)
setClass(string $a_class)
Set Style Class of table.
importHtml(string $lng, string $htmlTable)
getTableAttribute(string $a_attr)
setTDClass(string $a_hier_id, string $a_class, string $a_pc_id="")
set class of table data cell
setTemplate(string $a_template)
addCell(php4DOMElement $aRow, string $a_data="", string $a_lang="")
getAllCellClasses()
Get all cell classes.
importRow(string $lng, php4DOMElement $node)
setLanguage(string $a_lang)
const DOMXML_LOAD_PARSING
fixHideAndSpans()
Fix Hide and Spans.