]> git.llucax.com Git - software/bife/bife-all.git/blobdiff - src/BIFE/Widget.php
HTML_Template_HIT:
[software/bife/bife-all.git] / src / BIFE / Widget.php
index 56ee704e8e43aeed337c963f215e6216b4d1cc49..c000452a7e0cb3bdc4349f0cf66956e9700f39be 100644 (file)
  * @abstract
  */
 class BIFE_Widget {
+    /**
+     * Attribute list.
+     *
+     * @var    array $attrs
+     * @access protected
+     */
+    var $attrs = array();
+
     // ~X2C
 
-    // +X2C Operation 4
+    // +X2C Operation 126
     /**
-     * Renders the widget returning a string.
-Renders the widget using a template returning a string with the
-results.
+     * Constructor.
      *
-     * @param  HTML_Template_Sigma &$template Template object to render the widget.
+     * @param  array $attrs Attributes.
      *
      * @return void
      * @access public
+     */
+    function BIFE_Widget($attrs) // ~X2C
+    {
+        $this->__construct($attrs);
+    }
+    // -X2C
+
+    // +X2C Operation 127
+    /**
+     * Constructor.
+     *
+     * @param  array $attrs Attributes.
+     *
+     * @return void
+     * @access public
+     */
+    function __construct($attrs) // ~X2C
+    {
+        $this->attrs = $attrs;
+    }
+    // -X2C
+
+    // +X2C Operation 4
+    /**
+     * Renders the widget using a template returning a string with the results.
+     *
+     * @param  HTML_Template_HIT &$template Template object to render the widget.
+     *
+     * @return string
+     * @access public
      * @abstract
      */
     function render(&$template) // ~X2C