You are here

public static function SearchBlock::create in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/search/src/Plugin/Block/SearchBlock.php \Drupal\search\Plugin\Block\SearchBlock::create()
  2. 9 core/modules/search/src/Plugin/Block/SearchBlock.php \Drupal\search\Plugin\Block\SearchBlock::create()

File

core/modules/search/src/Plugin/Block/SearchBlock.php, line 63

Class

SearchBlock
Provides a 'Search form' block.

Namespace

Drupal\search\Plugin\Block

Code

public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
  return new static($configuration, $plugin_id, $plugin_definition, $container
    ->get('form_builder'), $container
    ->get('search.search_page_repository'));
}