public function SearchController::__construct in Drupal 9
Same name and namespace in other branches
- 8 core/modules/search/src/Controller/SearchController.php \Drupal\search\Controller\SearchController::__construct()
Constructs a new search controller.
Parameters
\Drupal\search\SearchPageRepositoryInterface $search_page_repository: The search page repository.
\Drupal\Core\Render\RendererInterface $renderer: The renderer.
File
- core/
modules/ search/ src/ Controller/ SearchController.php, line 48
Class
- SearchController
- Route controller for search.
Namespace
Drupal\search\ControllerCode
public function __construct(SearchPageRepositoryInterface $search_page_repository, RendererInterface $renderer) {
$this->searchPageRepository = $search_page_repository;
$this->logger = $this
->getLogger('search');
$this->renderer = $renderer;
}