pine3ree / pine3ree-plates-extension
A common base abstract Plates extension with methods auto-registration and more
Requires
- php: ^7.4 || ^8.0
- league/plates: ^3.5
Requires (Dev)
- mikey179/vfsstream: ^1.6.11
- phpspec/prophecy-phpunit: ^1.1 || ^2.0
- phpstan/phpstan: ^1.10
- phpstan/phpstan-strict-rules: ^1.5
- phpunit/phpunit: ^7.5 || ^8.0 || ^9.0
- squizlabs/php_codesniffer: ^3.5.7
- vimeo/psalm: ^5.13
- webimpress/coding-standard: ^1.3
This package is auto-updated.
Last update: 2025-03-15 23:57:59 UTC
README
This package introduces a common base abstract Extension for Plates native php templating engine providing:
- autoregistration of public methods (feature that can be disabled)
- the ability to manually register public methods with shorter syntax
- the ability to add function aliases on extension registration
- the ability to add function aliases before extension registration happens
Autoregistration of public methods
By default, with the exclusion of magic methods, all public methods are registered as template helpers with the Plates engine, using method names as template helper name, basically doing the following for you:
<?php namespace my\App\Plates; use League\Plates\Engine; use League\Plates\Extension\ExtensionInterface class MyCoolExtension implements ExtensionInterface { public function register(Engine $engine) { $engine->registerFunction('foo', [$this, 'foo']); $engine->registerFunction('baz', [$this, 'baz']); } public function foo(string $bar): string { return 'foo' . $bar; } public function baz(string $bar): string { return $bar . 'baz'; } //... }
You can rewrite previous code as:
<?php namespace my\App\Plates; use League\Plates\Extension\ExtensionInterface use pine3ree\Plates\Extension class MyCoolExtension extends Extension implements ExtensionInterface { public function foo(string $bar): string { return 'foo' . $bar; } public function baz(string $bar): string { return $bar . 'baz'; } //... }
<?php // file: path/to/templates/my-template.phtml use League\Plates\Template\Template; use My\App\Plates\MyCoolExtension; /** @var Template|MyCoolExtension $this */
Disable autoregistration and manually register your public methods
If you do not want to include all your extension's public methods as template helper
you can disable autoregistration via constructor or property assignment, or overriding
the extension register
method, but this last option will remove other functionalities
provided by this package.
<?php namespace my\App\Plates; use League\Plates\Engine; use League\Plates\Extension\ExtensionInterface class MyCoolExtension implements ExtensionInterface { // 1. Disable via class property override protected bool $autoregisterPublicMethods = false; // 2.a Disable via constructor public function __construct() { $this->autoregisterPublicMethods = false; } // 2.b Customize via constructor (for factories reading configuration) public function __construct(bool $autoregisterPublicMethods) { $this->autoregisterPublicMethods = $autoregisterPublicMethods; } // 3. Disable via 'register' method override (not advisable, please read following sections) public function register(Engine $engine) { // Manually register your public method keeping the methods'name as template helper name $this->registerOwnFunction($engine, 'foo'); // Manually register your public method 'baz' using different helper name 'doBaz' $this->registerOwnFunction($engine, 'baz', 'doBaz'); } public function foo(string $bar): string { return 'foo' . $bar; } public function baz(string $bar): string { return $bar . 'baz'; } //... }
Registering other functions and aliases
This package provides a couple of overridable methods where you register functions other than your extension's public methods or aliases to registered function:
namespace my\App\Plates; use League\Plates\Engine; use League\Plates\Extension\ExtensionInterface /** * Include your external methods to achieve full ide-autocompletion in template files * * @method string toUppercase(string $string) Convert string to uppercase * @method string uc(string $string) Alias of @see self:.toUppercase() */ class MyCoolExtension implements ExtensionInterface { protected function registerFunctions(Engine $engine): void { $engine->registerFunction($engine, 'toUppercase', function (string $string): string { return mb_strtoupper($string); }); } protected function registerAliases(Engine $engine): void { $this->registerAlias($engine, 'uc', 'toUppercase'); } }
Registering aliases without subclassing
You have the chance to register extra aliases before a third-party extension extending this package abstract class is registered with the plates engine, for instance inside the extension factory.
use League\Plates\Engine; use Third\Party\Plates\OtherExtension; use Third\Party\Plates\OtherExtensionFactory; // $plates is the app League\Plates\Engine instance // $container is the app Psr\Container\ContainerInterface // OtherExtension extends pine3ree\Plates\Extension providing `doSomething` // and `doSomethingElse` template helpers $otherExtension = OtherExtensionFactory::create($container); // Add aliases here before extension registration (or inside your application // OtherExtension factory) $otherExtension->addAlias('ds', 'doSomething'); $otherExtension->addAlias('dse', 'doSomethingElse'); $plates->loadExtension($otherExtension);
The aliases added using addAlias($alias, $funcName)
are actually registered
when the extensions is loaded by the plates engine, after automatic registration
of public method, after the registration of extra methods and after the registration
of internally defined aliases. See Extension::register(Engine $engine)
source code.
Installation
This library requires php >= 7.4
Run the following shell command in your project directory to install it:
$ composer require pine3ree/pine3ree-plates-extension
the "WHY"...
the "before"...
<?php namespace App\Plates\Extension; // Other imports here use League\Plates\Engine; use League\Plates\Extension\ExtensionInterface; // Other imports here class FormExtension implements ExtensionInterface { public function register(Engine $engine) { // Fieldsets/collections $engine->registerFunction($engine, [$this, 'form']); $engine->registerFunction($engine, [$this, 'formCollection']); $engine->registerFunction($engine, [$this, 'formFieldset']); $engine->registerFunction($engine, [$this, 'formLegend']); // Fields $engine->registerFunction($engine, [$this, 'formField']); $engine->registerFunction($engine, [$this, 'formRow']); $engine->registerFunction($engine, [$this, 'formLabel']); $engine->registerFunction($engine, [$this, 'formElement']); // Error messages $engine->registerFunction($engine, [$this, 'formErrors']); $engine->registerFunction($engine, [$this, 'formElementErrors']); // Inputs $engine->registerFunction($engine, [$this, 'formInput']); $engine->registerFunction($engine, [$this, 'formCheckbox']); $engine->registerFunction($engine, [$this, 'formColor']); $engine->registerFunction($engine, [$this, 'formCsrf']); $engine->registerFunction($engine, [$this, 'formDate']); $engine->registerFunction($engine, [$this, 'formDateTime']); $engine->registerFunction($engine, [$this, 'formDateTimeLocal']); $engine->registerFunction($engine, [$this, 'formEmail']); $engine->registerFunction($engine, [$this, 'formFile']); $engine->registerFunction($engine, [$this, 'formHidden']); $engine->registerFunction($engine, [$this, 'formImage']); $engine->registerFunction($engine, [$this, 'formMonth']); $engine->registerFunction($engine, [$this, 'formNumber']); $engine->registerFunction($engine, [$this, 'formPassword']); $engine->registerFunction($engine, [$this, 'formRange']); $engine->registerFunction($engine, [$this, 'formReset']); $engine->registerFunction($engine, [$this, 'formSearch']); $engine->registerFunction($engine, [$this, 'formSubmit']); $engine->registerFunction($engine, [$this, 'formText']); $engine->registerFunction($engine, [$this, 'formTel']); $engine->registerFunction($engine, [$this, 'formTime']); $engine->registerFunction($engine, [$this, 'formUrl']); $engine->registerFunction($engine, [$this, 'formWeek']); // Selects $engine->registerFunction($engine, [$this, 'formSelect']); $engine->registerFunction($engine, [$this, 'formDateTimeSelect']); $engine->registerFunction($engine, [$this, 'formDateSelect']); $engine->registerFunction($engine, [$this, 'formMonthSelect']); // Groups $engine->registerFunction($engine, [$this, 'formRadioGroup']); $engine->registerFunction($engine, [$this, 'formCheckboxGroup']); $engine->registerFunction($engine, [$this, 'formRadio']); $engine->registerFunction($engine, [$this, 'formMultiCheckbox']); // Others $engine->registerFunction($engine, [$this, 'formTextarea']); $engine->registerFunction($engine, [$this, 'formButton']); // Extension configuration helpers $engine->registerFunction($engine, [$this, 'setFormExtensionDefaultClasses']); $engine->registerFunction($engine, [$this, 'setFormFieldClass']); $engine->registerFunction($engine, [$this, 'setFormFieldsetClass']); $engine->registerFunction($engine, [$this, 'setFormControlClass']); $engine->registerFunction($engine, [$this, 'setFormButtonClass']); $engine->registerFunction($engine, [$this, 'setFormFieldWrap']); $engine->registerFunction($engine, [$this, 'setFormLabelImplicit']); $engine->registerFunction($engine, [$this, 'setFormLabelClass']); $engine->registerFunction($engine, [$this, 'setFormLabelTextClass']); $engine->registerFunction($engine, [$this, 'setFormCheckOptionClass']); $engine->registerFunction($engine, [$this, 'setFormCheckInputClass']); $engine->registerFunction($engine, [$this, 'setFormCheckLabelClass']); $engine->registerFunction($engine, [$this, 'setFormRangeClass']); $engine->registerFunction($engine, [$this, 'setFormSelectClass']); $engine->registerFunction($engine, [$this, 'setFormGroupClass']); $engine->registerFunction($engine, [$this, 'setFormDelimiterClass']); $engine->registerFunction($engine, [$this, 'setFormErrorsTag']); $engine->registerFunction($engine, [$this, 'setFormErrorsClass']); $engine->registerFunction($engine, [$this, 'setFormFieldErrorClass']); $engine->registerFunction($engine, [$this, 'setFormElementErrorClass']); $engine->registerFunction($engine, [$this, 'setFormCollectionTemplate']); } //... // Methods implementation here //.. }
...and the "after"
<?php namespace App\Plates\Extension; // Other imports here use League\Plates\Extension\ExtensionInterface; use pine3ree\Plates\Extension; // Other imports here class FormExtension extends Extension implements ExtensionInterface { //... // Methods implementation here //.. }