]> git.llucax.com Git - software/bife/bife-all.git/blobdiff - src/BIFE/Fallback.php
- Moved some Generic functionality to Widget (attrs property).
[software/bife/bife-all.git] / src / BIFE / Fallback.php
index ed6ebdde56fd281bc57c88d67d0f7ba47daf236f..60ac5f852d3fd44d912ba6e1ae702eb3cd1bace2 100644 (file)
@@ -26,8 +26,6 @@
 // $Id$
 //
 
-
-
 // +X2C includes
 require_once 'BIFE/Container.php';
 // ~X2C
@@ -40,6 +38,12 @@ require_once 'BIFE/Container.php';
  * @abstract
  */
 class BIFE_Fallback extends BIFE_Container {
+    /**
+     * @var    string $name
+     * @access public
+     */
+    var $name;
+
     // ~X2C
 
     // +X2C Operation 62
@@ -54,7 +58,7 @@ class BIFE_Fallback extends BIFE_Container {
      */
     function BIFE_Fallback($name, $attrs) // ~X2C
     {
-        trigger_error('Not implemented!', E_USER_WARNING);
+        $this->__construct($name, $attrs);
     }
     // -X2C
 
@@ -70,9 +74,11 @@ class BIFE_Fallback extends BIFE_Container {
      */
     function __construct($name, $attrs) // ~X2C
     {
-        trigger_error('Not implemented!', E_USER_WARNING);
+        parent::__construct($attrs);
+        $this->name = $name;
     }
     // -X2C
 
 } // -X2C Class :Fallback
-?>
\ No newline at end of file
+
+?>