templates/Global/sortable.html.twig line 1

Open in your IDE?
  1. {% set href = "" %}
  2. {% set direction = "" %}
  3. {% set criteria = "" %}
  4. {% for attr, value in options %}
  5.     {% if(attr == "href") %}
  6.         {% set href = value %}
  7.     {% endif %}
  8.     {% if(attr == "direction") %}
  9.         {% set direction = value %}
  10.     {% endif %}
  11.     {% if(attr == "criteria") %}
  12.         {% set criteria = value %}
  13.     {% endif %}
  14. {% endfor %}
  15. <option data-direction="{{ direction }}" data-criteria="{{ criteria }}" value="{{ href }}">{{ title }}</option>