]> git.llucax.com Git - mecon/meconlib.git/blob - marco/php/marco/Seccion.php
16f1460071f94718e4876e289d35fab4c739603b
[mecon/meconlib.git] / marco / php / marco / Seccion.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
30 // +X2C includes
31 require_once 'Pagina.php';
32 // ~X2C
33
34 // +X2C Class 16 :Seccion
35 /**
36  * Clase seccion para el manejo de las secciones
37  *
38  * @access public
39  */
40 class Seccion extends Pagina {
41     /**
42      * Nombre de la seccion.
43      *
44      * @var    string $nombre
45      *
46      * @access private
47      */
48     var $_nombre;
49
50     /**
51      * Este es el nombre de la imagen
52      *
53      * @var    ImagenAnimada $imagen
54      *
55      * @access private
56      */
57     var $_imagen;
58
59     /**
60      * Hijos (menu) de la seccion.
61      *
62      * @var    Menu $hijos
63      *
64      * @access private
65      */
66     var $_hijos;
67
68     // ~X2C
69
70     // +X2C Operation 63
71     /**
72      * Constructor. Recibe como parametro el nombre de la seccion
73      *
74      * @param  string $seccion Nombre de la seccion.
75      *
76      * @return void
77      *
78      * @access public
79      * @static
80      */
81     function Seccion($seccion) // ~X2C
82     {
83         trigger_error('Not implemented!', E_USER_WARNING);
84     }
85     // -X2C
86
87     // +X2C Operation 64
88     /**
89      * Funcion que devuelve un string con el html a imprimir por pantalla.
90      *
91      * @return string
92      *
93      * @access public
94      */
95     function toHtml() // ~X2C
96     {
97         trigger_error('Not implemented!', E_USER_WARNING);
98     }
99     // -X2C
100
101 } // -X2C Class :Seccion
102
103 ?>