inteve/latte

Extensions for Latte templates

Maintainers

Details

github.com/inteve/latte

Source

Issues

Fund package maintenance!
Other

v1.0.0 2023-12-08 07:20 UTC

This package is auto-updated.

Last update: 2024-04-14 01:41:34 UTC


README

Build Status Downloads this Month Latest Stable Version License

Extensions for Latte templates

Donate

Installation

Download a latest package or use Composer:

composer require inteve/latte

Inteve\Latte requires PHP 7.4.0 or later and Latte 2.

Usage

Installation of extensions

\Inteve\Latte\ExtensionInstaller::install($latte, [
	new FooExtension,
	new BarExtension,
]);

or via Nette DI extension:

extensions:
	inteve.latte: Inteve\Latte\DIExtension

services:
	- FooExtension
	- BarExtension

IconExtension

Creates new Latte tag {icon foo}. Saves icon code directly to compiled template. Requires implementation PHIG's HtmlIcons interface.

\Inteve\Latte\ExtensionInstaller::install($latte, [
	new \Inteve\Latte\IconExtension($phigIcons),
]);
{icon myIcon}

TypographyExtension

Creates new Latte filter |typography.

\Inteve\Latte\ExtensionInstaller::install($latte, [
	new \Inteve\Latte\TypographyExtension,
]);
{='My a text'|typography} {* prints 'My a text' *}

Custom extension

Just extends Inteve\Latte\Extension:

class MyExtension extends \Inteve\Latte\Extension
{
	/**
	 * @return array<callable(\Latte\Compiler):void>
	 */
	public function getTags(): array
	{
		return [
			function (\Latte\Compiler $compiler) {
				$me = new Latte\Macros\MacroSet($compiler);
				$me->addMacro('myTag', ['MyLatteMacros', 'macroMyTag']);
			},
		];
	}


	/**
	 * @return array<string, callable>
	 */
	public function getFilters(): array
	{
		return [
			'myFilter' => function ($value) {
				return $value,
			},
		];
	}


	/**
	 * @return array<string, mixed>
	 */
	public function getProviders(): array
	{
		return [
			'myProvider' => 'foo bar',
		];
	}
}

License: New BSD License
Author: Jan Pecha, https://www.janpecha.cz/