web-dev-qa-db-ja.com

カスタムでメニューのテーマを設定する方法twig

以下のコードを使用して、ウェブサイトのメインメニューを取得しました。

public function build() {
    $menu_name = 'main';
    $menu_tree = \Drupal::menuTree();
    $parameters = $menu_tree->getCurrentRouteMenuTreeParameters($menu_name);
    $parameters->setMinDepth(0);
    $tree = $menu_tree->load($menu_name, $parameters);
    $manipulators = array(
      array('callable' => 'menu.default_tree_manipulators:checkAccess'),
      array('callable' => 'menu.default_tree_manipulators:generateIndexAndSort'),
    );
    $tree = $menu_tree->transform($tree, $manipulators);
    $build['menu'] = $menu_tree->build($tree);


return array(
      '#theme' => 'allofus_menu_footer',
      '#build' => $build,
    );
  }

私はそれをブロックとして配置しようとしていますが、2カラムとして表示したいと思います。最初の列では、最初のメインメニューとそのサブメニュー、および2番目の列の残りのメインメニューとサブメニュー。

twigを作成しましたが、マークアップ以外は何も出力しません。foreachを試みましたが、機能しません。

allofus-menu-footer.html.twig

{% if build %}
    <nav id ="secondary-menu" class="navigation" role="navigation">
        {{ build }}
    </nav>
{% endif %}
2

私は Menu Block でこれをたくさんやっただけです。コアメニューモジュールよりも少し柔軟で、テンプレートの提案とフックが多いので、 メニューブロック を好みます。上記のように独自のブロックを作成しているように見えますが、その場合は Menu Block を使用して時間を節約できます。

私のメニューの1つで、これは出力を処理するtwigファイルです。前処理や追加の処理は行わず、menu.html.twigで使用されるマクロの概念を中心に構築しました。すべての親アイテムには子があり、それらの子アイテムが7を超えると、新しいリストが開始されます。たとえば、メニューリンクに14の子がある場合、コードには、それぞれ7つのリンクを持つ2つの順序付けられていないリストで構成されるドロップダウンがあります。スタイルはそれらを列に変換します。これは使用例とは少し異なりますが、正しい方向に進むはずです。

{#
/**
 * @file
 * Theme override 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.
 */
#}
{% 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) }}

{% macro menu_links(items, attributes, menu_level) %}
  {% import _self as menus %}
  {% if items %}
    <ul>
      {% for item in items %}
        {%
          set classes = [
            'global-top__utility-item',
            'js-utility-item',
            item.in_active_trail ? 'active-trail',
            item.below ? 'has-submenu'
          ]
        %}

        <li{{ item.attributes.addClass(classes) }}>
          {{ link(item.title, item.url) }}
          {% if item.below %}
            {{ menus.submenu_links(item.below, attributes, menu_level + 1) }}
          {% endif %}
        </li>
      {% endfor %}
    </ul>
  {% endif %}
{% endmacro %}

{% macro submenu_links(items, attributes, menu_level) %}
  {% import _self as menus %}
  <div class="global-top__submenu">
    {% for chunk in items|batch(7) %}
      <ul class="global-top__submenu-col">
        {% for item in chunk %}
          <li{{ item.attributes }}>
            {{ link(item.title, item.url) }}
          </li>
        {% endfor %}
      </ul>
    {% endfor %}
  </div>
{% endmacro %}
2
Kevin