X-Git-Url: https://git.llucax.com/software/bife/bife-all.git/blobdiff_plain/ef3115fcba3b2589f2819538dc53e597822716d5..93ebb6cfe68748103b065768c7cb530ebefc7543:/src/BIFE/Page.php?ds=inline diff --git a/src/BIFE/Page.php b/src/BIFE/Page.php index e1d8aaa..7f8fa30 100644 --- a/src/BIFE/Page.php +++ b/src/BIFE/Page.php @@ -27,7 +27,7 @@ // // +X2C includes -require_once 'BIFE/Generic.php'; +require_once 'BIFE/Root.php'; // ~X2C // +X2C Class 14 :Page @@ -36,7 +36,15 @@ require_once 'BIFE/Generic.php'; * * @access public */ -class BIFE_Page extends BIFE_Generic { +class BIFE_Page extends BIFE_Root { + /** + * Attributes. + * + * @var array $attrs + * @access protected + */ + var $attrs; + // ~X2C // +X2C Operation 15 @@ -50,7 +58,62 @@ class BIFE_Page extends BIFE_Generic { */ function BIFE_Page($attrs) // ~X2C { - $this->BIFE_Generic($attrs); + $this->__construct($attrs); + } + // -X2C + + // +X2C Operation 53 + /** + * Constructor. + * + * @param array $attrs Attributes. + * + * @return void + * @access public + */ + function __construct($attrs) // ~X2C + { + parent::__construct($attrs); + $this->attrs = $attrs; + } + // -X2C + + // +X2C Operation 93 + /** + * Adds contents to the container. + * + * @param mixed &$contents Contents to add. + * + * @return void + * @access public + */ + function addContents(&$contents) // ~X2C + { + if (is_string($contents)) { + $contents = trim($contents); + } + if ($contents) { + parent::addContents($contents); + } + } + // -X2C + + // +X2C Operation 90 + /** + * Returns the rendered widget as a string. + * + * @param HTML_Template_Sigma &$template Template to use to render the widget. + * + * @return string + * @access public + */ + function render(&$template) // ~X2C + { + $contents = parent::render($template); + $template->loadTemplateFile('bife_page.html'); + $template->setVariable($this->attrs); + $template->setVariable('CONTENTS', $contents); + return $template->get(); } // -X2C