TOP-framework/framework/library/template/Twig.php

53 lines
1.3 KiB
PHP

<?php
namespace top\library\template;
use top\library\Register;
use top\library\template\ifs\TemplateIfs;
use Twig\Environment;
use Twig\Loader\FilesystemLoader;
class Twig implements TemplateIfs {
private static $instance;
private $config = [];
private function __construct() {
}
private function __clone() {
// TODO: Implement __clone() method.
}
public static function instance() {
if (!self::$instance) {
self::$instance = new self();
}
return self::$instance;
}
public function run() {
// TODO: Implement run() method.
$this->config = Register::get('Config')->get('view');
return $this;
}
public function cache($status) {
// TODO: Implement cache() method.
return true;
}
public function fetch($file, $param, $cache) {
$baseViewDir = rtrim($this->config['dir'], '/') . '/';
$loader = new FilesystemLoader($baseViewDir);
$loader->addPath($baseViewDir, 'base');
$template = new Environment($loader, [
'cache' => rtrim($this->config['cacheDir'], '/') . '/',
'auto_reload' => true,
'debug' => DEBUG
]);
$templateFile = '@base/' . $file . '.' . $this->config['ext'];
return $template->render($templateFile, $param);
}
}