thetempusproject/houdini
最新稳定版本:2.0.5
Composer 安装命令:
composer require thetempusproject/houdini
包简介
This library handles creating, managing, and displaying frontend components.
README 文档
README
Houdini is a php templating engine designed in conjunction with The Tempus Project. This package allows you to store output as variables and plug it in to templates and formatted html either for direct display or cache assets to be rendered together as a completed page.
This functionality applies to several commonly utilized page components such as navigation, forms, pagination, interface and more.
Installation
To install simply use the composer command:
php composer.phar require thetempusproject/houdini
Usage
Typical usage would be through including the package via composer.
require_once VENDOR_DIRECTORY . 'autoload.php';
use TheTempusProject\Houdini\Classes\Template;
new Template;
Template::setTemplate( 'default' );
If you would like to use hermes autoloading, simply inclode the constants file and the autoload file inside /bin/.
use TheTempusProject\Houdini\Classes\Template;
// Houdini Constants
if ( ! defined( 'HOUDINI_CONSTANTS_LOADED' ) ) {
if ( defined( 'HOUDINI_CONFIG_DIRECTORY' ) ) {
require_once HOUDINI_CONFIG_DIRECTORY . 'constants.php';
}
}
// Houdini Autoloader (Autoloader)
if ( ! defined( 'HOUDINI_AUTOLOADED' ) ) {
if ( defined( 'HOUDINI_ROOT_DIRECTORY' ) ) {
require_once HOUDINI_ROOT_DIRECTORY . 'bin' . DIRECTORY_SEPARATOR . 'autoload.php';
}
}
new Template;
Template::setTemplate( 'default' );
Components
Filters
Forms
Issues
Navigation
Pagination
Views
Constants / Settings
Issues / Bugs / Contact
If anyone actually uses this library and runs into any issues, feel free to contact me and I'll look into it.
Joey Kimsey - Lead Developer
统计信息
- 总下载量: 187
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-08-08