Gedmo Tree没有管理它

时间:2016-04-06 07:01:20

标签: php symfony doctrine-orm tree

我试图让类别/菜单动态化,以便从管理面板更新链接和所有内容。我尝试从gedmo实现Tree,但即使我花了几个小时查看文档,也无法让孩子们接受。另外我想使用knp菜单包。 有人可以帮助我实现它并向我解释什么是lft,rgt,root,树的级别,为什么我应该使用何时使用它们?

这是我的方法:

public function createAdminMenu(array $options)
{
    $menu_item = $this->em->getRepository('AppBundle:MenuItem');
    $menu = $this->factoryInterface->createItem('root');

    $rootNodes = $menu_item->getRootNodes();

    //var_dump($rootNodes);
    $node = $menu_item->findOneByName('User');
    var_dump($menu_item->getChildren());
    foreach($rootNodes as $node) {
        if($node->getDisplay())
        {
            $menu->addChild($node->getName(), array('uri' => $node->getUri()));

            $child_node = $node->getChildren($node);
            //var_dump($child_node);
            foreach($child_node as $child)
            {
                //$menu[$node->getName()] = $menu->addChild($child->getName());
            }
        }
    }


    return $menu;
}

1 个答案:

答案 0 :(得分:1)

解决这个问题:

    $repo = $this->em->getRepository('AppBundle:MenuItem');

    $nodes = $repo->findByRootNodes($menuId);

    foreach ($nodes as $node) {
        if ($node->getDisplay()) {
            $menu->addChild($node->getName(), ['uri' => $node->getRoute()])
                ->setAttribute('dropdown', $node->getDropDown());
            if ($node->getDisplayChildren()) {
                $children = $repo->children($node);
                if($children)
                {
                    foreach ($children as $child)
                    {
                        if ($child->getDisplay())
                        {
                            $menu[$node->getName()]->addChild($child->getName(), ['uri' => $child->getRoute()])
                                ->setAttribute('divider_prepend', $child->getDividerPrepend())
                                ->setAttribute('divider_append', $child->getDividerAppend());
                        }
                    }
                }
            }
        }
    }
    return $menu;