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
/**
* 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
*
*/
function addBody($body) // ~X2C
{
- if ((is_object($body)) && (method_exists($body, 'getcss'))) {
- $this->addStyleSheet($body->getCSS());
- }
$this->addBodyContent($body);
}
// -X2C
*/
function addMenuVertical($menuVertical) // ~X2C
{
+ if ((is_object($menuVertical)) && (method_exists($menuVertical, 'getcss'))) {
+ $this->addStyleSheet($menuVertical->getCSS());
+ }
$this->_menuVertical = $menuVertical;
}
// -X2C
}
// -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