Example #1
0
 protected function _include($tree, $content)
 {
     $template = new Template(array('implementation' => new self()));
     $file = trim($tree["raw"]);
     $path = $this->getDefaultPath();
     $content = file_get_contents(APP_PATH . "\\{$path}\\{$file}");
     $template->parse($content);
     $index = $this->_index++;
     return "function anon_{$index}(\$_data){" . $template->getCode() . "};\$_text[] = anon_{$index}(\$_data);";
 }