View source
<?php
namespace Drupal\responsive_menu\Plugin\Block;
use Drupal\Core\Block\BlockBase;
use Drupal\Core\Cache\Cache;
use Drupal\Core\Menu\MenuActiveTrailInterface;
use Drupal\Core\Menu\MenuLinkTreeInterface;
use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Drupal\Core\Config\ConfigFactoryInterface;
use Drupal\Core\Extension\ModuleHandlerInterface;
class HorizontalMenu extends BlockBase implements ContainerFactoryPluginInterface {
protected $menuTree;
protected $menuActiveTrail;
protected $configFactory;
protected $config;
protected $moduleHandler;
public function __construct(array $configuration, $plugin_id, $plugin_definition, MenuLinkTreeInterface $menu_tree, MenuActiveTrailInterface $menu_active_trail, ConfigFactoryInterface $config_factory, ModuleHandlerInterface $module_handler) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this->menuTree = $menu_tree;
$this->menuActiveTrail = $menu_active_trail;
$this->configFactory = $config_factory;
$this->config = $config_factory
->get('responsive_menu.settings');
$this->moduleHandler = $module_handler;
}
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static($configuration, $plugin_id, $plugin_definition, $container
->get('menu.link_tree'), $container
->get('menu.active_trail'), $container
->get('config.factory'), $container
->get('module_handler'));
}
public function build() {
$depth = $this->config
->get('horizontal_depth');
$menu_name = $this->config
->get('horizontal_menu');
$this->moduleHandler
->alter('responsive_menu_horizontal_menu_name', $menu_name);
$menu_tree = $this->menuTree;
$parameters = $menu_tree
->getCurrentRouteMenuTreeParameters($menu_name);
$parameters
->setMaxDepth($depth);
$parameters->expandedParents = [];
$tree = $menu_tree
->load($menu_name, $parameters);
$manipulators = [
[
'callable' => 'menu.default_tree_manipulators:checkNodeAccess',
],
[
'callable' => 'menu.default_tree_manipulators:checkAccess',
],
[
'callable' => 'menu.default_tree_manipulators:generateIndexAndSort',
],
];
$tree = $menu_tree
->transform($tree, $manipulators);
$menu = $menu_tree
->build($tree);
$this->moduleHandler
->alter('responsive_menu_horizontal_tree', $menu);
$menu['#theme'] = 'responsive_menu_horizontal';
$output = [
'#theme' => 'responsive_menu_block_wrapper',
'#element_type' => $this->config
->get('horizontal_wrapping_element'),
'#content' => $menu,
];
$superfish_setting = $this->config
->get('horizontal_superfish');
if ($superfish_setting) {
$output['#attached']['library'][] = 'responsive_menu/responsive_menu.superfish';
}
if ($superfish_setting && $this->config
->get('horizontal_superfish_hoverintent')) {
$output['#attached']['library'][] = 'responsive_menu/responsive_menu.superfish_hoverintent';
}
$media_query = $this->config
->get('horizontal_media_query');
$media_query = preg_replace('/^(min|max)(.+?)$/', '($1$2)', $media_query);
$output['#attached']['drupalSettings']['responsive_menu']['mediaQuery'] = $media_query;
$output['#contextual_links']['menu'] = [
'route_parameters' => [
'menu' => $menu_name,
],
];
return $output;
}
public function getCacheTags() {
$cache_tags = parent::getCacheTags();
$cache_tags[] = 'config:block.block.horizontalmenu';
return $cache_tags;
}
public function getCacheContexts() {
$menu_name = $this->config
->get('horizontal_menu');
$this->moduleHandler
->alter('responsive_menu_horizontal_menu_name', $menu_name);
return Cache::mergeContexts(parent::getCacheContexts(), [
'route.menu_active_trails:' . $menu_name,
]);
}
}