]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/Marco.php
BugFix
[mecon/meconlib.git] / lib / MECON / Marco.php
index 3450bbc24d8c874b57f78c4dd2efed06d0f4c641..b96d01627311cb10479adaec2a3c06c2a837fdfc 100644 (file)
@@ -41,10 +41,10 @@ define ('DIR_WWW'     , 'www'   );
 define ('DIR_CACHE'   , '/tmp'  );
 //
 //Defino las constantes
-define ('SCRIPT_DIR_BASE', '/MECON/js/'         );
-define ('ESTILO_DIR_BASE', '/MECON/css/'        );
-define ('SCRIPT_GENERICO', 'general_script.js'  );
-define ('ESTILO_GENERICO', 'general_estilos.css');
+define ('SCRIPT_DIR_BASE', '/MECON/js/' );
+define ('ESTILO_DIR_BASE', '/MECON/css/');
+define ('SCRIPT_GENERICO', 'marco.js'   );
+define ('ESTILO_GENERICO', 'marco.css'  );
 //
 
 // +X2C Class 3 :MECON_Marco
@@ -161,6 +161,7 @@ class MECON_Marco extends HTML_Page {
     /**
      * Redefinicion de la funcion que permite agregar objetos o html al body de la pagina
 Si es un objeto debe tener un metodo toHtml y opcionalmente puede tener un getCSS.
+@deprecated
      *
      * @param  Mixed $body Mixed. Recibe el contenido a agregar como body de la pagina
      *
@@ -169,9 +170,6 @@ Si es un objeto debe tener un metodo toHtml y opcionalmente puede tener un getCS
      */
     function addBody($body) // ~X2C
     {
-        if ((is_object($body)) && (method_exists($body, 'getcss'))) {
-            $this->addStyleSheet($body->getCSS());
-        }
         $this->addBodyContent($body);
     }
     // -X2C
@@ -217,6 +215,9 @@ Si es un objeto debe tener un metodo toHtml y opcionalmente puede tener un getCS
      */
     function addMenuVertical($menuVertical) // ~X2C
     {
+        if ((is_object($menuVertical)) && (method_exists($menuVertical, 'getcss'))) {
+            $this->addStyleSheet($menuVertical->getCSS());
+        }
         $this->_menuVertical = $menuVertical;
     }
     // -X2C
@@ -262,6 +263,25 @@ Si es un objeto debe tener un metodo toHtml y opcionalmente puede tener un getCS
     }
     // -X2C
 
+    // +X2C Operation 223
+    /**
+     * Redefinicion de la funcion que permite agregar objetos o html al body de la pagina
+Si es un objeto debe tener un metodo toHtml y opcionalmente puede tener un getCSS.
+     *
+     * @param  mixed $content Contenido a agregar en la pagina
+     *
+     * @return void
+     * @access public
+     */
+    function addBodyContent($content) // ~X2C
+    {
+        if ((is_object($content)) && (method_exists($content, 'getcss'))) {
+            $this->addStyleSheet($content->getCSS());
+        }
+        parent::addBodyContent($content);
+    }
+    // -X2C
+
 } // -X2C Class :MECON_Marco
 
 ?>
\ No newline at end of file