1: <?php
2:
3: /**
4: * This file contains the cHTMLArticle class.
5: *
6: * @package Core
7: * @subpackage GUI_HTML
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: * cHTMLArticle class represents an HTML5 article element.
20: * Examples: Forum posts, newspaper articles, blog entries, user-submitted
21: * comments, ...
22: *
23: * @package Core
24: * @subpackage GUI_HTML
25: */
26: class cHTMLArticle extends cHTMLContentElement {
27:
28: /**
29: * Constructor to create an instance of this class.
30: *
31: * @param mixed $content [optional]
32: * String or object with the contents
33: * @param string $class [optional]
34: * the class of this element
35: * @param string $id [optional]
36: * the ID of this element
37: */
38: public function __construct($content = '', $class = '', $id = '') {
39: parent::__construct($content, $class, $id);
40: $this->_tag = 'article';
41: }
42:
43: }
44: