]> git.llucax.com Git - mecon/meconlib.git/blob - lib/MLIB/Widget/Frame.php
La clase dummy / interfaz Tpl.php tenia implementado un metodo (getGroup) ... se
[mecon/meconlib.git] / lib / MLIB / Widget / Frame.php
1 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
2 -------------------------------------------------------------------------------
3                                     mlib
4 -------------------------------------------------------------------------------
5 This file is part of mlib.
6
7 mlib is free software; you can redistribute it and/or modify it under
8 the terms of the GNU Lesser General Public License as published by the Free
9 Software Foundation; either version 2 of the License, or (at your option)
10 any later version.
11
12 mlib is distributed in the hope that it will be useful, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14 FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more 
15 details.
16  
17 You should have received a copy of the GNU Lesser General Public License; if 
18 not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
19 Boston, MA  02111-1307  USA
20 -------------------------------------------------------------------------------
21 Created: lun ago  2 11:05:12 ART 2004
22 Authors: Martín Marrese <m_marrese@argentina.com>
23          Leandro Lucarella <luca@llucax.hn.org>
24 -------------------------------------------------------------------------------
25 $Id$
26 -----------------------------------------------------------------------------*/
27
28 require_once 'MLIB/Widget/Window.php';
29
30 /**
31  * This class accelerates the process of creation of Web sites, creating a
32  * contextual frame where the programmer puts only the _local_ code.
33  *
34  * @todo Add a global example using all the methods.
35  * @author Leandro Lucarella <luca@llucax.hn.org>
36  * @author Martín Marrese <m_marrese@argentina.com>
37  * @since  1.0
38  */
39 class MLIB_Widget_Frame extends MLIB_Widget_Window {
40  
41     //Esta clase es la traduccion de MLIB_Marco.
42     //Esta es la que se utilizaria en los sistemas para agilizar el
43     //funcionamiento.
44
45     /**
46      * Constructor.
47      * For PHP4 backward compatibility.
48      *
49      * @copydoc __construct()
50      * @see __construct()
51      */
52     function MLIB_Widget_Frame($confFile, $permObject = null)
53     {
54         $this->__construct($confFile, $permObject);
55     }
56      
57     /**
58      * Constructor.
59      *
60      * @param conFile    Location of the configuration file.
61      * @param permObject MLIB_Perm or a derived class of it.
62      *
63      * @todo Add an example.
64      */
65     function __constructor($confFile, $permObject = null)
66     {
67     }
68
69     /**
70      * Converts the widget to a string that is human readable.
71      *
72      * @copydoc MLIB_Widget::__toString()
73      * @todo Add an example.
74      */
75     function __toString()
76     {
77         //Agrego el header.
78             //Titulo
79         //Agrego el body.
80             //Menues
81             //Cuerpo's (si son objetos llamos al metodo __toString y si este no
82             //          existe al toHtml)
83     }
84 }
85 ?>