bentools / twig-extensions
Some twig extensions
v1.0
2016-04-05 13:51 UTC
Requires
- php: >=5.4
Requires (Dev)
- symfony/symfony: ~2.3|^3.0
- twig/twig: 1.*
This package is auto-updated.
Last update: 2024-11-07 06:29:37 UTC
README
Some helpful twig extensions.
Important
This repository is no longer maintained and may be removed in a near future. You may consider forking it.
Installation
composer install bentools/twig-extensions
TypeOfExtension
Provides basic PHP functions allowing to work with a variable type.
{# Filters #} {{ value | typeOf }} {{ value | getType }} {# Functions #} {% if get_type(value) == 'array' %} ... {% endif %} {% if is_bool(value) %} ... {% endif %} {% if is_string(value) %} ... {% endif %} {% if is_numeric(value) %} ... {% endif %} {% if is_int(value) %} ... {% endif %} {% if is_float(value) %} ... {% endif %} {% if is_null(value) %} ... {% endif %} {% if is_array(value) %} ... {% endif %} {% if is_object(value) %} ... {% endif %} {% if is_scalar(value) %} ... {% endif %} {% if is_callable(value) %} ... {% endif %}