wyrihaximus / twig-view
Twig powered View for CakePHP
Installs: 4 182 088
Dependents: 4
Suggesters: 0
Security: 0
Stars: 81
Watchers: 28
Forks: 29
Open Issues: 1
Type:cakephp-plugin
Requires
- php: ^7.2
- cakephp/cakephp: ^4.0
- jasny/twig-extensions: ^1.3
- twig/markdown-extra: ^3.0
- twig/twig: ^3.0
Requires (Dev)
- cakephp/cakephp-codesniffer: ^4.0
- cakephp/debug_kit: ^4.0
- jakub-onderka/php-console-highlighter: ^0.4.0
- jakub-onderka/php-parallel-lint: ^1.0
- phpunit/phpunit: ^8.0
- wyrihaximus/phpunit-class-reflection-helpers: dev-master
This package is auto-updated.
Last update: 2024-10-09 00:40:55 UTC
README
This plugin allows you to use the Twig Templating Language for your views.
In addition to enabling the use of most of Twig's features, the plugin is tightly integrated with the CakePHP view renderer giving you full access to helpers, objects and elements.
DEPRECATED: Use cakephp/twig-view instead.
Installation
To install via Composer, use the command below.
composer require wyrihaximus/twig-view
Configuration
Load Plugin
Run the following CLI command:
bin/cake plugin load WyriHaximus/TwigView
Use View class
Instead of extending from the View
let AppView
extend TwigView
:
namespace App\View; use WyriHaximus\TwigView\View\TwigView; class AppView extends TwigView { }
Quick Start
TwigView will look for its templates with the extension .twig
.
Layout
Replace templates/layout/default.php
by this templates/layout/default.twig
<!DOCTYPE html> <html> <head> {{ Html.charset()|raw }} <title> {{ __('myTwigExample') }} {{ _view.fetch('title')|raw }} </title> {{ Html.meta('icon')|raw }} {{ Html.css('default.app.css')|raw }} {{ Html.script('app')|raw }} {{ _view.fetch('meta')|raw }} {{ _view.fetch('css')|raw }} {{ _view.fetch('script')|raw }} </head> <body> <header> {{ _view.fetch('header')|raw }} </header> {{ Flash.render()|raw }} <section> <h1>{{ _view.fetch('title')|raw }}</h1> {{ _view.fetch('content')|raw }} </section> <footer> {{ _view.fetch('footer')|raw }} </footer> </body> </html>
Template View
Create a template, for example templates/Users/index.twig
like this
{{ _view.assign('title', __("I'm title")) }} {{ _view.start('header') }} <p>I'm header</p> {{ _view.end() }} {{ _view.start('footer') }} <p>I'm footer</p> {{ _view.end() }} <p>I'm content</p>
Usage
Use $this
With twig $this
is replaced by _view
For example, without using Twig writing
<?= $this->fetch('content') ?>
But with Twig
{{ _view.fetch('content')|raw }}
Helpers
Any helper can be access by their CamelCase name, for example:
{{ Html.link('Edit user', {'controller':'Users', 'action': 'edit' ~ '/' ~ user.id}, {'class':'myclass'})|raw }}
Elements
Basic
{% element 'Element' %}
With variables or options
{% element 'Plugin.Element' { dataName: 'dataValue' } { optionName: 'optionValue' } %}
Cells
Store in context then echo it
{% cell cellObject = 'Plugin.Cell' { dataName: 'dataValue' } { optionName: 'optionValue' } %} {{ cellObject|raw }}
Fetch and directly echo it
{% cell 'Plugin.Cell' { dataName: 'dataValue' } { optionName: 'optionValue' } %}
Extends
If i want extend to Common/demo.twig
<div id="sidebar"> {% block sidebar %}{% endblock %} </div> <div id="content"> {% block body %}{% endblock %} </div>
We can write in a view
{% extends 'Common/demo' %} {% block sidebar %} <ul> <li>Item 1</li> <li>Item 2</li> <li>Item 3</li> </ul> {% endblock %} {% block body %} {{ _view.assign('title', __("I'm title")) }} {{ _view.start('header') }} <p>I'm header</p> {{ _view.end() }} {{ _view.start('footer') }} <p>I'm footer</p> {{ _view.end() }} <p>I'm content</p> {% endblock %}
Note : the block body
is required, it's equivalent to <?= $this->fetch('content') ?>
Filters
debug
maps todebug
pr
maps topr
low
maps tostrtolower
up
maps tostrtoupper
env
maps toenv
count
maps tocount
pluralize
maps toCake\Utility\Inflector::pluralize
singularize
maps toCake\Utility\Inflector::singularize
camelize
maps toCake\Utility\Inflector::camelize
underscore
maps toCake\Utility\Inflector::underscore
humanize
maps toCake\Utility\Inflector::humanize
tableize
maps toCake\Utility\Inflector::tableize
classify
maps toCake\Utility\Inflector::classify
variable
maps toCake\Utility\Inflector::variable
slug
maps toCake\Utility\Inflector::slug
toReadableSize
maps toCake\I18n\Number::toReadableSize
toPercentage
maps toCake\I18n\Number::toPercentage
number_format
maps toCake\I18n\Number::format
formatDelta
maps toCake\I18n\Number::formatDelta
currency
maps toCake\I18n\Number::currency
substr
maps tosubstr
tokenize
maps toCake\Utility\Text::tokenize
insert
maps toCake\Utility\Text::insert
cleanInsert
maps toCake\Utility\Text::cleanInsert
wrap
maps toCake\Utility\Text::wrap
wrapBlock
maps toCake\Utility\Text::wrapBlock
wordWrap
maps toCake\Utility\Text::wordWrap
highlight
maps toCake\Utility\Text::highlight
tail
maps toCake\Utility\Text::tail
truncate
maps toCake\Utility\Text::truncate
excerpt
maps toCake\Utility\Text::excerpt
toList
maps toCake\Utility\Text::toList
stripLinks
maps toCake\Utility\Text::stripLinks
isMultibyte
maps toCake\Utility\Text::isMultibyte
utf8
maps toCake\Utility\Text::utf8
ascii
maps toCake\Utility\Text::ascii
parseFileSize
maps toCake\Utility\Text::parseFileSize
serialize
maps toserialize
unserialize
maps tounserialize
md5
maps tomd5
base64_encode
maps tobase64_encode
base64_decode
maps tobase64_decode
nl2br
maps tonl2br
string
cast tostring
Functions
in_array
maps toin_array
explode
maps toexplode
array
cast toarray
array_push
maps topush
array_prev
maps toprev
array_next
maps tonext
array_current
maps tocurrent
__
maps to__
__d
maps to__d
__n
maps to__n
__x
maps to__x
__dn
maps to__dn
defaultCurrency
maps toCake\I18n\Number::defaultCurrency
number_formatter
maps toCake\I18n\Number::formatter
uuid
maps toCake\Utility\Text::uuid
time
passed the first and optional second argument intonew \Cake\I18n\Time()
timezones
maps toCake\I18n\Time::listTimezones
elementExists
maps toCake\View\View::elementExists
,getVars
maps toCake\View\View::getVars
get
maps toCake\View\View::get
Twig
Visite Twig Documentaion for more tips
Extra included extensions
Events
This plugin emits several events.
Loaders
The default loader can be replace by listening to the WyriHaximus\TwigView\Event\LoaderEvent::EVENT
, for example with twital:
<?php use Cake\Event\EventListenerInterface; use Goetas\Twital\TwitalLoader; use WyriHaximus\TwigView\Event\ConstructEvent; use WyriHaximus\TwigView\Event\LoaderEvent; class LoaderListener implements EventListenerInterface { public function implementedEvents(): array { return [ LoaderEvent::EVENT => 'loader', ConstructEvent::EVENT => 'construct', ]; } public function loader(LoaderEvent $event): void { $event->result = new TwitalLoader($event->getLoader()); } /** * We've also listening in on this event so we can add the needed extensions to check for to the view */ public function construct(ConstructEvent $event): void { $event->getTwigView()->unshiftExtension('.twital.html'); $event->getTwigView()->unshiftExtension('.twital.xml'); $event->getTwigView()->unshiftExtension('.twital.xhtml'); } }
Extensions
Extensions can be added to the twig environment by listening to the WyriHaximus\TwigView\Event\ConstructEvent::EVENT
, for example:
<?php use Cake\Event\EventListenerInterface; use WyriHaximus\TwigView\Event\ConstructEvent; class LoaderListener implements EventListenerInterface { public function implementedEvents(): array { return [ ConstructEvent::EVENT => 'construct', ]; } public function construct(ConstructEvent $event): void { $event->getTwig()->addExtension(new YourTwigExtension); } }
Bake
You can use Bake to generate your basic CRUD views using the theme
option.
Let's say you have a TasksController
for which you want to generate twig templates.
You can use the following command to generate your index, add, edit and view file formatted
using Twig :
bin/cake bake twig_template Tasks all -t WyriHaximus/TwigView
Screenshots
Profiler
Templates found
License
Copyright 2015 Cees-Jan Kiewiet
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.