gourmet / liquid
Liquid templates for CakePHP 3
Installs: 10
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 3
Forks: 1
Type:cakephp-plugin
Requires
- cakephp/cakephp: 3.0.*-dev
- liquid/liquid: dev-master#ca4b64f94948997cbd939d81745a4062f1dfd949
Requires (Dev)
- phpunit/phpunit: 4.1.*
This package is auto-updated.
Last update: 2024-10-28 01:43:09 UTC
README
Built to enable Liquid templates in CakePHP 3.
Install
Using Composer:
composer require gourmet/liquid:~1.0
You then need to load the plugin. In boostrap.php
, something like:
\Cake\Core\Plugin::load('Gourmet/Liquid');
You can then define any controller (or email) view class like so:
// in ProductsController.php beforeFilter $this->viewClass = '\Gourmet\Liquid\View\View'; // passed to any email configuration as the 'viewRender' key and use it: Email::config(['user' => ['viewRender' => '\Gourmet\Liquid\View\View']]); $email = new Email('user'); $email->template('Hello {{ name }}', "{{ 'content' | fetch }}\n\nThis is an automated email.") ->to('baker@cakephp.org') ->viewVars(['name' => 'Baker']) ->send();
More documentation/filters/tags to come.
In the meantime, read more about the library this plugin wraps over here and about the liquid markup here and here.
That's it!
Patches & Features
- Fork
- Mod, fix
- Test - this is important, so it's not unintentionally broken
- Commit - do not mess with license, todo, version, etc. (if you do change any, bump them into commits of their own that I can ignore when I pull)
- Pull request - bonus point for topic branches
Bugs & Feedback
http://github.com/gourmet/liquid/issues
License
Copyright (c)2015, Jad Bitar and licensed under The MIT License.