* @access public
*/
class HTML_DietMarco extends HTML_Page {
- /**
- * @var int $body
- * @access public
- */
- var $body;
-
- /**
- * @var int $title
- * @access public
- */
- var $title;
-
- /**
- * @var int $copete
- * @access public
- */
- var $copete;
-
// ~X2C
- // +X2C Operation 155
- /**
- * @return void
- * @access public
- */
- function toHTML() // ~X2C
- {
- $html =& $this->copete->toHTML();
- return $html;
- }
- // -X2C
- // +X2C Operation 156
- /**
- * @param int $body
- *
- * @return void
- * @access public
- */
- function addBody($body) // ~X2C
- {
- $this->body[] = $body
- }
- // -X2C
// +X2C Operation 157
/**
*/
function addTitle($title) // ~X2C
{
- trigger_error('Not implemented!', E_USER_WARNING);
+ $this->_title .= ' - '.$title;
}
// -X2C
*/
function HTML_DietMarco($seccion) // ~X2C
{
- $this->title = 'Intranet bla bla..';
- $this->copete = new HTML_Copete($seccion);
- $this->body = array();
+ parent::HTML_Page(array ('doctype'=>'HTML 4.01 Transitional',
+ 'charset' => 'iso-8859-1',
+ 'lineend' => 'unix',
+ 'language' => 'es',
+ 'cache' => 'false',
+ 'simple' => 'true'));
+ $this->_title = 'Intranet bla bla..';
+ $this->addBodyContent(new HTML_Copete($seccion));
}
// -X2C
} // -X2C Class :HTML_DietMarco
-?>
\ No newline at end of file
+?>