]> git.llucax.com Git - mecon/intranet.git/blobdiff - sistema/local_lib/HTML_DietMarco.php
Agrego el objeto HTML_Servicio para dibujar el cuadrito de servicio
[mecon/intranet.git] / sistema / local_lib / HTML_DietMarco.php
index a0ec4615989078104a346beec283b9309396dd22..fd11a0a97106a294471aa9ecf96a411707485618 100644 (file)
@@ -38,50 +38,9 @@ require_once 'HTML/Page.php';
  * @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
     /**
@@ -92,7 +51,7 @@ class HTML_DietMarco extends HTML_Page {
      */
     function addTitle($title) // ~X2C
     {
-        trigger_error('Not implemented!', E_USER_WARNING);
+        $this->_title .= ' - '.$title;
     }
     // -X2C
 
@@ -105,9 +64,14 @@ class HTML_DietMarco extends HTML_Page {
      */
     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