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
|
<?php
/*
** Zabbix
** Copyright (C) 2001-2016 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 $header;
protected $footer;
protected $colnum;
protected $rownum;
public function __construct() {
parent::__construct('table', true);
$this->rownum = 0;
$this->header = '';
$this->footer = '';
$this->colnum = 1;
}
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 (is_object($item) && strtolower(get_class($item)) === 'ccol') {
if (isset($this->header) && !isset($item->attributes['colspan'])) {
$item->attributes['colspan'] = $this->colnum;
}
}
if (!is_object($item) || strtolower(get_class($item)) !== 'crow') {
$item = new CRow($item);
if ($id !== null) {
$item->setId($id);
}
}
if ($class !== null) {
$item->addClass($class);
}
return $item;
}
public function setHeader($value = null) {
if (!is_object($value) || strtolower(get_class($value)) !== 'crow') {
$value = new CRowHeader($value);
}
$this->colnum = $value->itemsCount();
$value = new CTag('thead', true, $value);
$this->header = $value->toString();
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) {
$item = $this->addItem($this->prepareRow($item, $class, $id));
++$this->rownum;
return $this;
}
public function getNumRows() {
return $this->rownum;
}
public function startToString() {
$ret = parent::startToString();
$ret .= $this->header;
$ret .= '<tbody>';
return $ret;
}
public function endToString() {
$ret = $this->footer;
$ret .= '</tbody>';
$ret .= parent::endToString();
return $ret;
}
}
|