Leandro Lucarella ------------------------------------------------------------------------------- $Id$ -----------------------------------------------------------------------------*/ require_once 'MLIB/Widget/Window.php'; /** * This class accelerates the process of creation of Web sites, creating a * contextual frame where the programmer puts only the _local_ code. * * @todo Add a global example using all the methods. * @author Leandro Lucarella * @author Martín Marrese * @since 1.0 */ class MLIB_Widget_Frame extends MLIB_Widget_Window { //Esta clase es la traduccion de MLIB_Marco. //Esta es la que se utilizaria en los sistemas para agilizar el //funcionamiento. /** * Constructor. * For PHP4 backward compatibility. * * @copydoc __construct() * @see __construct() */ function MLIB_Widget_Frame($confFile, $permObject = null) { $this->__construct($confFile, $permObject); } /** * Constructor. * * @param conFile Location of the configuration file. * @param permObject MLIB_Perm or a derived class of it. * * @todo Add an example. */ function __constructor($confFile, $permObject = null) { } /** * Converts the widget to a string that is human readable. * * @copydoc MLIB_Widget::__toString() * @todo Add an example. */ function __toString() { //Agrego el header. //Titulo //Agrego el body. //Menues //Cuerpo's (si son objetos llamos al metodo __toString y si este no // existe al toHtml) } } ?>