asgard/templating
Composer 安装命令:
composer require asgard/templating
包简介
README 文档
README
#Templating
Templating is a simple package which provides interfaces to build your own templating system. It also provides a PHP templating system and the Viewable class.
##Installation If you are working on an Asgard project you don't need to install this library as it is already part of the standard libraries.
composer require asgard/templating 0.*
###TemplateEngineInterface
public function templateExists($template); #check that a template exists
public function getTemplateFile($template); #return the file corresponding to the template name
public function createTemplate(); #return a new instance of the template class (implementing TemplateInterface)
###TemplateInterface
public function getEngine();
public function setEngine(TemplateEngineInterface $engine);
public function setTemplate($template);
public function getTemplate();
public function setParams(array $params=[]);
public function getParams();
public function render($template=null, array $params=[]);
public static function renderFile($file, array $params=[]);
The PHPTemplate class implements the TemplateInterface.
Create a new template:
$template = new Asgard\Templating\PHPTemplate('template.php', ['title'=>'Hello!']);
Set a template
$template->setTemplate('template2.php');
Get the template:
$template->getTemplate(); #template2.php
Set parameters:
$template->setParams(['title'=>'Hello!']);
Get parameters:
$template->getParams(); #['title'=>'Hello!']
Render the template:
$template->render();
Render a specific template with parameters:
$template->render('template.php', ['title'=>'Hello!']);
Statically render a template:
Asgard\Templating\PHPTemplate::renderFile('template.php', ['title'=>'Hello!']);
The Viewable trait provides the methods so that a class can easily be rendered with templates.
###Usage
class Abc {
use \Asgard\Templating\Viewable;
public function test($param1, $param2) {
return 'test';
}
}
$abc = new Abc;
$abc->setTemplateEngine($engine);
#the engine will be passed to any template used by the class
#$abc->getTemplateEngine(); to get the engine
$abc->run('test', ['param1', 'param2']);
###Rendering There are many ways a method can render the result.
public function test() {
return 'test';
}
#run('test') returns 'test'
public function test() {
echo 'test';
}
#run('test') returns 'test'
public function test() {
return new MyTemplate('template.php', [/*..*/]);
}
#run('test') will call ->render() on the template and return the result
public function test() {
$this->view = new MyTemplate('template.php', [/*..*/]);
}
#run('test') will call ->render() on $this->view and return the result
public function test() {
$this->view = 'template';
}
#if the object as a TemplateEngine, it will create a template instance and pass 'template.php' to it.
#if not, Viewable will use its own default rendering technique.
###Default rendering
When a template name is passed to $this->view, and the object does not have its own TemplateEngine, Viewable will try to solve the template file corresponding to the template name, include it and pass its own variables.
For example:
#Viewable class test method
public function test() {
$this->title = 'Hello!';
$this->view = 'template'; #template matches /var/www/project/templates/template.php
}
#template.php
echo '<h1>'.$title.'</h1>';
Will return:
<h1>Hello!</h1>
You can help the viewable object solves the template file with:
$abc->addTemplatePathSolver(function($obj, $template) {
$file = '/var/www/project/templates/'.$template.'.php';
if(file_exists($file))
return $file;
});
###Static rendering
Abc::fragment('tes', [$param1, ...]);
###Contributing
Please submit all issues and pull requests to the asgardphp/asgard repository.
License
The Asgard framework is open-sourced software licensed under the MIT license
asgard/templating 适用场景与选型建议
asgard/templating 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1.69k 次下载、GitHub Stars 达 0, 最近一次更新时间为 2014 年 07 月 16 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 asgard/templating 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 asgard/templating 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 1.69k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 11
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2014-07-16