Exemple #1
0
	function beforeRender($indent)
	{
		parent::beforeRender($indent);
		$this->a($this->renderFooter(), "Footer (LPC_Page)");

		return true;
	}
Exemple #2
0
	public static function setCurrent($object=NULL)
	{
		if (isset(self::$currentInstance))
			return false;

		if (isset($object)) {
			self::$currentInstance=$object;
			return true;
		}

		self::$currentInstance=self::newInstance();
		return true;
	}