require_once 'HTML/Table.php';
//Defino los directorios por default
-define ('DIR_IMAGENES' , '/www/images');
-define ('DIR_ESTILOS' , '/www/css');
-define ('DIR_JS' , '/www/js');
+define ('DIR_IMAGENES' , 'images');
+define ('DIR_ESTILOS' , 'css');
+define ('DIR_JS' , 'js');
define ('DIR_WWW' , 'www');
define ('DIR_CACHE' , '/tmp');
//
$this->_menu = new MenuPrincipal ($this->_configuracion);
$this->_pie = new Pie ($this->_configuracion);
$this->_contenido = array ();
- $this->_contenido[] = '<br>';
$this->_titulo2 = '';
}
*/
function _body_display() // ~X2C
{
- $this->_contenido[] = '<br> ';
$body = array ( 'copete' => $this->_copete->toHtml(),
'body' => $this->_contenido,
'pie' => $this->_pie->toHtml(),
*/
function addTitle($titulo) // ~X2C
{
- $this->_titulo2 = ' - '.$titulo;
+ $this->_titulo2.= ' - '.$titulo;
}
// -X2C
} // -X2C Class :Marco
-?>
\ No newline at end of file
+?>