]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MLIB/Marco/MenuVertical.php
Se agrega un ejemplo sobre la utilizacion de los PDF con la nueva clase
[mecon/meconlib.git] / lib / MLIB / Marco / MenuVertical.php
index bb2cd93ccf29cbb8db261c040f5e66ed3763e5f9..9bdc9cdc13512648c746ec32af18c9754554e4ff 100644 (file)
@@ -1,16 +1,15 @@
 <?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.
  
@@ -24,14 +23,14 @@ Autor:  Martin Marrese <mmarre@mecon.gov.ar>
 $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
      *
@@ -50,28 +49,28 @@ class MECON_Marco_MenuVertical extends MECON_Marco_Menu {
         
         $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">&nbsp;'.$titulo.'</div>';
+                                 background="/MLIB/images/general_titulo_menu.gif"');
+        $menutmp ='<div class="MLIB_marco_subtitle_vertical">&nbsp;'.$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>'
                     )
                 );
         }