1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
|
<?php
/*
** Zabbix
** Copyright (C) 2001-2021 Zabbix SIA
**
** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation; either version 2 of the License, or
** (at your option) any later version.
**
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software
** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
**/
class CTable extends CTag {
protected $colgroup;
protected $header;
protected $footer;
protected $colnum;
protected $rownum;
protected $heading_column;
public function __construct() {
parent::__construct('table', true);
$this->rownum = 0;
$this->colgroup = '';
$this->header = '';
$this->footer = '';
$this->colnum = 1;
$this->heading_column = null;
}
public function setCellPadding($value) {
$this->attributes['cellpadding'] = strval($value);
return $this;
}
public function setCellSpacing($value) {
$this->attributes['cellspacing'] = strval($value);
return $this;
}
public function prepareRow($item, $class = null, $id = null) {
if ($item === null) {
return null;
}
if ($item instanceof CCol) {
if (isset($this->header) && !isset($item->attributes['colspan'])) {
$item->attributes['colspan'] = $this->colnum;
}
}
if (!($item instanceof CRow)) {
$item = new CRow($item, $this->heading_column);
if ($id !== null) {
$item->setId($id);
}
}
if ($class !== null) {
$item->addClass($class);
}
return $item;
}
/**
* Setup table column styles by colgroup and setup table headers.
* Note: should not be used together with setHeader() function.
*
* @param array $columns Array with CTableColumn elements.
*
* @return CTable
*/
public function setColumns(array $columns = []): self {
$headers = [];
$cols = [];
foreach ($columns as $col) {
if ($col instanceof CTableColumn) {
$headers[] = $col->getHeader();
$cols[] = $col;
}
}
$this->colgroup = new CTag('colgroup', true, $cols);
$this->setHeader($headers);
return $this;
}
/**
* Setup table header row.
* Note: should not be used together with setColumns() function.
*
* @param mixed $value Table header row or array with table header cells.
*
* @return CTable
*/
public function setHeader($value = null) {
if (!($value instanceof CRow)) {
$value = new CRowHeader($value);
}
$this->colnum = $value->itemsCount();
$value = new CTag('thead', true, $value);
$this->header = $value->toString();
return $this;
}
/**
* Format given column as row header.
*
* @param int|null $heading_column Column index for heading column. Starts from 0. 'null' if no heading column.
*
* @return CTable
*/
public function setHeadingColumn($heading_column) {
$this->heading_column = $heading_column;
return $this;
}
public function setFooter($value = null, $class = null) {
$this->footer = $this->prepareRow($value, $class);
$this->footer = $this->footer->toString();
return $this;
}
public function addRow($item, $class = null, $id = null) {
$this->addItem($this->prepareRow($item, $class, $id));
++$this->rownum;
return $this;
}
public function getNumCols() {
return $this->colnum;
}
public function getNumRows() {
return $this->rownum;
}
protected function startToString() {
$ret = parent::startToString();
$ret .= $this->colgroup;
$ret .= $this->header;
$ret .= '<tbody>';
return $ret;
}
protected function endToString() {
$ret = $this->footer;
$ret .= '</tbody>';
$ret .= parent::endToString();
return $ret;
}
}
|