]>
src.bluestatic.org Git - isso.git/blob - PrinterRootTable.php
2 /*=====================================================================*
3 || ###################################################################
4 || # Blue Static ISSO Framework
5 || # Copyright (c)2005-2008 Blue Static
7 || # This program is free software; you can redistribute it and/or modify
8 || # it under the terms of the GNU General Public License as published by
9 || # the Free Software Foundation; version 2 of the License.
11 || # This program is distributed in the hope that it will be useful, but
12 || # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 || # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 || # You should have received a copy of the GNU General Public License along
17 || # with this program; if not, write to the Free Software Foundation, Inc.,
18 || # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
19 || ###################################################################
20 \*=====================================================================*/
23 * Printer Root Element: Table (PrinterRootTable.php)
28 require_once(ISSO
. '/PrinterRootAbstract.php');
31 * Printer Root Element: Table
33 * Represents a <table> object. This can have a parent or not: if it does,
34 * then it will be painted as a child, otherwise it will act as a root.
37 * @copyright Copyright (c)2005 - 2008, Blue Static
41 class BSPrinterRootTable
extends BSPrinterRootAbstract
44 * Maximum number of columns
50 * Heading child elements
53 private $headers = array();
59 private $width = '90%';
64 public function __construct()
66 $this->setCssClass('tborder');
70 * Makes a new instance of the object in a static fashion
74 public static function make()
76 $obj = new ReflectionClass(__CLASS__
);
77 $args = func_get_args();
78 return $obj->newInstanceArgs($args);
82 * Adds a table row into the child list
84 * @param BSPrinterElementTable Table element
86 * @return fluent interface
88 public function addChild(BSPrinterAbstract
$tr)
90 if (!$tr instanceof BSPrinterElementTable
)
92 throw new Exception('BSPrinterRootTable::addChild() only accepts BSPrinterElementTable objects as children');
94 $this->children
[] = $tr;
99 * Adds a table element to be a heading of the table. This is still
100 * considered a child, but it goes before all other child elemends
102 * @param BSPrinterElementTable Child element
104 * @return fluent interface
106 public function addHeadingChild(BSPrinterElementTable
$tr)
108 $this->headers
[] = $tr;
113 * Sets the width of the table
115 * @param string Width value
117 * @return fluent interface
119 public function setWidth($width)
121 $this->width
= $width;
126 * Calculates the number of columns to display based on the colspan
127 * of children elements
129 private function _calculateColumnCount()
131 foreach ($this->children
as $child)
133 if ($child->numberOfColumns() > $this->colspan
)
135 $this->colspan
= $child->numberOfColumns();
141 * Returns the HTML for all printed children elements
143 * @return string Printed HTML
145 protected function _paintChildren()
149 $this->children
= array_merge($this->headers
, $this->children
);
150 $this->headers
= array();
152 $this->_calculateColumnCount();
154 foreach ($this->children
as $child)
156 $child->setColumnNumber($this->colspan
);
157 $builder .= "\n" . $child->paint();
166 * @return string Table HTML code
168 public function paint()
170 return "<br />\n<table cellpadding=\"4\" cellspacing=\"1\" border=\"0\" align=\"center\" width=\"" . $this->width
. "\"" . $this->_prepareStyle() . ">" . $this->_paintChildren() . "\n</table>";