]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/Marco/Titulo.php
arreglo menor
[mecon/meconlib.git] / lib / MECON / Marco / Titulo.php
index fbee3c98bec908de61043fda76708528c95770e9..aa084beae3a45c0107eee0591ae8872948260516 100644 (file)
@@ -30,31 +30,32 @@ require_once 'PEAR.php';
 /**
  * Clase para el manejo del titulo de los sistemas.
  *
+ * @package MECON_Marco
  * @access public
  */
 class Titulo {
     /**
      * Array con los datos de configuracion del sistema.
      *
-     * @var    array $configuracion
+     * @var    string $titulo
      * @access private
      */
-    var $_configuracion;
+    var $_titulo;
 
     // ~X2C
 
     // +X2C Operation 52
     /**
-     * Constructor. Recibe como parametro el array de configuracion del sistema.
+     * Constructor. Recibe como parametro el titulo del sistema.
      *
-     * @param  array $configuracion 
+     * @param  string $titulo Titulo del sistema
      *
      * @return void
      * @access public
      */
-    function Titulo($configuracion) // ~X2C
+    function Titulo($titulo) // ~X2C
     {
-         $this->_configuracion  = $configuracion;
+        $this->_titulo  = $titulo;
     }
     // -X2C
 
@@ -67,7 +68,7 @@ class Titulo {
      */
     function toHtml() // ~X2C
     {
-        $TEXTO = "\n".'<title>'.$this->_configuracion['titulo_sistema'].'</title>'."\n";
+        $TEXTO = "\n".'<title>'.$this->_titulo.'</title>'."\n";
         return $TEXTO;
     }
     // -X2C
@@ -81,7 +82,7 @@ class Titulo {
      */
     function darTitulo() // ~X2C
     {
-        return $this->_configuracion['titulo_sistema'];
+        return $this->_titulo;
     }
     // -X2C