]> git.llucax.com Git - software/bife/bife-all.git/blobdiff - src/BIFE/Container.php
- Added a new simple template system: Hooks + IT = HIT.
[software/bife/bife-all.git] / src / BIFE / Container.php
index 14c71054344ea3867fd321812ac1ece49924a4a8..7c138ac5830b7989c9ec5b5dbdcbe883f2e8af04 100644 (file)
@@ -50,12 +50,14 @@ class BIFE_Container extends BIFE_Widget {
     /**
      * Constructor.
      *
+     * @param  array $attrs Attributes.
+     *
      * @return void
      * @access public
      */
-    function BIFE_Container() // ~X2C
+    function BIFE_Container($attrs) // ~X2C
     {
-        $this->__construct();
+        $this->__construct($attrs);
     }
     // -X2C
 
@@ -63,11 +65,14 @@ class BIFE_Container extends BIFE_Widget {
     /**
      * Constructor.
      *
+     * @param  array $attrs Attributes.
+     *
      * @return void
      * @access public
      */
-    function __construct() // ~X2C
+    function __construct($attrs) // ~X2C
     {
+        parent::__construct($attrs);
         $this->contents = array();
     }
     // -X2C