1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <?php
- /*
- FusionPBX
- Version: MPL 1.1
- The contents of this file are subject to the Mozilla Public License Version
- 1.1 (the "License"); you may not use this file except in compliance with
- the License. You may obtain a copy of the License at
- http://www.mozilla.org/MPL/
- Software distributed under the License is distributed on an "AS IS" basis,
- WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
- for the specific language governing rights and limitations under the
- License.
- The Original Code is FusionPBX
- The Initial Developer of the Original Code is
- Mark J Crane <[email protected]>
- Copyright (C) 2013
- All Rights Reserved.
- Contributor(s):
- Mark J Crane <[email protected]>
- */
- //define the template class
- if (!class_exists('template')) {
- class template {
- public $engine;
- public $template_dir;
- public $cache_dir;
- private $object;
- private $var_array;
- public function __construct(){
- }
- public function init() {
- if ($this->engine === 'smarty') {
- require_once "resources/templates/engine/smarty/Smarty.class.php";
- $this->object = new Smarty();
- $this->object->setTemplateDir($this->template_dir);
- $this->object->setCompileDir($this->cache_dir);
- $this->object->setCacheDir($this->cache_dir);
- $this->object->registerPlugin("modifier","in_array", "in_array");
- }
- if ($this->engine === 'raintpl') {
- require_once "resources/templates/engine/raintpl/rain.tpl.class.php";
- $this->object = new RainTPL();
- RainTPL::configure('tpl_dir', realpath($this->template_dir)."/");
- RainTPL::configure('cache_dir', realpath($this->cache_dir)."/");
- }
- if ($this->engine === 'twig') {
- require_once "resources/templates/engine/Twig/Autoloader.php";
- Twig_Autoloader::register();
- $loader = new Twig_Loader_Filesystem($this->template_dir);
- $this->object = new Twig_Environment($loader);
- $lexer = new Twig_Lexer($this->object, array(
- 'tag_comment' => array('{*', '*}'),
- 'tag_block' => array('{', '}'),
- 'tag_variable' => array('{$', '}'),
- ));
- $this->object->setLexer($lexer);
- }
- }
- public function assign($key, $value) {
- if ($this->engine === 'smarty') {
- $this->object->assign($key, $value);
- }
- if ($this->engine === 'raintpl') {
- $this->object->assign($key, $value);
- }
- if ($this->engine === 'twig') {
- $this->var_array[$key] = $value;
- }
- }
- public function render($name) {
- if ($this->engine === 'smarty') {
- return $this->object->fetch($name);
- }
- if ($this->engine === 'raintpl') {
- return $this->object-> draw($name, 'return_string=true');
- }
- if ($this->engine === 'twig') {
- return $this->object->render($name,$this->var_array);
- }
- }
- }
- }
- ?>
|