1: <?php
2:
3: /**
4: * This file contains the cHTMLTableRow class.
5: *
6: * @package Core
7: * @subpackage GUI_HTML
8: * @author Simon Sprankel
9: * @copyright four for business AG <www.4fb.de>
10: * @license http://www.contenido.org/license/LIZENZ.txt
11: * @link http://www.4fb.de
12: * @link http://www.contenido.org
13: */
14:
15: defined('CON_FRAMEWORK') || die('Illegal call: Missing framework initialization - request aborted.');
16:
17: /**
18: * cHTMLTableRow class represents a table row.
19: *
20: * @package Core
21: * @subpackage GUI_HTML
22: */
23: class cHTMLTableRow extends cHTMLContentElement {
24:
25: /**
26: * Constructor to create an instance of this class.
27: *
28: * Creates an HTML tr element.
29: *
30: * @param mixed $content [optional]
31: * String or object with the contents
32: */
33: public function __construct($content = NULL) {
34: parent::__construct($content);
35: $this->_tag = 'tr';
36: }
37: }
38: