]> git.llucax.com Git - software/bife/bife-all.git/blobdiff - modules/basic/BIFE/Page.php
- Removed Root widget (has no sense with the new auto file including).
[software/bife/bife-all.git] / modules / basic / BIFE / Page.php
index a83aaafa1e1738c6889145af77df45aed44d6314..17b3abb2b50a3a2f849a6cc31df193fa1bf4faa4 100644 (file)
@@ -27,7 +27,7 @@
 //
 
 // +X2C includes
-require_once 'BIFE.php';
+require_once 'BIFE/Generic.php';
 // ~X2C
 
 // +X2C Class 14 :Page
@@ -36,78 +36,9 @@ require_once 'BIFE.php';
  *
  * @access public
  */
-class BIFE_Page extends BIFE_Root {
+class BIFE_Page extends BIFE_Generic {
     // ~X2C
 
-    // +X2C Operation 15
-    /**
-     * Constructor.
-     *
-     * @param  array $attrs Attributes.
-     *
-     * @return void
-     * @access public
-     */
-    function BIFE_Page($attrs) // ~X2C
-    {
-        $this->__construct($attrs);
-    }
-    // -X2C
-
-    // +X2C Operation 53
-    /**
-     * Constructor.
-     *
-     * @param  array $attrs Attributes.
-     *
-     * @return void
-     * @access public
-     */
-    function __construct($attrs) // ~X2C
-    {
-        parent::__construct($attrs);
-    }
-    // -X2C
-
-    // +X2C Operation 93
-    /**
-     * Adds contents to the container.
-     *
-     * @param  mixed &$contents Contents to add.
-     *
-     * @return void
-     * @access public
-     */
-    function addContents(&$contents) // ~X2C
-    {
-        if (is_string($contents)) {
-            $contents = trim($contents);
-        }
-        if ($contents) {
-            parent::addContents($contents);
-        }
-    }
-    // -X2C
-
-    // +X2C Operation 90
-    /**
-     * Returns the rendered widget as a string.
-     *
-     * @param  HTML_Template_HIT &$template Template to use to render the widget.
-     *
-     * @return string
-     * @access public
-     */
-    function render(&$template) // ~X2C
-    {
-        $this->attrs['CONTENTS'] = parent::render($template);
-        $template->setGroup();
-        $out = $template->parse('bife_page', $this->attrs);
-        $template->unsetGroup();
-        return $out;
-    }
-    // -X2C
-
 } // -X2C Class :Page
 
-?>
\ No newline at end of file
+?>