+ 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