1: <?php
2:
3: /**
4: * This file contains the cHTMLAside class.
5: *
6: * @package Core
7: * @subpackage GUI_HTML
8: * @version SVN Revision $Rev:$
9: *
10: * @author Simon Sprankel
11: * @copyright four for business AG <www.4fb.de>
12: * @license http://www.contenido.org/license/LIZENZ.txt
13: * @link http://www.4fb.de
14: * @link http://www.contenido.org
15: */
16:
17: defined('CON_FRAMEWORK') || die('Illegal call: Missing framework initialization - request aborted.');
18:
19: /**
20: * cHTMLAside class represents content which is related to the surrounding
21: * content.
22: * This element is often used in sidebars.
23: *
24: * @package Core
25: * @subpackage GUI_HTML
26: */
27: class cHTMLAside extends cHTMLContentElement {
28:
29: /**
30: * Constructor.
31: *
32: * @param mixed $content [optional]
33: * String or object with the contents
34: * @param string $class [optional]
35: * the class of this element
36: * @param string $id [optional]
37: * the ID of this element
38: */
39: public function __construct($content = '', $class = '', $id = '') {
40: parent::__construct($content, $class, $id);
41: $this->_tag = 'aside';
42: }
43:
44: }
45: