]> git.llucax.com Git - mecon/meconlib.git/blob - marco/php/marco/Estilo.php
14512e7c1ec03e84a5db3bc5235c49391ed88623
[mecon/meconlib.git] / marco / php / marco / Estilo.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 define ('ESTILO_GENERICO', '/www/css/estilos.css');
30
31
32
33 // +X2C Class 12 :Estilo
34 /**
35  * Clase para el manejo de los archivos de estilo correspondientes al sistema.
36  *
37  * @access public
38  */
39 class Estilo {
40     /**
41      * Nombre del directorio en donde se encuentra el sistema
42      *
43      * @var    string $directorio
44      *
45      * @access private
46      */
47     var $_directorio;
48
49     /**
50      * Array con los nombre de los archivos de estilo que se fueron agregando
51      *
52      * @var    array(string) $archivos
53      *
54      * @access private
55      */
56     var $_archivos;
57
58     // ~X2C
59
60     // +X2C Operation 48
61     /**
62      * Constructor. Recibe como parametro el nombre del directorio en donde se encuentra el sistema. Es case sensitive.
63      *
64      * @param  string $directorio Nombre del directorio en donde se encuentra el sistema
65      *
66      * @return void
67      *
68      * @access public
69      */
70     function Estilo($directorio) // ~X2C
71     {
72         $this->_directorio  = $directorio;
73         $this->_archivos    = array ();
74     }
75     // -X2C
76
77     // +X2C Operation 49
78     /**
79      * Funcion que devuelve un string con el html a imprimir en pantalla.
80      *
81      * @return string
82      *
83      * @access public
84      */
85     function toHtml() // ~X2C
86     {
87         $TEXTO = "\n".'<link rel="StyleSheet" href="'.ESTILO_GENERICO.'">'."\n";        
88         foreach ($this->_archivos as $archivo) {
89             $TEXTO.= "\n".'<link rel="StyleSheet" href="www/sistemas'.$this->_directorio.'/www/css/"'.$archivo.'>'."\n";
90         }        
91         return $TEXTO;
92     }
93     // -X2C
94
95     // +X2C Operation 50
96     /**
97      * Funcion que permite agregar archivos de estilos propios del sistema, ademas del archivo de estilo generico.
98      *
99      * @param  string $archivo Nombre del archivo de estilo a agregar
100      *
101      * @return void
102      *
103      * @access public
104      */
105     function agregarArchivo($archivo) // ~X2C
106     {
107             array_push($this->_archivos, $archivo);
108     }
109     // -X2C
110
111 } // -X2C Class :Estilo
112
113 ?>