Download the PHP package blue-tomato/template-engine-mustache without Composer
On this page you can find all versions of the php package blue-tomato/template-engine-mustache. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download blue-tomato/template-engine-mustache
More information about blue-tomato/template-engine-mustache
Files in blue-tomato/template-engine-mustache
Package template-engine-mustache
Short Description ProcessWire module adding Mustache to the TemplateEngineFactory
License MIT
Homepage https://github.com/blue-tomato/TemplateEngineMustache
Informations about the package template-engine-mustache
TemplateEngineMustache
A ProcessWire module adding Mustache to the TemplateEngineFactory.
Requirements
- ProcessWire
3.0
or newer - TemplateEngineFactory
2.0
or newer - PHP
7.0
or newer - Composer
The
1.x
version of this module is available on the 1.x branch. Use this version if you still use TemplateEngineFactory1.x
.
Installation
Execute the following command in the root directory of your ProcessWire installation:
This will install the TemplateEngineMustache and TemplateEngineFactory modules in one step. Afterwards, don't forget to enable Mustache as engine in the TemplateEngineFactory module's configuration.
ℹ️ This module includes test dependencies. If you are installing on production with
composer install
, make sure to pass the--no-dev
flag to omit autoloading any unnecessary test dependencies!.
Configuration
The module offers the following configuration:
Template files suffix
The suffix of the Twig template files, defaults tomustache
.Provide ProcessWire API variables in Mustache templates
API variables ($pages
,$input
,$config
...) are accessible in Twig, e.g.{{ config }}
for the config API variable.Debug
If enabled, Mustache outputs debug information.
Extending Mustache
It is possible to extend Mustache after it has been initialized by the module. Hook the method TemplateEngineMustache::initMustache
to register custom functions, extensions, global variables, filters etc.
Here is an example how you can use the provided hook to attach a custom function.
The above hook can be put in your
site/init.php
file. If you prefer to use modules, put it into the module'sinit()
method and make sure that the module is auto loaded.
All versions of template-engine-mustache with dependencies
hari/pw-module Version ~1.0
mustache/mustache Version ~2.12
wanze/template-engine-factory Version ^2.0