File:  [Paefchen] / FreeBSD / tinderbox / webui / module / module.php
Revision 1.1.1.1.2.2: download - view: text, annotated - select for diffs - revision graph
Thu Nov 15 15:31:35 2007 UTC (17 years ago) by as
Branches: CH2PHP5
Diff to: branchpoint 1.1.1.1: preferred, unified
- new config
- php5
- fixes

<?php
#-
# Copyright (c) 2005 Oliver Lehmann <oliver@FreeBSD.org>
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
#    notice, this list of conditions and the following disclaimer
# 2. Redistributions in binary form must reproduce the above copyright
#    notice, this list of conditions and the following disclaimer in the
#    documentation and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
#
# $Paefchen: FreeBSD/tinderbox/webui/module/module.php,v 1.1.1.1.2.2 2007/11/15 15:31:35 as Exp $
# $MCom: portstools/tinderbox/webui/module/module.php,v 1.4 2005/12/26 22:41:41 marcus Exp $
#

class module {
	public $TinderboxDS = null;
	private $_template_vars = array();

	public function __construct() {
		$this->TinderboxDS = TinderboxDS::instance();
	}

	public function template_parse($template) {
		/* as xxx */
		# global $display_login;

		$this->template_assign('templatesuri',		TEMPLATESURL);
		$this->template_assign('tinderbox_name',	TB_NAME);
		$this->template_assign('tinderbox_title',	TB_TITLE);
		$this->template_assign('display_login',		$display_login);
		/* as xxx */
		#$this->template_assign('errors',			$this->TinderboxDS->getErrors());

		foreach ($this->_template_vars as $varname => $varcontent)
			$$varname = $varcontent;
		
		ob_start();
		require TEMPLATESDIR.'/'.$template;
		$parsed = ob_get_contents();
		ob_end_clean();

		$this->template_cleanup();

		return $parsed;
	}

	public function template_assign( $varname, $varcontent ) {
		$this->_template_vars[$varname] = $varcontent;
	}

	public function template_cleanup() {
		return $this->_template_vars = array();
	}
}

?>