X-Git-Url: https://git.llucax.com/mecon/meconlib.git/blobdiff_plain/f5695eabef67532410706e9c6d8dbdae5e098429..dc64da7441cf7a3be096c0a3d03ac7acac6f7d7d:/lib/MECON/Marco.php diff --git a/lib/MECON/Marco.php b/lib/MECON/Marco.php index 85cd4bb..b96d016 100644 --- a/lib/MECON/Marco.php +++ b/lib/MECON/Marco.php @@ -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 @@ -265,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