Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 509 Bytes

README.md

File metadata and controls

19 lines (15 loc) · 509 Bytes

Drupal Twig Extension by AVB Link

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'}) %}