jaypha / jayponents-latte
Latte adaptor for Jayponents
v0.1.2
2019-11-22 03:19 UTC
Requires
- php: ^5.4 || ^7
- jaypha/jayponents: *
- latte/latte: ^2.4
Requires (Dev)
- phpunit/phpunit: ^6
This package is auto-updated.
Last update: 2025-04-22 14:48:28 UTC
README
Written by Jason den Dulk
A template engine adaptor to enable Jayponents to be used with Latte Templates.
Requirements
PHP v5.4.0 or greater. Jayponents Nette Latte
Installation
composer require jaypha/jayponents-latte
Usage
Create a Latte Engine as normal. Create an engine adaptor and set the template adaptor in Component.
Examples
use Jaypha\Jayponents\Component;
use Jaypha\Jayponents\Latte\LatteEngineAdaptor;
$latte = new Latte\Engine();
$adaptor = new LatteEngineAdaptor($latte);
// Can make the template adaptor the default for all components.
Component::setDefaultEngine($adaptor);
// Can assign template adaptor to individual components.
$component = new Component();
$component->setEngine($adaptor);
jayp Macro
Within a Latte template, you include a component using 'jayp'. It will call the 'display' method of the object, or do nothing if it is null.
Example
{jayp $content}
License
Copyright (C) 2017-9 Jaypha.
Distributed under the Boost Software License, Version 1.0.
See http://www.boost.org/LICENSE_1_0.txt