juanchosl/templaterender
最新稳定版本:1.0.5
Composer 安装命令:
composer require juanchosl/templaterender
包简介
A small, lightweight tool in order to render templates
关键字:
README 文档
README
Description
A small, lightweight utility to render templates
Install
composer require juanchosl/templaterender
How use it
Load composer autoload and use the JuanchoSL\TemplateRender class
$template_render = new TemplateRender(TEMPLATES_DIR, 'tpl.php'); $templates_render->setVar('title','Title of the page'); echo $templates_render->render('index', ['subtitle' => 'This is a subtitle']);
On index.tpl.php we can have:
<h1><?= $this->getVar('title'); ?></h1> <h2><?= $this->getVar('subtitle'); ?></h2>
We can include other templates from the original templates using fetch method, for use menu.tpl.php
<h1><?= $this->getVar('title'); ?></h1> <h2><?= $this->getVar('subtitle'); ?></h2> <?php $this->fetch('menu'); ?>
统计信息
- 总下载量: 44
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-09-27