]> git.llucax.com Git - mecon/meconlib.git/blob - lib/MECON/Marco/Titulo.php
Cambio la coneccion por que no decia .mecon.ar
[mecon/meconlib.git] / lib / MECON / Marco / Titulo.php
1 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
2 -------------------------------------------------------------------------------
3                              Ministerio de Economía
4                                     meconlib
5 -------------------------------------------------------------------------------
6 This file is part of meconlib.
7
8 meconlib is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 2 of the License, or (at your option)
11 any later version.
12
13 meconlib is distributed in the hope that it will be useful, but WITHOUT
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16  
17 You should have received a copy of the GNU General Public License; if not,
18 write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
19 Boston, MA  02111-1307  USA
20 -------------------------------------------------------------------------------
21 Creado: Mon Apr 14 16:23:22 2003
22 Autor:  Martin Marrese <mmarre@mecon.gov.ar>
23 -------------------------------------------------------------------------------
24 $Id$
25 -----------------------------------------------------------------------------*/
26
27 // +X2C Class 13 :MECON_Marco_Titulo
28 /**
29  * Clase para el manejo del titulo de los sistemas.
30  *
31  * @package MECON_Marco
32  * @access public
33  */
34 class MECON_Marco_Titulo {
35     /**
36      * Array con los datos de configuracion del sistema.
37      *
38      * @var    string $titulo
39      * @access private
40      */
41     var $_titulo;
42
43     // ~X2C
44
45     // +X2C Operation 52
46     /**
47      * Constructor. Recibe como parametro el titulo del sistema.
48      *
49      * @param  string $titulo Titulo del sistema
50      *
51      * @return void
52      * @access public
53      */
54     function Titulo($titulo) // ~X2C
55     {
56         $this->_titulo  = $titulo;
57     }
58     // -X2C
59
60     // +X2C Operation 53
61     /**
62      * Funcion que devuelve un string con el html a imprimir en pantalla.
63      *
64      * @return string
65      * @access public
66      */
67     function toHtml() // ~X2C
68     {
69         $TEXTO = "\n".'<title>'.$this->_titulo.'</title>'."\n";
70         return $TEXTO;
71     }
72     // -X2C
73
74     // +X2C Operation 96
75     /**
76      * Funcion que devuelve el titulo del sistema.
77      *
78      * @return string
79      * @access public
80      */
81     function darTitulo() // ~X2C
82     {
83         return $this->_titulo;
84     }
85     // -X2C
86
87 } // -X2C Class :MECON_Marco_Titulo
88
89 ?>