vakata/views
最新稳定版本:3.0.5
Composer 安装命令:
composer require vakata/views
包简介
A simple PHP templating engine
README 文档
README
A simple PHP templating engine.
Install
Via Composer
$ composer require vakata/views
Usage
use vakata\views\Views; $views = new vakata\views\Views(); // register template dirs $views->dir('/path/to/templatedir'); $views->dir('/path/to/otherdir', 'other'); // a variable available in all templates $views->share("siteTitle", "test"); // variables available in all templates $views->share(["a" => 1, "b" => 2]); // render a template from the first dir: $views->render('profile', ['user' => 'Test']); // render a template from a named dir: $views->render('other::user', ['user' => 'Test']); // the above is the same as $v = $views->get('other::user'); $v->render(['user'=>'Test']);
A sample template may look like this:
<?php $this->layout('master.layout', ['masterParam' => 'master-value']); ?> Content <?php $this->sectionStart("sidebar"); ?> Here is some unfiltered content: <?= $b ?> Here is some filtered content: <?= $this->e($user) ?> <?php $this->sectionStop(); ?> Here is some filtered and transformed content: <?= $this->e($user, 'trim|strtouuper') ?> Include a child template: <?= $this->insert('nameddir::include', ['optional' => 'params']); ?>
As for the master template (which can in turn have its own master template):
I am master! <?= $this->section("sidebar") ?> <?= $masterParam ?> <?= $a ?> The unnamed part of the above template: <?= $this->section() ?>
Read more in the API docs
Testing
$ composer test
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email github@vakata.com instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.
统计信息
- 总下载量: 658
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-01-12