2 // vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4:
3 // +----------------------------------------------------------------------+
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 // +----------------------------------------------------------------------+
27 require_once 'PEAR.php';
29 define ('ESTILO_GENERICO', '/www/css/estilos.css');
33 // +X2C Class 12 :Estilo
35 * Clase para el manejo de los archivos de estilo correspondientes al sistema.
41 * Nombre del directorio en donde se encuentra el sistema
43 * @var string $directorio
50 * Array con los nombre de los archivos de estilo que se fueron agregando
52 * @var array(string) $archivos
62 * Constructor. Recibe como parametro el nombre del directorio en donde se encuentra el sistema. Es case sensitive.
64 * @param string $directorio Nombre del directorio en donde se encuentra el sistema
70 function Estilo($directorio) // ~X2C
72 $this->_directorio = $directorio;
73 $this->_archivos = array ();
79 * Funcion que devuelve un string con el html a imprimir en pantalla.
85 function toHtml() // ~X2C
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";
97 * Funcion que permite agregar archivos de estilos propios del sistema, ademas del archivo de estilo generico.
99 * @param string $archivo Nombre del archivo de estilo a agregar
105 function agregarArchivo($archivo) // ~X2C
107 array_push($this->_archivos, $archivo);
111 } // -X2C Class :Estilo