]> git.llucax.com Git - mecon/meconlib.git/blob - lib/MECON/Marco/Pagina.php
Finalizo la poda. Faltan los permisos.
[mecon/meconlib.git] / lib / MECON / Marco / Pagina.php
1 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
2 -------------------------------------------------------------------------------
3                              Ministerio de Economía
4                                     meconlib
5 -------------------------------------------------------------------------------
6 This file is part of meconlib.
7
8 meconlib is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 2 of the License, or (at your option)
11 any later version.
12
13 meconlib is distributed in the hope that it will be useful, but WITHOUT
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16  
17 You should have received a copy of the GNU General Public License; if not,
18 write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
19 Boston, MA  02111-1307  USA
20 -------------------------------------------------------------------------------
21 Creado: Mon Apr 14 16:23:22 2003
22 Autor:  Martin Marrese <mmarre@mecon.gov.ar>
23 -------------------------------------------------------------------------------
24 $Id$
25 -----------------------------------------------------------------------------*/
26
27 // +X2C Class 15 :MECON_Marco_Pagina
28 /**
29  * Clase para el manejo de las paginas.
30  *
31  * @package MECON_Marco
32  * @access public
33  */
34 class MECON_Marco_Pagina {
35     /**
36      * Nombre del archivo pagina.
37      *
38      * @var    string $link
39      * @access private
40      */
41     var $_link = '';
42
43     /**
44      * Titulo de la pagina
45      *
46      * @var    string $titulo
47      * @access private
48      */
49     var $_titulo = '';
50
51     /**
52      * Permisos de la pagina
53      *
54      * @var    array $permisos
55      * @access private
56      */
57     var $_permisos = array();
58
59     // ~X2C
60
61     // +X2C Operation 66
62     /**
63      * Constructor. Recibe como parametro el nombre del archivo pagina.
64      *
65      * @param  string $pagina Nombre del archivo pagina.
66      *
67      * @return void
68      * @access public
69      */
70     function MECON_Marco_Pagina($pagina) // ~X2C
71     {
72         $this->_link = $pagina;
73     }
74     // -X2C
75
76     // +X2C Operation 67
77     /**
78      * Funcion que devuelve un string con el link de a la pagina.
79      *
80      * @return string
81      * @access public
82      */
83     function link() // ~X2C
84     {
85         return $this->_link;
86     }
87     // -X2C
88
89 } // -X2C Class :MECON_Marco_Pagina
90
91 ?>