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