<?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
-------------------------------------------------------------------------------
- Ministerio de EconomÃa
- meconlib
+ mlib
-------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free
Software Foundation; either version 2 of the License, or (at your option)
any later version.
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
$Id$
-----------------------------------------------------------------------------*/
-require_once 'MECON/Marco/Menu.php';
+require_once 'MLIB/Marco/Menu.php';
/**
* Clase que se encarga del manejo de los menues verticales
*
* @access public
*/
-class MECON_Marco_MenuVertical extends MECON_Marco_Menu {
+class MLIB_Marco_MenuVertical extends MLIB_Marco_Menu {
/**
* Funcion para agregar el cuerpo de la pagina a la pagina
*
$TABLA = new HTML_Table('width=152 align="left" cellspacing="0"
cellpadding="0" border="0" height="1"
- background="/MECON/images/general_titulo_menu.gif"');
- $menutmp ='<div class="mecon_marco_subtitle_vertical"> '.$titulo.'</div>';
+ background="/MLIB/images/general_titulo_menu.gif"');
+ $menutmp ='<div class="MLIB_marco_subtitle_vertical"> '.$titulo.'</div>';
$TABLA->addRow(array ($menutmp),'align="left"');
$TABLA->updateCellAttributes(0,0,'colspan="2"');
$TABLA->addRow(
array(
- '<IMG height="3" src="/MECON/images/general_linea_relieve.gif" width=36>',
- '<IMG height="3" src="/MECON/images/general_linea_relieve.gif" width=118>'
+ '<IMG height="3" src="/MLIB/images/general_linea_relieve.gif" width=36>',
+ '<IMG height="3" src="/MLIB/images/general_linea_relieve.gif" width=118>'
)
);
foreach ($this->_componentesVertical as $comp) {
$TABLA->addRow($comp,'align="left" height="3"
- background="/MECON/images/general_fondo_gris"');
+ background="/MLIB/images/general_fondo_gris"');
$TABLA->updateColAttributes(0,
'align="right" width="34" height="3"');
$TABLA->updateColAttributes(1,'align="left" width="118"');
$TABLA->addRow(
array(
- '<IMG height="3" src="/MECON/images/general_linea_relieve.gif" width=36>',
- '<IMG height="3" src="/MECON/images/general_linea_relieve.gif" width=118>'
+ '<IMG height="3" src="/MLIB/images/general_linea_relieve.gif" width=36>',
+ '<IMG height="3" src="/MLIB/images/general_linea_relieve.gif" width=118>'
)
);
}