]> git.llucax.com Git - software/bife/bife-all.git/blobdiff - src/BIFE/Container.php
* Added __construc() method for PHP5 forward compatibility.
[software/bife/bife-all.git] / src / BIFE / Container.php
index d1ea194aefe10878372e84e1088330340e58b295..14c71054344ea3867fd321812ac1ece49924a4a8 100644 (file)
@@ -38,22 +38,80 @@ require_once 'BIFE/Widget.php';
  * @abstract
  */
 class BIFE_Container extends BIFE_Widget {
+    /**
+     * @var    array $contents
+     * @access public
+     */
+    var $contents;
+
     // ~X2C
 
+    // +X2C Operation 48
+    /**
+     * Constructor.
+     *
+     * @return void
+     * @access public
+     */
+    function BIFE_Container() // ~X2C
+    {
+        $this->__construct();
+    }
+    // -X2C
+
+    // +X2C Operation 50
+    /**
+     * Constructor.
+     *
+     * @return void
+     * @access public
+     */
+    function __construct() // ~X2C
+    {
+        $this->contents = array();
+    }
+    // -X2C
+
     // +X2C Operation 6
     /**
      * Adds contents to the container.
      *
-     * @param  string $contents Contents to add to the container.
+     * @param  mixed &$contents Contents to add to the container.
      *
      * @return void
      * @access public
-     * @abstract
      */
-    function addContents($contents) // ~X2C
+    function addContents(&$contents) // ~X2C
+    {
+        if (is_object($contents)) {
+            $this->contents[] =& $contents;
+        } else {
+            $this->contents[] = $contents;
+        }
+    }
+    // -X2C
+
+    // +X2C Operation 59
+    /**
+     * Renders the widget using a template returning a string with the results.
+     *
+     * @param  HTML_Template_Sigma &$template Template object to render the widget.
+     *
+     * @return string
+     * @access public
+     */
+    function render(&$template) // ~X2C
     {
-        trigger_error('Method not implemented '.get_class($this).
-            '::addContents().', E_USER_ERROR);
+        $c = count($this->contents);
+        $o = '';
+        for ($i = 0; $i < $c; $i++) {
+            if (is_object($this->contents[$i])) {
+                $o .= $this->contents[$i]->render($template);
+            } else {
+                $o .= $this->contents[$i];
+            }
+        }
+        return $o;
     }
     // -X2C