+++ /dev/null
-<?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
--------------------------------------------------------------------------------
- Ministerio de Economía
- meconlib
--------------------------------------------------------------------------------
-This file is part of meconlib.
-
-meconlib is free software; you can redistribute it and/or modify it under
-the terms of the GNU General Public License as published by the Free
-Software Foundation; either version 2 of the License, or (at your option)
-any later version.
-
-meconlib is distributed in the hope that it will be useful, but WITHOUT
-ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
-FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License; if not,
-write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
-Boston, MA 02111-1307 USA
--------------------------------------------------------------------------------
-Creado: Mon Apr 14 16:23:22 2003
-Autor: Martin Marrese <mmarre@mecon.gov.ar>
--------------------------------------------------------------------------------
-$Id$
------------------------------------------------------------------------------*/
-
-/**
- * Clase para el manejo de las paginas.
- *
- * @access public
- */
-class MECON_Marco_Pagina {
- /**
- * Nombre del archivo pagina.
- *
- * @var string $link
- * @access private
- */
- var $_link = '';
-
- /**
- * Titulo de la pagina
- *
- * @var string $titulo
- * @access private
- */
- var $_titulo = '';
-
- /**
- * Permisos de la pagina
- *
- * @var array $permisos
- * @access private
- */
- var $_permisos = array();
-
- /**
- * Gets Link.
- *
- * @return string
- * @access public
- */
- function getLink()
- {
- return $this->_link;
- }
-
- /**
- * Sets Link.
- *
- * @param string $link Link.
- *
- * @return void
- * @access public
- */
- function setLink($link)
- {
- $this->_link = $link;
- }
-
- /**
- * Gets Titulo.
- *
- * @return string
- * @access public
- */
- function getTitulo()
- {
- return $this->_titulo;
- }
-
- /**
- * Sets Titulo.
- *
- * @param string $titulo Titulo.
- *
- * @return void
- * @access public
- */
- function setTitulo($titulo)
- {
- $this->_titulo = $titulo;
- }
-
- /**
- * Gets Permisos.
- *
- * @return array
- * @access public
- */
- function getPermisos()
- {
- return $this->_permisos;
- }
-
- /**
- * Sets Permisos.
- *
- * @param array $permisos Permisos.
- *
- * @return void
- * @access public
- */
- function setPermisos($permisos)
- {
- $this->_permisos = $permisos;
- }
-
- /**
- * Constructor. Recibe como parametro el nombre del archivo pagina.
- *
- * @param string $link Nombre del archivo pagina.
- * @param string $titulo Titulo de la pagina
- * @param array() $permisos Array con los permisos necesarios para la pagina
- *
- * @return void
- * @access public
- */
- function MECON_Marco_Pagina($link, $titulo = null, $permisos = null) // ~X2C
- {
- $this->setLink ($link );
- $this->setTitulo ($titulo );
- $this->setPermisos($permisos);
- }
-}
-?>
\ No newline at end of file
+++ /dev/null
-<?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
--------------------------------------------------------------------------------
- Ministerio de Economía
- meconlib
--------------------------------------------------------------------------------
-This file is part of meconlib.
-
-meconlib is free software; you can redistribute it and/or modify it under
-the terms of the GNU General Public License as published by the Free
-Software Foundation; either version 2 of the License, or (at your option)
-any later version.
-
-meconlib is distributed in the hope that it will be useful, but WITHOUT
-ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
-FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License; if not,
-write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
-Boston, MA 02111-1307 USA
--------------------------------------------------------------------------------
-Creado: Mon Apr 14 16:23:22 2003
-Autor: Martin Marrese <mmarre@mecon.gov.ar>
--------------------------------------------------------------------------------
-$Id$
------------------------------------------------------------------------------*/
-
-require_once 'PEAR.php';
-require_once 'MECON/HTML/Tabla.php';
-
-/**
- * Clase para el manejo de los pie de pagina de los sistemas de la intranet
- *
- * @access public
- */
-class MECON_Marco_Pie {
- /**
- * Array con los datos de configuracion del sistema.
- *
- * @var array $configuracion
- * @access private
- */
- var $_configuracion;
-
- /**
- * Constructor. Recibe como parametro el array con los datos de configuracion del sistema.
- *
- * @param array $configuracion Array con los datos de configuracion del sistema.
- *
- * @return void
- * @access public
- */
- function Pie($configuracion)
- {
- $this->_configuracion = $configuracion;
- }
-
- /**
- * Funcion que devuelve el string html para imprimir en pantalla.
- *
- * @return string
- * @access public
- */
- function toHtml()
- {
- if (array_key_exists('pie_sistema',$this->_configuracion)) {
- return $this->_configuracion['pie_sistema'];
- }
- else {
- return '';
- }
- }
-
- /**
- * Funcion que devuelve el pie a incluir en el marco.
- *
- * @return string
- * @access public
- */
- function darPie()
- {
- return $this->_configuracion['pie_sistema'];
- }
-}
-?>
\ No newline at end of file
+++ /dev/null
-<?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
--------------------------------------------------------------------------------
- Ministerio de Economía
- meconlib
--------------------------------------------------------------------------------
-This file is part of meconlib.
-
-meconlib is free software; you can redistribute it and/or modify it under
-the terms of the GNU General Public License as published by the Free
-Software Foundation; either version 2 of the License, or (at your option)
-any later version.
-
-meconlib is distributed in the hope that it will be useful, but WITHOUT
-ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
-FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License; if not,
-write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
-Boston, MA 02111-1307 USA
--------------------------------------------------------------------------------
-Creado: Mon Apr 14 16:23:22 2003
-Autor: Martin Marrese <mmarre@mecon.gov.ar>
--------------------------------------------------------------------------------
-$Id$
------------------------------------------------------------------------------*/
-
-/**
- * Clase para el manejo del titulo de los sistemas.
- *
- * @access public
- */
-class MECON_Marco_Titulo {
- /**
- * Array con los datos de configuracion del sistema.
- *
- * @var string $titulo
- * @access private
- */
- var $_titulo;
-
- /**
- * Constructor. Recibe como parametro el titulo del sistema.
- *
- * @param string $titulo Titulo del sistema
- *
- * @return void
- * @access public
- */
- function Titulo($titulo)
- {
- $this->_titulo = $titulo;
- }
-
- /**
- * Funcion que devuelve un string con el html a imprimir en pantalla.
- *
- * @return string
- * @access public
- */
- function toHtml()
- {
- $TEXTO = "\n".'<title>'.$this->_titulo.'</title>'."\n";
- return $TEXTO;
- }
-
- /**
- * Funcion que devuelve el titulo del sistema.
- *
- * @return string
- * @access public
- */
- function darTitulo()
- {
- return $this->_titulo;
- }
-}
-?>
\ No newline at end of file