dsxfa26482 2019-01-17 23:52
浏览 106
已采纳

Drupal 8 - MenuLinkContent通过loadByProperties获取所有孩子

I need help to get all MenuLinkContent children from a specific MenuLinkContent and can't find a solution. I tried several different ways, but no success at all.

Here goes my code:

//get all MenuLinkContent published with name 'myname'
$main_menu = \Drupal::entityTypeManager()->getStorage('menu_link_content')
      ->loadByProperties(['menu_name' => 'myname' , 'enabled' => 1]);

foreach ($main_menu as $menu) {
  //could not find a better solution, so i have to check if parent is empty.
  if ($menu->getParentId()=='') {
    //here i'm triyng to get all children, 
    $child_menu = \Drupal::entityTypeManager()->getStorage('menu_link_content')
          ->loadByProperties(['menu_name' => 'myname',  'parent' => $menu ]); 

As you can see the property 'parent' do not fit with '$menu'. I tried several different properties from '$menu' and no one seems to match my query.

If more information is needed, just ask and i will post here. Other ways to achieve this iteration are welcome too.

Thanks in advance.

  • 写回答

1条回答 默认 最新

  • dongwu5318 2019-01-18 12:56
    关注

    Got it, found this code from @Slim and works fine:

    Below code was taken from this answer https://drupal.stackexchange.com/a/224786/89808

    "I'm quite late, but maybe helps someone looking for answers, here's my solution for generating recursive array from menu items." @Slim

    private function generateSubMenuTree(&$output, &$input, $parent = FALSE) {
    $input = array_values($input);
    foreach($input as $key => $item) {
      //If menu element disabled skip this branch
      if ($item->link->isEnabled()) {
        $key = 'submenu-' . $key;
        $name = $item->link->getTitle();
        $url = $item->link->getUrlObject();
        $url_string = $url->toString();
    
        //If not root element, add as child
        if ($parent === FALSE) {
          $output[$key] = [
            'name' => $name,
            'tid' => $key,
            'url_str' => $url_string
          ];
        } else {
          $parent = 'submenu-' . $parent;
          $output['child'][$key] = [
            'name' => $name,
            'tid' => $key,
            'url_str' => $url_string
          ];
        }
    
        if ($item->hasChildren) {
          if ($item->depth == 1) {
            $this->generateSubMenuTree($output[$key], $item->subtree, $key);
          } else {
            $this->generateSubMenuTree($output['child'][$key], $item->subtree, $key);
          }
        }
      }
    }
    

    And call that function with

    //Get drupal menu
    $sub_nav = \Drupal::menuTree()->load('sub-navigation', new \Drupal\Core\Menu\MenuTreeParameters());
    //Generate array
    $this->generateSubMenuTree($menu_tree2, $sub_nav);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 机器学习能否像多层线性模型一样处理嵌套数据
  • ¥20 西门子S7-Graph,S7-300,梯形图
  • ¥50 用易语言http 访问不了网页
  • ¥50 safari浏览器fetch提交数据后数据丢失问题
  • ¥15 matlab不知道怎么改,求解答!!
  • ¥15 永磁直线电机的电流环pi调不出来
  • ¥15 用stata实现聚类的代码
  • ¥15 请问paddlehub能支持移动端开发吗?在Android studio上该如何部署?
  • ¥20 docker里部署springboot项目,访问不到扬声器
  • ¥15 netty整合springboot之后自动重连失效