You are here

public function ImceHelpController::__construct in IMCE 8

Same name and namespace in other branches
  1. 8.2 src/Controller/ImceHelpController.php \Drupal\imce\Controller\ImceHelpController::__construct()

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

src/Controller/ImceHelpController.php, line 37

Class

ImceHelpController
Controller routines for help routes.

Namespace

Drupal\imce\Controller

Code

public function __construct(RouteMatchInterface $route_match, HelpSectionManager $help_manager) {
  $this->routeMatch = $route_match;
  $this->helpManager = $help_manager;
}