修复Top模板引擎在PSR-4自动加载下出现的问题

This commit is contained in:
TOP糯米 2019-06-21 15:20:08 +08:00
parent 836a43ed0a
commit 8f540fdb27
32 changed files with 47 additions and 526 deletions

View File

@ -1,13 +1,11 @@
<?php <?php
return [ return [
'register' => [ 'register' => [
'Twig' => \top\library\template\driver\Twig::class, // 'Twig' => \top\library\template\driver\Twig::class,
// 'Smarty' => top\library\template\Smarty::class, // 'Smarty' => \top\library\template\driver\Smarty::class,
// 'Top' => top\library\template\Top::class, 'Top' => \top\library\template\driver\Top::class,
],
'decorator' => [
\app\home\decorator\Log::class
], ],
'decorator' => [],
'session' => [ 'session' => [
'open' => true, 'open' => true,
'prefix' => 'home', 'prefix' => 'home',
@ -15,14 +13,14 @@ return [
'db' => [ 'db' => [
'driver' => 'MySQLi', 'driver' => 'MySQLi',
'host' => '127.0.0.1', 'host' => '127.0.0.1',
'user' => 'root', 'user' => '',
'passwd' => '', 'passwd' => '',
'dbname' => '', 'dbname' => '',
'prefix' => 't_', 'prefix' => '',
'charset' => 'utf8' 'charset' => 'utf8'
], ],
'view' => [ 'view' => [
'engine' => 'Twig', 'engine' => 'Top',
'ext' => 'html', 'ext' => 'html',
'dir' => '../application/home/view/', 'dir' => '../application/home/view/',
'cacheDir' => './runtime/cache/application/home/', 'cacheDir' => './runtime/cache/application/home/',

View File

@ -4,6 +4,7 @@ namespace app\home\controller;
use top\library\Controller; use top\library\Controller;
class Common extends Controller { class Common extends Controller
{
} }

View File

@ -2,27 +2,23 @@
namespace app\home\controller; namespace app\home\controller;
use app\home\model\Job; use app\home\model\Users;
class Index extends Common class Index extends Common
{ {
public function index() public function index()
{ {
$model = model(Job::class); $model = model(Users::class);
$lists = $model->all;
return [ return [
'title' => 'test', 'lists' => $lists
'lists' => $model->order('id desc')->select(),
'query' => $model->sql
]; ];
} }
public function testPage() public function hello()
{ {
return $this->fetch('', [ // return $this->fetch();
'a' => '测试页面', return true;
]);
} }
} }

View File

@ -1,28 +0,0 @@
<?php
namespace app\home\decorator;
use top\decorator\ifs\DecoratorIfs;
use top\library\Register;
class Log implements DecoratorIfs
{
public function before()
{
}
/**
* @param array $data
* @throws \Exception
*/
public function after($data)
{
$router = Register::get('Router');
$message = '当前访问:';
$message .= $router->module . '.';
$message .= $router->ctrl . '.';
$message .= $router->action;
echo $message;
}
}

View File

@ -11,7 +11,7 @@ use top\library\Model;
class Example extends Model class Example extends Model
{ {
protected $table = 'users'; protected $table = 'example';
protected $pk = 'id'; protected $pk = 'id';
protected $map = [ protected $map = [
'type' => 'user_type' 'type' => 'user_type'

View File

@ -4,7 +4,7 @@ namespace app\home\model;
use top\library\Model; use top\library\Model;
class Job extends Model class Users extends Model
{ {
} }

View File

@ -1,18 +0,0 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>{% block title %}{% endblock %}</title>
</head>
<body>
<style>
ul {list-style: none;margin: 0;padding: 0;}
h4 {font-weight: 200;}
</style>
<div>
{% block content %}{% endblock %}
</div>
</body>
</html>

View File

@ -0,0 +1 @@
<h1>Hello</h1>

View File

@ -1,10 +1,14 @@
{% extends "@base/Common/base.html" %} <!DOCTYPE html>
{% block title %}{{ title }}{% endblock %} <html lang="en">
{% block content %} <head>
<h4>SQL{{ query }}</h4> <meta charset="UTF-8">
<ul> <title>Title</title>
{% for key,value in lists %} <script src="https://libs.baidu.com/jquery/1.11.1/jquery.min.js"></script>
<li>{{ key+1 }}{{ value.title }}{{ value.name }}</li> </head>
{% endfor %} <body>
</ul> {view name="Index/hello"}
{% endblock %} {loop $lists as $value}
{$value->name}
{/loop}
</body>
</html>

View File

@ -1 +0,0 @@
{{ a }}

View File

@ -122,7 +122,7 @@ class Tags
private function processingViewTag($filename) private function processingViewTag($filename)
{ {
$tags = [ $tags = [
'view:name' => '$__view__config = \\framework\\library\\Register::get(\'Config\')->get(\'view\'); require BASEDIR . \'/\' . $__view__config[\'dir\'] . \'name\' . \'.\' . $__view__config[\'ext\'];' 'view:name' => '$__view__config = \\top\\library\\Register::get(\'Config\')->get(\'view\'); require \'./\' . $__view__config[\'dir\'] . \'name\' . \'.\' . $__view__config[\'ext\'];'
]; ];
$this->setTags($tags); $this->setTags($tags);
$content = file_get_contents($filename); $content = file_get_contents($filename);
@ -156,7 +156,7 @@ class Tags
$this->setTags($this->selfTags); $this->setTags($this->selfTags);
// 加载自定义模板标签 // 加载自定义模板标签
// 文件位置固定 // 文件位置固定
$tagsFile = BASEDIR . '/' . Register::get('Router')->module . '/config/tags.php'; $tagsFile = APP_PATH . Register::get('Router')->module . '/config/tags.php';
if (file_exists($tagsFile)) { if (file_exists($tagsFile)) {
$tags = require $tagsFile; $tags = require $tagsFile;
$this->setTags($tags); $this->setTags($tags);
@ -168,7 +168,7 @@ class Tags
// 最终过滤内容中?\>与<?php中间的内容 // 最终过滤内容中?\>与<?php中间的内容
$result = preg_replace('#\?>([\r|\n|\s]*?)<\?php#', '', $result); $result = preg_replace('#\?>([\r|\n|\s]*?)<\?php#', '', $result);
$filename = $this->compileDir . md5($filename) . '.php'; $filename = $this->compileDir . md5($filename) . '.php';
file_put_contents($filename, "<?php /* topnuomi */ (!defined('BASEDIR')) && exit(0); ?>" . $result); file_put_contents($filename, "<?php /* topnuomi */ (!defined('APP_PATH')) && exit(0); ?>" . $result);
return $filename; return $filename;
} }
} }

View File

@ -1,52 +0,0 @@
<?php
use Twig\Environment;
use Twig\Error\LoaderError;
use Twig\Error\RuntimeError;
use Twig\Extension\SandboxExtension;
use Twig\Markup;
use Twig\Sandbox\SecurityError;
use Twig\Sandbox\SecurityNotAllowedTagError;
use Twig\Sandbox\SecurityNotAllowedFilterError;
use Twig\Sandbox\SecurityNotAllowedFunctionError;
use Twig\Source;
use Twig\Template;
/* @base/Index/testPage.html */
class __TwigTemplate_0ff44b92c43451a4e3a2b89b117284ec347b787a297aefb1fd0ffd42f6ccd6b2 extends \Twig\Template
{
private $source;
public function __construct(Environment $env)
{
parent::__construct($env);
$this->source = $this->getSourceContext();
$this->parent = false;
$this->blocks = [
];
}
protected function doDisplay(array $context, array $blocks = [])
{
// line 1
echo "{\$a}";
}
public function getTemplateName()
{
return "@base/Index/testPage.html";
}
public function getDebugInfo()
{
return array ( 35 => 1,);
}
public function getSourceContext()
{
return new Source("{\$a}", "@base/Index/testPage.html", "D:\\www\\TOP\\application\\home\\view\\Index\\testPage.html");
}
}

View File

@ -1,109 +0,0 @@
<?php
use Twig\Environment;
use Twig\Error\LoaderError;
use Twig\Error\RuntimeError;
use Twig\Extension\SandboxExtension;
use Twig\Markup;
use Twig\Sandbox\SecurityError;
use Twig\Sandbox\SecurityNotAllowedTagError;
use Twig\Sandbox\SecurityNotAllowedFilterError;
use Twig\Sandbox\SecurityNotAllowedFunctionError;
use Twig\Source;
use Twig\Template;
/* @base/Index/index.html */
class __TwigTemplate_4e45f269a5dc64d05d88cfbc6e8b152f94e9fc9f436e98fdcb2be40004d33059 extends \Twig\Template
{
private $source;
public function __construct(Environment $env)
{
parent::__construct($env);
$this->source = $this->getSourceContext();
$this->blocks = [
'title' => [$this, 'block_title'],
'content' => [$this, 'block_content'],
];
}
protected function doGetParent(array $context)
{
// line 1
return "@base/Common/base.html";
}
protected function doDisplay(array $context, array $blocks = [])
{
$this->parent = $this->loadTemplate("@base/Common/base.html", "@base/Index/index.html", 1);
$this->parent->display($context, array_merge($this->blocks, $blocks));
}
// line 2
public function block_title($context, array $blocks = [])
{
echo twig_escape_filter($this->env, ($context["title"] ?? null), "html", null, true);
}
// line 3
public function block_content($context, array $blocks = [])
{
// line 4
echo " <h4>SQL";
echo twig_escape_filter($this->env, ($context["query"] ?? null), "html", null, true);
echo "</h4>
<ul>
";
// line 6
$context['_parent'] = $context;
$context['_seq'] = twig_ensure_traversable(($context["lists"] ?? null));
foreach ($context['_seq'] as $context["key"] => $context["value"]) {
// line 7
echo " <li>";
echo twig_escape_filter($this->env, ($context["key"] + 1), "html", null, true);
echo "";
echo twig_escape_filter($this->env, twig_get_attribute($this->env, $this->source, $context["value"], "title", [], "any", false, false, false, 7), "html", null, true);
echo "";
echo twig_escape_filter($this->env, twig_get_attribute($this->env, $this->source, $context["value"], "name", [], "any", false, false, false, 7), "html", null, true);
echo "</li>
";
}
$_parent = $context['_parent'];
unset($context['_seq'], $context['_iterated'], $context['key'], $context['value'], $context['_parent'], $context['loop']);
$context = array_intersect_key($context, $_parent) + $_parent;
// line 9
echo " </ul>
";
}
public function getTemplateName()
{
return "@base/Index/index.html";
}
public function isTraitable()
{
return false;
}
public function getDebugInfo()
{
return array ( 77 => 9, 64 => 7, 60 => 6, 54 => 4, 51 => 3, 45 => 2, 35 => 1,);
}
public function getSourceContext()
{
return new Source("{% extends \"@base/Common/base.html\" %}
{% block title %}{{ title }}{% endblock %}
{% block content %}
<h4>SQL{{ query }}</h4>
<ul>
{% for key,value in lists %}
<li>{{ key+1 }}{{ value.title }}{{ value.name }}</li>
{% endfor %}
</ul>
{% endblock %}", "@base/Index/index.html", "D:\\www\\TOP\\application\\home\\view\\Index\\index.html");
}
}

View File

@ -1,104 +0,0 @@
<?php
use Twig\Environment;
use Twig\Error\LoaderError;
use Twig\Error\RuntimeError;
use Twig\Extension\SandboxExtension;
use Twig\Markup;
use Twig\Sandbox\SecurityError;
use Twig\Sandbox\SecurityNotAllowedTagError;
use Twig\Sandbox\SecurityNotAllowedFilterError;
use Twig\Sandbox\SecurityNotAllowedFunctionError;
use Twig\Source;
use Twig\Template;
/* @base/Common/base.html */
class __TwigTemplate_fc897c7e0828f45c4af62abf0a358c71841f798bace75d00ea2c7e1d14accdaa extends \Twig\Template
{
private $source;
public function __construct(Environment $env)
{
parent::__construct($env);
$this->source = $this->getSourceContext();
$this->parent = false;
$this->blocks = [
'title' => [$this, 'block_title'],
'content' => [$this, 'block_content'],
];
}
protected function doDisplay(array $context, array $blocks = [])
{
// line 1
echo "<!doctype html>
<html lang=\"en\">
<head>
<meta charset=\"UTF-8\">
<meta name=\"viewport\" content=\"width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0\">
<meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">
<title>";
// line 7
$this->displayBlock('title', $context, $blocks);
echo "</title>
</head>
<body>
<style>
ul {list-style: none;margin: 0;padding: 0;}
h4 {font-weight: 200;}
</style>
<div>
";
// line 15
$this->displayBlock('content', $context, $blocks);
// line 16
echo "</div>
</body>
</html>";
}
// line 7
public function block_title($context, array $blocks = [])
{
}
// line 15
public function block_content($context, array $blocks = [])
{
}
public function getTemplateName()
{
return "@base/Common/base.html";
}
public function getDebugInfo()
{
return array ( 69 => 15, 64 => 7, 58 => 16, 56 => 15, 45 => 7, 37 => 1,);
}
public function getSourceContext()
{
return new Source("<!doctype html>
<html lang=\"en\">
<head>
<meta charset=\"UTF-8\">
<meta name=\"viewport\" content=\"width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0\">
<meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">
<title>{% block title %}{% endblock %}</title>
</head>
<body>
<style>
ul {list-style: none;margin: 0;padding: 0;}
h4 {font-weight: 200;}
</style>
<div>
{% block content %}{% endblock %}
</div>
</body>
</html>", "@base/Common/base.html", "D:\\www\\TOP\\application\\home\\view\\Common\\base.html");
}
}

View File

@ -1,90 +0,0 @@
<?php
use Twig\Environment;
use Twig\Error\LoaderError;
use Twig\Error\RuntimeError;
use Twig\Extension\SandboxExtension;
use Twig\Markup;
use Twig\Sandbox\SecurityError;
use Twig\Sandbox\SecurityNotAllowedTagError;
use Twig\Sandbox\SecurityNotAllowedFilterError;
use Twig\Sandbox\SecurityNotAllowedFunctionError;
use Twig\Source;
use Twig\Template;
/* @base/Index/index.html */
class __TwigTemplate_77f6f4434e23a407b1c0b188f9b24dae360b4fa23942695959cc1259bf1a51d4 extends \Twig\Template
{
private $source;
public function __construct(Environment $env)
{
parent::__construct($env);
$this->source = $this->getSourceContext();
$this->blocks = [
'content' => [$this, 'block_content'],
];
}
protected function doGetParent(array $context)
{
// line 1
return "@base/Common/base.html";
}
protected function doDisplay(array $context, array $blocks = [])
{
$this->parent = $this->loadTemplate("@base/Common/base.html", "@base/Index/index.html", 1);
$this->parent->display($context, array_merge($this->blocks, $blocks));
}
// line 3
public function block_content($context, array $blocks = [])
{
// line 4
echo " <h1>Twig</h1>
";
// line 5
$context['_parent'] = $context;
$context['_seq'] = twig_ensure_traversable(($context["lists"] ?? null));
foreach ($context['_seq'] as $context["_key"] => $context["value"]) {
// line 6
echo " ";
echo twig_escape_filter($this->env, $context["value"], "html", null, true);
echo "
";
}
$_parent = $context['_parent'];
unset($context['_seq'], $context['_iterated'], $context['_key'], $context['value'], $context['_parent'], $context['loop']);
$context = array_intersect_key($context, $_parent) + $_parent;
}
public function getTemplateName()
{
return "@base/Index/index.html";
}
public function isTraitable()
{
return false;
}
public function getDebugInfo()
{
return array ( 54 => 6, 50 => 5, 47 => 4, 44 => 3, 34 => 1,);
}
public function getSourceContext()
{
return new Source("{% extends \"@base/Common/base.html\" %}
{% block content %}
<h1>Twig</h1>
{% for value in lists %}
{{ value }}
{% endfor %}
{% endblock %}", "@base/Index/index.html", "D:\\www\\TOP-framework-1.1\\application\\home\\view\\Index\\index.html");
}
}

View File

@ -1,87 +0,0 @@
<?php
use Twig\Environment;
use Twig\Error\LoaderError;
use Twig\Error\RuntimeError;
use Twig\Extension\SandboxExtension;
use Twig\Markup;
use Twig\Sandbox\SecurityError;
use Twig\Sandbox\SecurityNotAllowedTagError;
use Twig\Sandbox\SecurityNotAllowedFilterError;
use Twig\Sandbox\SecurityNotAllowedFunctionError;
use Twig\Source;
use Twig\Template;
/* @base/Common/base.html */
class __TwigTemplate_fa33c070c42c74455bd3134ce641f9b5ee06d8cefaccf4e683eeff23ca95386a extends \Twig\Template
{
private $source;
public function __construct(Environment $env)
{
parent::__construct($env);
$this->source = $this->getSourceContext();
$this->parent = false;
$this->blocks = [
'content' => [$this, 'block_content'],
];
}
protected function doDisplay(array $context, array $blocks = [])
{
// line 1
echo "<!doctype html>
<html lang=\"en\">
<head>
<meta charset=\"UTF-8\">
<meta name=\"viewport\" content=\"width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0\">
<meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">
<title>Page</title>
</head>
<body>
<div>
";
// line 11
$this->displayBlock('content', $context, $blocks);
// line 12
echo "</div>
</body>
</html>";
}
// line 11
public function block_content($context, array $blocks = [])
{
}
public function getTemplateName()
{
return "@base/Common/base.html";
}
public function getDebugInfo()
{
return array ( 56 => 11, 50 => 12, 48 => 11, 36 => 1,);
}
public function getSourceContext()
{
return new Source("<!doctype html>
<html lang=\"en\">
<head>
<meta charset=\"UTF-8\">
<meta name=\"viewport\" content=\"width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0\">
<meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">
<title>Page</title>
</head>
<body>
<div>
{% block content %}{% endblock %}
</div>
</body>
</html>", "@base/Common/base.html", "D:\\www\\TOP-framework-1.1\\application\\home\\view\\Common\\base.html");
}
}

View File

View File

@ -0,0 +1,11 @@
<?php /* topnuomi */ (!defined('APP_PATH')) && exit(0); ?><!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<script src="https://libs.baidu.com/jquery/1.11.1/jquery.min.js"></script>
</head>
<body>
<h1>Hello</h1> <?php $i = 0; foreach ($lists as $value): $i++; echo $value->name; endforeach; ?>
</body>
</html>

View File

@ -1 +0,0 @@
<?php /* TOP糯米 */ (!defined('BASEDIR')) && exit(0); ?><?php echo $a; ?>