4

したがって、以下の例に示すようにメニューを作成しました。

<?php namespace AppBundle\Menu;

use Doctrine\ORM\EntityManager;
use Knp\Menu\FactoryInterface;
use Knp\Menu\MenuFactory;

class AdminMenuBuilder
{

    public function sidebarMenu(FactoryInterface $factory, array $options)
    {
    $menu = $factory->createItem('root', array(
        'navbar' => true,
        'childrenAttributes' => [
            'class' => 'nav main-menu',
        ],
    ));


    $menu->addChild('Dashboard')
         ->setAttributes([
            'icon' =>'fa fa-dashboard',
            'class' => 'dropdown',
             'dropdown' => true
         ]);

    $menu['Dashboard']->addChild('Details', ['route' => 'app.admin.dashboard']);
    $menu['Dashboard']->addChild('Details 2', ['route' => 'app.admin.dashboard']);

    $menu->addChild('Users', ['route' => 'app.admin.dashboard.users'])
        ->setAttribute('icon', 'fa fa-users');


        return $menu;
    }
}

KNPMenuBundle v2 を使用してブレッドカムを作成するにはどうすればよいですか? 私はsymfony2 2.7.5を使用しています

4

2 に答える 2

3

KnpMenuBundle 2.1.0 (数週間前にリリース) には、knp_menu_get_breadcrumbs_array()使用できる機能があります。例えば:

{% set item = knp_menu_get('some_menu_item') %}
{% set breadcrumbs = knp_menu_get_breadcrumbs_array(item) %}
{% for breadcrumb in breadcrumbs %}
  <a href="{{ breadcrumb.url }}">{{ breadcrumb.label }}</a>
{% endfor %}
于 2015-10-10T08:05:47.463 に答える
0

メニューがネストされている場合、上記の解決策は機能しません。アクティブなメニュー項目の配列を再帰的に返す拡張機能は次のとおりです。

<?php

namespace AnalyticsBundle\Twig;

use Knp\Menu\ItemInterface;
use Knp\Menu\Matcher\MatcherInterface;
use Knp\Menu\Twig\Helper;

/**
 * Class MenuExtension
 * @package AnalyticsBundle\Twig
 */
class MenuExtension extends \Twig_Extension
{
    private $helper;

    private $matcher;

    public function __construct(Helper $helper, MatcherInterface $matcher)
    {
        $this->helper = $helper;
        $this->matcher = $matcher;
    }

    public function getFunctions()
    {
        return [
            new \Twig_SimpleFunction('analytics_get_current_menu_items', function($menu, array $path = array(), array $options = array()) {
                $menu = $this->helper->get($menu, $path, $options);
                return $this->getCurrentItems($menu);
            }),
        ];
    }

    private function getCurrentItems(ItemInterface $item)
    {
        $items = [];
        $getActiveItems = function (ItemInterface $item) use (&$getActiveItems, &$items) {
            if ($this->matcher->isCurrent($item)) {
                $items[] = $item;
                foreach ($item->getChildren() as $child) {
                    $getActiveItems($child);
                }
            }
        };
        $getActiveItems($item);
        return $items;
    }

    public function getName()
    {
        return 'analytics_menu';
    }
}

使用例:

                <ul class="page-breadcrumb">
                    {% for item in analytics_get_current_menu_items('main') %}
                        <li>
                            <span>{{ item.label }}</span>
                        {% if not loop.last %}
                            |
                        {% endif %}
                        </li>
                    {% endfor %}
                </ul>
于 2016-06-21T15:08:57.667 に答える