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; }
Please login to continue.