24 require_once(
"./Services/COPage/classes/class.ilPageContent.php");
51 parent::setNode($a_node);
52 $this->grid_node = $a_node->first_child();
65 return array(
"s" =>
"s",
"m" =>
"m",
"l" =>
"l",
"xl" =>
"xl");
75 "1" =>
"1/12",
"2" =>
"2/12",
"3" =>
"3/12",
76 "4" =>
"4/12",
"5" =>
"5/12",
"6" =>
"6/12",
77 "7" =>
"7/12",
"8" =>
"8/12",
"9" =>
"9/12",
78 "10" =>
"10/12",
"11" =>
"11/12",
"12" =>
"12/12" 85 public function create($a_pg_obj, $a_hier_id, $a_pc_id =
"")
89 $this->grid_node = $this->dom->create_element(
"Grid");
90 $this->grid_node = $this->node->append_child($this->grid_node);
102 int $post_layout_template,
103 int $number_of_cells,
109 switch ($post_layout_template) {
135 for (
$i = 0;
$i < (int) $number_of_cells;
$i++) {
174 $childs = $this->grid_node->child_nodes();
176 for (
$i = 0;
$i < count($childs);
$i++) {
177 if ($childs[
$i]->node_name() ==
"GridCell") {
178 $pc_id = $childs[
$i]->get_attribute(
"PCID");
179 $hier_id = $childs[
$i]->get_attribute(
"HierId");
180 $nodes[
$hier_id .
":" . $pc_id] = $childs[
$i];
181 $childs[
$i]->unlink($childs[
$i]);
185 foreach ($a_pos as $k => $v) {
186 if (is_object($nodes[$k])) {
187 $nodes[$k] = $this->grid_node->append_child($nodes[$k]);
195 public function saveWidths($a_width_s, $a_width_m, $a_width_l, $a_width_xl)
197 $cell_nodes = $this->grid_node->child_nodes();
198 for (
$i = 0;
$i < count($cell_nodes);
$i++) {
199 if ($cell_nodes[
$i]->node_name() ==
"GridCell") {
200 $pc_id = $cell_nodes[
$i]->get_attribute(
"PCID");
201 $hier_id = $cell_nodes[
$i]->get_attribute(
"HierId");
203 $cell_nodes[
$i]->set_attribute(
"WIDTH_XS",
"");
204 $cell_nodes[
$i]->set_attribute(
"WIDTH_S", $a_width_s[$k]);
205 $cell_nodes[
$i]->set_attribute(
"WIDTH_M", $a_width_m[$k]);
206 $cell_nodes[
$i]->set_attribute(
"WIDTH_L", $a_width_l[$k]);
207 $cell_nodes[
$i]->set_attribute(
"WIDTH_XL", $a_width_xl[$k]);
218 $childs = $this->grid_node->child_nodes();
219 for (
$i = 0;
$i < count($childs);
$i++) {
220 if ($childs[
$i]->node_name() ==
"GridCell") {
221 if ($a_pc_id == $childs[
$i]->get_attribute(
"PCID") &&
222 $a_hier_id == $childs[
$i]->get_attribute(
"HierId")) {
223 $childs[
$i]->unlink($childs[
$i]);
234 $new_item = $this->dom->create_element(
"GridCell");
235 $new_item = $this->grid_node->append_child($new_item);
237 $new_item->set_attribute(
"WIDTH_XS",
"");
238 $new_item->set_attribute(
"WIDTH_S", $a_s);
239 $new_item->set_attribute(
"WIDTH_M", $a_m);
240 $new_item->set_attribute(
"WIDTH_L", $a_l);
241 $new_item->set_attribute(
"WIDTH_XL", $a_xl);
249 $new_item = $this->dom->create_element(
"GridCell");
250 $new_item->set_attribute(
"WIDTH_XS",
"");
251 $new_item->set_attribute(
"WIDTH_S",
"");
252 $new_item->set_attribute(
"WIDTH_M",
"");
253 $new_item->set_attribute(
"WIDTH_L",
"");
254 $new_item->set_attribute(
"WIDTH_XL",
"");
255 $this->grid_node->append_child($new_item);
264 return array(
"pc_grid",
"pc_grid_cell",
"ed_delete_cell",
"ed_cell_left",
"ed_cell_right");
272 return parent::getJavascriptFiles($a_mode);
280 return parent::getCssFiles($a_mode);
286 $cell_nodes = $this->grid_node->child_nodes();
288 for (
$i = 0;
$i < count($cell_nodes);
$i++) {
289 if ($cell_nodes[
$i]->node_name() ==
"GridCell") {
290 $pc_id = $cell_nodes[
$i]->get_attribute(
"PCID");
291 $hier_id = $cell_nodes[
$i]->get_attribute(
"HierId");
292 $cells[] = array(
"pos" => $k,
293 "xs" => $cell_nodes[
$i]->get_attribute(
"WIDTH_XS"),
294 "s" => $cell_nodes[
$i]->get_attribute(
"WIDTH_S"),
295 "m" => $cell_nodes[
$i]->get_attribute(
"WIDTH_M"),
296 "l" => $cell_nodes[
$i]->get_attribute(
"WIDTH_L"),
297 "xl" => $cell_nodes[
$i]->get_attribute(
"WIDTH_XL"),
298 "pc_id" => $pc_id,
"hier_id" =>
$hier_id);
static getWidths()
Get widths.
const TEMPLATE_TWO_BY_TWO
saveWidths($a_width_s, $a_width_m, $a_width_l, $a_width_xl)
Save widths of cells.
addGridCell($a_s, $a_m, $a_l, $a_xl)
Add grid cell.
setNode($a_node)
Set content node.
savePositions($a_pos)
Set attribute of grid tag.
deleteGridCell($a_hier_id, $a_pc_id)
Delete grid cell.
const TEMPLATE_TWO_COLUMN
setType($a_type)
Set Type.
create($a_pg_obj, $a_hier_id, $a_pc_id="")
Create new Grid node.
init()
Init page content component.
const TEMPLATE_THREE_COLUMN
static getLangVars()
Get lang vars needed for editing.
createPageContentNode($a_set_this_node=true)
Create page content node (always use this method first when adding a new element) ...
getJavascriptFiles($a_mode)
Get Javascript files.
applyTemplate(int $post_layout_template, int $number_of_cells, $s, $m, $l, $xl)
getCssFiles($a_mode)
Get Javascript files.
static getSizes()
Get sizes.