<?php
// vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4:
-// +--------------------------------------------------------------------+
-// | Pie |
-// +--------------------------------------------------------------------+
-// | Liberia generica para el manejo del pie de pagina de los |
-// | sistemas |
-// | Ministerio de EconomÃa |
-// +--------------------------------------------------------------------+
-// | Creado: thu apr 03 ART 2003 |
-// | Autor: Martin Marrese <mmarre@mecon.gov.ar> |
-// +--------------------------------------------------------------------+
-//
+// +----------------------------------------------------------------------+
+// | PHP Version 4 |
+// +----------------------------------------------------------------------+
+// | Copyright (c) 1997-2003 The PHP Group |
+// +----------------------------------------------------------------------+
+// | This source file is subject to version 2.02 of the PHP license, |
+// | that is bundled with this package in the file LICENSE, and is |
+// | available at through the world-wide-web at |
+// | http://www.php.net/license/2_02.txt. |
+// | If you did not receive a copy of the PHP license and are unable to |
+// | obtain it through the world-wide-web, please send a note to |
+// | license@php.net so we can mail you a copy immediately. |
+// +----------------------------------------------------------------------+
+// | Created: Mon Apr 14 16:23:22 2003
+// | Author: Martin Marrese <mmarre@mecon.gov.ar>
+// +----------------------------------------------------------------------+
+//
// $Id$
-//
+// $Author$
// $URL$
-// $Rev$
// $Date$
-// $Author$
+// $Rev$
+//
require_once 'PEAR.php';
require_once 'include/lib/HTML/Tabla.php';
+
+// +X2C Class 10 :Pie
/**
- * Manejo del Titulo
- *
- * Libreria para le manejo de los titulos para los sistemas de intranet.
+ * Clase para el manejo de los pie de pagina de los sistemas de la intranet
*
- * @version $Rev$
- * @author $Author$
+ * @access public
*/
-
-class Pie extends PEAR {
-
+class Pie {
/**
- * Datos de Configuracion del sistema
+ * Array con los datos de configuracion del sistema.
+ *
+ * @var array $_configuracion
*
- * @var String
+ * @access private
*/
var $_configuracion;
+ // ~X2C
+
+ // +X2C Operation 38
/**
- * Constructor.
+ * Constructor. Recibe como parametro el array con los datos de configuracion del sistema.
+ *
+ * @param array $configuracion Array con los datos de configuracion del sistema.
*
- * Recibe como parametro la configuracion del sistema.
+ * @return void
*
- * @param string $configuracion
- *
* @access public
*/
- function Pie ($configuracion)
+ function Pie($configuracion) // ~X2C
{
$this->_configuracion = $configuracion;
}
+ // -X2C
+ // +X2C Operation 39
/**
- * Funcion que devuelve el html a mostrar
+ * Funcion que devuelve el string html para imprimir en pantalla.
+ *
+ * @return string
*
* @access public
*/
- function toHtml ()
+ function toHtml() // ~X2C
{
$TABLA = new Tabla('width=760 bgcolor="#CCCCCC" align="center"');
$row = array ($this->_configuracion['pie_sistema']);
$TABLA->setCellBgcolor(0,0,'#CCCCCC');
return $TABLA->toHtml(1);
}
-}
+ // -X2C
+
+} // -X2C Class :Pie
+
?>