]> git.llucax.com Git - mecon/meconlib.git/blob - marco/php/marco/Titulo.php
9718aad8f93e279fb5ed22cd02b5cadca0627bb6
[mecon/meconlib.git] / marco / php / 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  * @access public
34  */
35 class Titulo {
36     /**
37      * Array con los datos de configuracion del sistema.
38      *
39      * @var    array $configuracion
40      *
41      * @access private
42      */
43     var $_configuracion;
44
45     // ~X2C
46
47     // +X2C Operation 52
48     /**
49      * Constructor. Recibe como parametro el array de configuracion del sistema.
50      *
51      * @param  array $configuracion 
52      *
53      * @return void
54      *
55      * @access public
56      */
57     function Titulo($configuracion) // ~X2C
58     {
59          $this->_configuracion  = $configuracion;
60     }
61     // -X2C
62
63     // +X2C Operation 53
64     /**
65      * Funcion que devuelve un string con el html a imprimir en pantalla.
66      *
67      * @return string
68      *
69      * @access public
70      */
71     function toHtml() // ~X2C
72     {
73         $TEXTO = "\n".'<title>'.$this->_configuracion['titulo_sistema'].'</title>'."\n";
74         return $TEXTO;
75     }
76     // -X2C
77
78 } // -X2C Class :Titulo
79
80 ?>