Drupal 8 - 如何添加操纵器

时间:2017-12-19 01:03:22

标签: drupal drupal-8

我甚至不知道如何提出这个问题。在下面的代码中(我从一个例子中找到了上面的代码),以及默认的操纵器,我想添加另一个操纵器来删除兄弟姐妹之外的所有链接。

$manipulators = array(
  array('callable' => 'menu.default_tree_manipulators:checkAccess'),
  array('callable' => 'menu.default_tree_manipulators:generateIndexAndSort'),
  // This is what i want to do. Remove all links outside of siblings and active trail
  array('callable' => 'mytheme.menu_transformers:removeInactiveTrail'),
);

在哪里放置这个' removeInactiveTrail'上课的方法?

我是drupal的新手,对不起,如果这个问题太可悲了。

1 个答案:

答案 0 :(得分:1)

如果你是drupal新手,总是很难问一个正确的问题。但是,如果你已经到目前为止找到了为你的任务服务的代码片段,那么最好在core和contrib模块中进行研究,以找出其他人如何使用这些函数和方法。

如果您不确定实施,只需添加有关您要实现的内容的更多详细信息。

以下是您可以在自定义模块中使用的示例:

function mymodule_render_menu($menu_name) {
  $menu_tree = \Drupal::menuTree();
  // Build the typical default set of menu tree parameters.
  $parameters = $menu_tree->getCurrentRouteMenuTreeParameters($menu_name);
  // Load the tree based on this set of parameters.
  $tree = $menu_tree->load($menu_name, $parameters);

  // Transform the tree using the manipulators you want.
  $manipulators = [
    // Add your manipulators here
  ];

  $tree = $menu_tree->transform($tree, $manipulators);
  // Finally, build a renderable array from the transformed tree.
  $menu = $menu_tree->build($tree);

  return  array('#markup' => render($menu));
}

上面的函数返回可渲染数组。您可以从hook_preprocess_HOOK调用它,添加到变量数组中并输出模板。

同样,您的任务不明确,请将您的问题编辑为更具体。