X-Git-Url: https://git.llucax.com/mecon/meconlib.git/blobdiff_plain/cacc1525e7102dfef7964462a50e4ff13f02dcc6..7dde16c8e64bb325d76d6a34dfbd971be559219e:/lib/MECON/Marco/Titulo.php?ds=inline diff --git a/lib/MECON/Marco/Titulo.php b/lib/MECON/Marco/Titulo.php index fbee3c9..872debd 100644 --- a/lib/MECON/Marco/Titulo.php +++ b/lib/MECON/Marco/Titulo.php @@ -36,25 +36,25 @@ 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 @@ -65,9 +65,9 @@ class Titulo { * @return string * @access public */ - function toHtml() // ~X2C + function toHtml()// ~X2C { - $TEXTO = "\n".''.$this->_configuracion['titulo_sistema'].''."\n"; + $TEXTO = "\n".''.$this->_titulo.''."\n"; return $TEXTO; } // -X2C @@ -79,9 +79,9 @@ class Titulo { * @return string * @access public */ - function darTitulo() // ~X2C + function darTitulo()// ~X2C { - return $this->_configuracion['titulo_sistema']; + return $this->_titulo; } // -X2C