X-Git-Url: https://git.llucax.com/mecon/meconlib.git/blobdiff_plain/8782288c3f53321a0f1d41bb9f8450aaf838be14..1d3c53baf8ad9cbd840eda961b507160e307c2b8:/lib/MECON/Marco.php?ds=sidebyside diff --git a/lib/MECON/Marco.php b/lib/MECON/Marco.php index 3450bbc..26d7aae 100644 --- a/lib/MECON/Marco.php +++ b/lib/MECON/Marco.php @@ -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