[РЕШЕНО] input.html.twig В зависимости от типа input разные классы

Главные вкладки

Аватар пользователя alex290 alex290 2 ноября 2016 в 14:13

Можно ли в шаблоне Drupal 8 input.html.twig реализовать разные классы в зависимости от типа input

type="password"
type="submit"
и тд

сейчас там такой код

{%
        set classes = [
          'form-control'
        ]
%}
<input{{ attributes.addClass(classes) }} />{{ children }}

Пока смог это реализовать в Jquery

$('input[type="search"], select, input[type="email"], input[type="number"], input[type="password"], input[type="tel"], input[type="url"], input[type="text"], input[type="date"]').addClass('form-control');
    $('button, input[type="button"], input[type="reset"], input[type="submit"]').addClass('btn btn-primary');

Комментарии

Аватар пользователя alex290 alex290 2 ноября 2016 в 17:03

Наконец то решил

создал 2 файла
input.html.twig
<input{{ attributes.addClass("form-control") }} />{{ children }}

и input--submit.html.twig
<button{{ attributes.addClass("btn btn-primary")|without('value') }}>{{ attributes.value }}</button>{{ children }}

И вроде не плохо обертка пошла

Аватар пользователя alex290 alex290 21 декабря 2016 в 17:27

Что именно конкретно нужно.. Опиши

Я использовал
menu.html.twig

{#
/**
 * @file
 * Default theme implementation to display a menu.
 *
 * Available variables:
 * - menu_name: The machine name of the menu.
 * - items: A nested list of menu items. Each menu item contains:
 *   - attributes: HTML attributes for the menu item.
 *   - below: The menu item child items.
 *   - title: The menu link title.
 *   - url: The menu link url, instance of \Drupal\Core\Url
 *   - localized_options: Menu link localized options.
 *   - is_expanded: TRUE if the link has visible children within the current
 *     menu tree.
 *   - is_collapsed: TRUE if the link has children within the current menu tree
 *     that are not currently visible.
 *   - in_active_trail: TRUE if the link is in the active trail.
 *
 * @ingroup themeable
 */

#}
{% import _self as menus %}

{#
  We call a macro which calls itself to render the full tree.
  @see http://twig.sensiolabs.org/doc/tags/macro.html
#}
{{ menus.menu_links(items, attributes, 0, menu_name) }}

{% macro menu_links(items, attributes, menu_level, menu_name) %}
  {% import _self as menus %}
  {# 1. #}
  {%
    set menu_classes = [
      'menu',
      menu_name|clean_class,
    ]
  %}
  {# 1. #}
  {%
    set submenu_classes = [
      'sub-menu',
      menu_name|clean_class ~ '__submenu',
    ]
  %}

  {% import _self as menus %}
  {% if items %}
    {% if menu_level == 0 %}
      <ul{{ attributes.addClass(menu_classes) }}>
    {% else %}
      <ul{{ attributes.removeClass(menu_classes).addClass(submenu_classes) }}>
    {% endif %}
    {% for item in items %}
      {%
        set item_classes = [
          item.is_expanded ? 'item--expanded',
          item.is_collapsed ? 'item--collapsed',
          item.in_active_trail ? 'item--active-trail',
          loop.index is even ? 'even',
          loop.index is odd ? 'odd',
          loop.last ? 'last',
          loop.first ? 'first',
        ]
      %}
      <li{{ item.attributes.addClass(item_classes) }}>
        {{ link(item.title, item.url) }}
        {% if item.below %}
          {{ menus.menu_links(item.below, attributes, menu_level + 1) }}
        {% endif %}
      </li>
    {% endfor %}
    </ul>
  {% endif %}
{% endmacro %}

Для твоего случая есть модуль Menu Link Attributes

Аватар пользователя ruslan181 ruslan181 21 декабря 2016 в 17:53

alex290 wrote:

Что именно конкретно нужно.. Опиши
Я использовал

menu.html.twig
{#

/**

 * @file

 * Default theme implementation to display a menu.

 *

 * Available variables:

 * - menu_name: The machine name of the menu.

 * - items: A nested list of menu items. Each menu item contains:

 *   - attributes: HTML attributes for the menu item.

 *   - below: The menu item child items.

 *   - title: The menu link title.

 *   - url: The menu link url, instance of \Drupal\Core\Url

 *   - localized_options: Menu link localized options.

 *   - is_expanded: TRUE if the link has visible children within the current

 *     menu tree.

 *   - is_collapsed: TRUE if the link has children within the current menu tree

 *     that are not currently visible.

 *   - in_active_trail: TRUE if the link is in the active trail.

 *

 * @ingroup themeable

 */


#}

{% import _self as menus %}
{#

  We call a macro which calls itself to render the full tree.

  @see http://twig.sensiolabs.org/doc/tags/macro.html

#}

{{ menus.menu_links(items, attributes, 0, menu_name) }}
{% macro menu_links(items, attributes, menu_level, menu_name) %}

  {% import _self as menus %}

  {# 1. #}

  {%

    set menu_classes = [

      'menu',

      menu_name|clean_class,

    ]

  %}

  {# 1. #}

  {%

    set submenu_classes = [

      'sub-menu',

      menu_name|clean_class ~ '__submenu',

    ]

  %}
  {% import _self as menus %}

  {% if items %}

    {% if menu_level == 0 %}

      <ul{{ attributes.addClass(menu_classes) }}>

    {% else %}

      <ul{{ attributes.removeClass(menu_classes).addClass(submenu_classes) }}>

    {% endif %}

    {% for item in items %}

      {%

        set item_classes = [

          item.is_expanded ? 'item--expanded',

          item.is_collapsed ? 'item--collapsed',

          item.in_active_trail ? 'item--active-trail',

          loop.index is even ? 'even',

          loop.index is odd ? 'odd',

          loop.last ? 'last',

          loop.first ? 'first',

        ]

      %}

      <li{{ item.attributes.addClass(item_classes) }}>

        {{ link(item.title, item.url) }}

        {% if item.below %}

          {{ menus.menu_links(item.below, attributes, menu_level + 1) }}

        {% endif %}

      </li>

    {% endfor %}

    </ul>

  {% endif %}

{% endmacro %}


чтобы вместо пунктов были разные иконки- fontawesome например вместо Главной fa-info-home, О нас fa-info-circle и т.д.