83 lines
1.8 KiB
PHP
83 lines
1.8 KiB
PHP
<?php
|
|
|
|
namespace top\library;
|
|
|
|
use top\library\template\driver\Smarty;
|
|
use top\library\template\driver\Top;
|
|
use top\library\template\driver\Twig;
|
|
use top\traits\Instance;
|
|
|
|
/**
|
|
* 基础视图类
|
|
* @author topnuomi 2018年11月22日
|
|
*/
|
|
class View
|
|
{
|
|
|
|
use Instance;
|
|
|
|
// 用户的配置
|
|
private $config = [];
|
|
|
|
// 视图类实例
|
|
private $template;
|
|
|
|
/**
|
|
* View constructor.
|
|
* @throws \Exception
|
|
*/
|
|
private function __construct()
|
|
{
|
|
$this->config = config('view');
|
|
$driver = strtolower($this->config['driver']);
|
|
switch ($driver) {
|
|
case 'top':
|
|
$this->template = Template::instance(Top::instance());
|
|
break;
|
|
case 'smarty':
|
|
$this->template = Template::instance(Smarty::instance());
|
|
break;
|
|
case 'twig':
|
|
$this->template = Template::instance(Twig::instance());
|
|
break;
|
|
default:
|
|
throw new \Exception('不存在的模板引擎:' . $driver);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 传递参数
|
|
* @param string $name
|
|
* @param mixed $value
|
|
*/
|
|
public function param($name, $value)
|
|
{
|
|
$this->template->param($name, $value);
|
|
}
|
|
|
|
/**
|
|
* 页面静态缓存,直接调用默认为开启
|
|
* @param bool $status
|
|
*/
|
|
public function cache($status = true)
|
|
{
|
|
$this->template->cache($status);
|
|
}
|
|
|
|
/**
|
|
* 获取视图
|
|
* @param string $file
|
|
* @param array $param
|
|
* @param int|bool $cache
|
|
* @return mixed
|
|
* @throws \Exception
|
|
*/
|
|
public function fetch($file = '', $param = [], $cache = false)
|
|
{
|
|
if (!$file) {
|
|
$file = request()->controller() . '/' . request()->method();
|
|
}
|
|
return $this->template->fetch($file, $param, $cache);
|
|
}
|
|
}
|