HelpController::__construct

public HelpController::__construct(RouteMatchInterface $route_match, HelpSectionManager $help_manager)

Creates a new HelpController.

Parameters

\Drupal\Core\Routing\RouteMatchInterface $route_match: The current route match.

\Drupal\help\HelpSectionManager $help_manager: The help section manager.

File

core/modules/help/src/Controller/HelpController.php, line 39

Class

HelpController
Controller routines for help routes.

Namespace

Drupal\help\Controller

Code

public function __construct(RouteMatchInterface $route_match, HelpSectionManager $help_manager) {
  $this->routeMatch = $route_match;
  $this->helpManager = $help_manager;
}
doc_Drupal
2016-10-29 09:17:36
Comments
Leave a Comment

Please login to continue.