]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/Marco/MenuPrincipal.php
Agrego el campo nombre_breve a los metodos estaticos.
[mecon/meconlib.git] / lib / MECON / Marco / MenuPrincipal.php
index d46c9f3c2e631a335ed956ac8f2d0d097a54b04a..312abee5a10b74dd21d51004e44e8ae4edef689d 100644 (file)
@@ -86,7 +86,8 @@ class MECON_Marco_MenuPrincipal extends MECON_Marco_MenuHorizontal {
         $colspan = count($this->_componentes);
         
         //Agrego el copete {{{
-        $copete = new MECON_Marco_Copete ($this->_configuracion['directorios']['imagenes'], @$this->_configuracion['ayuda']);
+        $copete = new MECON_Marco_Copete ($this->_configuracion['directorios']['imagenes'],
+                @$this->_configuracion['ayuda'], $this->_configuracion['titulo_sistema']);
         $row[] = $copete->toHtml();
         $this->_tabla->addRow($row,'align="center" bgcolor="#FFFFFF"');
         //}}}
@@ -106,7 +107,7 @@ class MECON_Marco_MenuPrincipal extends MECON_Marco_MenuHorizontal {
         }
         $this->_tabla->addRow(array($TABLAM));
 
-        $imagen = new MECON_HTML_Image('/MECON/images/general_linea.gif');
+        $imagen = new MECON_HTML_Image('/MECON/images/general_linea.gif', str_repeat('=', 108));
         $i = $this->_tabla->addRow(array ($imagen->toHtml()), 'align="center"');
         $this->_tabla->updateRowAttributes($i, 'height="1"');
         
@@ -125,7 +126,8 @@ class MECON_Marco_MenuPrincipal extends MECON_Marco_MenuHorizontal {
             if ($this->_seccionSeleccionada) {
                 $row = array ($this->_armarEncabezado($this->_seccionSeleccionada->_nombre.$this->_configuracion['subtitulo']));
                 $this->_tabla->addRow($row,'align="left" bgcolor="#FFFFFF"');
-                $imagen = new MECON_HTML_Image('/MECON/images/general_linea2.gif', 'boder="0" align="center"');
+                $imagen = new MECON_HTML_Image('/MECON/images/general_linea2.gif',
+                        str_repeat('-', 108), array('border' => 0, 'align' => 'center'));
                 $this->_tabla->addRow(array ($imagen->toHtml()), 'align="center"');
             }