request = $request; $this->moduleHandler = $module_handler; $this->routeMatch = $route_match; } /** * {@inheritdoc} */ public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) { return new static( $configuration, $plugin_id, $plugin_definition, $container->get('request_stack')->getCurrentRequest(), $container->get('module_handler'), $container->get('current_route_match') ); } /** * {@inheritdoc} */ public function build() { // Do not show on a 403 or 404 page. if ($this->request->attributes->has('exception')) { return []; } $implementations = $this->moduleHandler->getImplementations('help'); $build = []; $args = [ $this->routeMatch->getRouteName(), $this->routeMatch, ]; foreach ($implementations as $module) { // Don't add empty strings to $build array. if ($help = $this->moduleHandler->invoke($module, 'help', $args)) { // Convert strings to #markup render arrays so that they will XSS admin // filtered. $build[] = is_array($help) ? $help : ['#markup' => $help]; } } return $build; } /** * {@inheritdoc} */ public function getCacheContexts() { return Cache::mergeContexts(parent::getCacheContexts(), ['route']); } }