]> git.llucax.com Git - software/bife/bife-all.git/blobdiff - core/BIFE/Container.php
Core and Basic modules are now much more like they should. Huge code clean:
[software/bife/bife-all.git] / core / BIFE / Container.php
index a1540b8f2a9a63e7827d5d5635f81ffe5a9b74d1..2ddc24d12975076e671987ea72da8291affcce8d 100644 (file)
@@ -39,44 +39,15 @@ require_once 'BIFE/Widget.php';
  */
 class BIFE_Container extends BIFE_Widget {
     /**
  */
 class BIFE_Container extends BIFE_Widget {
     /**
+     * Widget contents.
+     *
      * @var    array $contents
      * @access public
      */
      * @var    array $contents
      * @access public
      */
-    var $contents;
+    var $contents = array();
 
     // ~X2C
 
 
     // ~X2C
 
-    // +X2C Operation 48
-    /**
-     * Constructor.
-     *
-     * @param  array $attrs Attributes.
-     *
-     * @return void
-     * @access public
-     */
-    function BIFE_Container($attrs) // ~X2C
-    {
-        $this->__construct($attrs);
-    }
-    // -X2C
-
-    // +X2C Operation 50
-    /**
-     * Constructor.
-     *
-     * @param  array $attrs Attributes.
-     *
-     * @return void
-     * @access public
-     */
-    function __construct($attrs) // ~X2C
-    {
-        parent::__construct($attrs);
-        $this->contents = array();
-    }
-    // -X2C
-
     // +X2C Operation 6
     /**
      * Adds contents to the container.
     // +X2C Operation 6
     /**
      * Adds contents to the container.
@@ -105,7 +76,7 @@ class BIFE_Container extends BIFE_Widget {
      * @return string
      * @access public
      */
      * @return string
      * @access public
      */
-    function render(&$template) // ~X2C
+    function renderContents(&$template) // ~X2C
     {
         $c = count($this->contents);
         $o = '';
     {
         $c = count($this->contents);
         $o = '';
@@ -120,6 +91,7 @@ class BIFE_Container extends BIFE_Widget {
     }
     // -X2C
 
     }
     // -X2C
 
+
 } // -X2C Class :Container
 
 ?>
\ No newline at end of file
 } // -X2C Class :Container
 
 ?>
\ No newline at end of file