// $Id$
//
-
-
// +X2C includes
require_once 'BIFE/Container.php';
// ~X2C
* @abstract
*/
class BIFE_Fallback extends BIFE_Container {
+ /**
+ * @var string $name
+ * @access public
+ */
+ var $name;
+
// ~X2C
// +X2C Operation 62
*/
function BIFE_Fallback($name, $attrs) // ~X2C
{
- trigger_error('Not implemented!', E_USER_WARNING);
+ $this->__construct($name, $attrs);
}
// -X2C
*/
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
+
+?>