24 require_once(
"./Services/COPage/classes/class.ilPageContent.php");
25 require_once(
"./Services/COPage/classes/class.ilPCTable.php");
53 parent::setNode($a_node);
54 $this->tab_node = $a_node->first_child();
57 public function create(&$a_pg_obj, $a_hier_id, $a_pc_id =
"")
61 $this->tab_node = $this->dom->create_element(
"Table");
62 $this->tab_node = $this->node->append_child($this->tab_node);
63 $this->tab_node->set_attribute(
"Language",
"");
64 $this->tab_node->set_attribute(
"DataTable",
"y");
74 $children = $td_node->child_nodes();
75 for (
$i = 0;
$i < count($children);
$i++) {
76 $td_node->remove_child($children[
$i]);
81 $pc_node = $td_node->append_child($pc_node);
82 $par_node = $this->dom->create_element(
"Paragraph");
83 $par_node = $pc_node->append_child($par_node);
84 $par_node->set_attribute(
"Characteristic",
"TableContent");
85 $par_node->set_attribute(
99 if (is_array($a_data)) {
100 foreach ($a_data as
$i => $row) {
101 if (is_array($row)) {
102 foreach ($row as $j => $cell) {
105 '<?xml version="1.0" encoding="UTF-8"?><Paragraph>' . $cell .
'</Paragraph>',
114 if (empty($error) && is_object($par_node)) {
116 $children = $par_node->child_nodes();
117 for ($k = 0; $k < count($children); $k++) {
118 $par_node->remove_child($children[$k]);
123 $path =
"//Paragraph";
126 if (count(
$res->nodeset) == 1) {
127 $new_par_node =
$res->nodeset[0];
128 $new_childs = $new_par_node->child_nodes();
129 for ($l = 0; $l < count($new_childs); $l++) {
130 $cloned_child = $new_childs[$l]->clone_node(
true);
131 $par_node->append_child($cloned_child);
136 if (!empty($error)) {
setData($a_data)
Set data of cells.
xpath_new_context($dom_document)
init()
Init page content component.
domxml_open_mem($str, $mode=0, &$error=null)
xpath_eval($xpath_context, $eval_str, $contextnode=null)
setType($a_type)
Set Type.
create(&$a_pg_obj, $a_hier_id, $a_pc_id="")
foreach($_POST as $key=> $value) $res
getCellNode($i, $j, $create_if_not_exists=false)
Get cell paragraph node of row $i and cell $j.
createPageContentNode($a_set_this_node=true)
Create page content node (always use this method first when adding a new element) ...
makeEmptyCell($td_node)
Make cell empty.
const DOMXML_LOAD_PARSING
getLanguage()
get table language