path = $path; $this->template = $template; } /** * Displays the template managed by this renderer by including * the php file containing the template. * * @param phpbb_template_context $context Template context to use * @param array $lang Language entries to use */ public function render($context, $lang) { $_template = $this->template; $_tpldata = &$context->get_data_ref(); $_rootref = &$context->get_root_ref(); $_lang = $lang; include($this->path); } }