]> git.llucax.com Git - software/bife/bife-all.git/blobdiff - src/BIFE/Generic.php
HTML_Template_HIT:
[software/bife/bife-all.git] / src / BIFE / Generic.php
index e31d813bc1bf13e891d03e1cf630f4dd54a6a59e..bbda5bdc52cc6256ee46461395d6c9182a7a541b 100644 (file)
@@ -94,21 +94,21 @@ class BIFE_Generic extends BIFE_Container {
     /**
      * Renders the widget.
      *
-     * @param  HTML_Template_Sigma &$template Template to use to render the widget.
+     * @param  HTML_Template_HIT &$template Template to use to render the widget.
      *
      * @return string
      * @access public
      */
     function render(&$template) // ~X2C
     {
-        $contents = parent::render($template);
-        $template->loadTemplateFile(get_class($this).'.html');
-        $template->setVariable($this->attrs);
-        $template->setVariable('CONTENTS', $contents);
-        return $template->get();
+        $this->attrs['CONTENTS'] = parent::render($template);
+        $template->setGroup();
+        $out = $template->parse(get_class($this), $this->attrs);
+        $template->unsetGroup();
+        return $out;
     }
     // -X2C
 
 } // -X2C Class :Generic
 
-?>
+?>
\ No newline at end of file