SearchBlockForm::__construct

public SearchBlockForm::__construct(SearchPageRepositoryInterface $search_page_repository, ConfigFactoryInterface $config_factory, RendererInterface $renderer)

Constructs a new SearchBlockForm.

Parameters

\Drupal\search\SearchPageRepositoryInterface $search_page_repository: The search page repository.

\Drupal\Core\Config\ConfigFactoryInterface $config_factory: The config factory.

\Drupal\Core\Render\RendererInterface $renderer: The renderer.

File

core/modules/search/src/Form/SearchBlockForm.php, line 48

Class

SearchBlockForm
Builds the search form for the search block.

Namespace

Drupal\search\Form

Code

public function __construct(SearchPageRepositoryInterface $search_page_repository, ConfigFactoryInterface $config_factory, RendererInterface $renderer) {
  $this->searchPageRepository = $search_page_repository;
  $this->configFactory = $config_factory;
  $this->renderer = $renderer;
}
doc_Drupal
2016-10-29 09:40:12
Comments
Leave a Comment

Please login to continue.