Liquid is a PHP port of the Liquid template engine for Ruby, which was written by Tobias Lutke. Although there are many other templating engines for PHP, including Smarty (from which Liquid was partially inspired)
Why another templating library?
Liquid was written to meet three templating library requirements: good performance, easy to extend, and simply to use.
You can install this lib via composer:
composer require codemade-xyz/php-liquid-bundle
{% if products %}
<ul id="products">
{% for product in products %}
<li>
<h2>{{ product.name }}</h2>
Only {{ product.price | price }}
{{ product.description | prettyprint | paragraph }}
{{ 'it rocks!' | paragraph }}
</li>
{% endfor %}
</ul>
{% endif %}
Example add in kernel.php
public function registerBundles()
{
$bundles = array(
...
new \CodeMade\LiquidBundle\LiquidBundle()
);
return $bundles;
}
In config file add setting, if no values are specified, then the default settings will be used.
liquid:
cache: '%kernel.cache_dir%/liquid'
default_path: '%kernel.project_dir%/templates'
filter: App\Kernel\LiquidTemplateFilter
include_suffix: 'tpl'
include_prefix: ''
tags:
section: App\Kernel\LiquidTagSection
paths:
'App': '%kernel.project_dir%/templates/App'
Add setting in framework.yaml
framework:
...
templating:
engines: ['liquid']
<?php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\Routing\Annotation\Route;
class Index extends AbstractController
{
/**
* @Route("/")
*/
public function index()
{
return $this->render('@App/home', [
'document' => [
'title' => 'Home page'
]
]);
}
}
This bundle create for Symfony and use
harrydeluxe library Liquid!
How can I help you explore Laravel packages today?