avblink / avb_twig
There is no license information available for the latest version (v1.0.2) of this package.
Drupal 8 Twig Extension. Provides custom twig functions and filters.
v1.0.2
2020-05-28 15:34 UTC
Requires
- composer/installers: ~1.0
This package is auto-updated.
Last update: 2026-03-01 00:23:18 UTC
README
Contains Drupal Twig functions and filters.
- Get current entity from path.
{% set node = avb_twig_current_entity('node') %}
- Assign new Attribute() class to a variable
{% set attributes = avb_twig_create_attribute(['class', ['class1', 'class2']]) %}
{{ avb_twig_create_attribute().addClass(['class1', 'class2'])}}
- Add 'style' attribute
{% set attributes = avb_twig_create_attribute().addStyle({'background-color': 'red'}) %}