]> git.llucax.com Git - mecon/meconlib.git/blob - lib/MECON/Marco/Titulo.php
Se centran los botones.
[mecon/meconlib.git] / lib / MECON / Marco / Titulo.php
1 <?php
2 // vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4:
3 // +----------------------------------------------------------------------+
4 // | PHP Version 4                                                        |
5 // +----------------------------------------------------------------------+
6 // | Copyright (c) 1997-2003 The PHP Group                                |
7 // +----------------------------------------------------------------------+
8 // | This source file is subject to version 2.02 of the PHP license,      |
9 // | that is bundled with this package in the file LICENSE, and is        |
10 // | available at through the world-wide-web at                           |
11 // | http://www.php.net/license/2_02.txt.                                 |
12 // | If you did not receive a copy of the PHP license and are unable to   |
13 // | obtain it through the world-wide-web, please send a note to          |
14 // | license@php.net so we can mail you a copy immediately.               |
15 // +----------------------------------------------------------------------+
16 // | Created: Mon Apr 14 16:23:22 2003
17 // | Author:  Martin Marrese <mmarre@mecon.gov.ar>
18 // +----------------------------------------------------------------------+
19 //
20 // $Id$
21 // $Author$
22 // $URL$
23 // $Date$
24 // $Rev$
25 //
26
27 require_once 'PEAR.php';
28
29 // +X2C Class 13 :Titulo
30 /**
31  * Clase para el manejo del titulo de los sistemas.
32  *
33  * @package MECON_Marco
34  * @access public
35  */
36 class Titulo {
37     /**
38      * Array con los datos de configuracion del sistema.
39      *
40      * @var    string $titulo
41      * @access private
42      */
43     var $_titulo;
44
45     // ~X2C
46
47     // +X2C Operation 52
48     /**
49      * Constructor. Recibe como parametro el titulo del sistema.
50      *
51      * @param  string $titulo Titulo del sistema
52      *
53      * @return void
54      * @access public
55      */
56     function Titulo($titulo) // ~X2C
57     {
58         $this->_titulo  = $titulo;
59     }
60     // -X2C
61
62     // +X2C Operation 53
63     /**
64      * Funcion que devuelve un string con el html a imprimir en pantalla.
65      *
66      * @return string
67      * @access public
68      */
69     function toHtml() // ~X2C
70     {
71         $TEXTO = "\n".'<title>'.$this->_titulo.'</title>'."\n";
72         return $TEXTO;
73     }
74     // -X2C
75
76     // +X2C Operation 96
77     /**
78      * Funcion que devuelve el titulo del sistema.
79      *
80      * @return string
81      * @access public
82      */
83     function darTitulo() // ~X2C
84     {
85         return $this->_titulo;
86     }
87     // -X2C
88
89 } // -X2C Class :Titulo
90
91 ?>