public static function SearchPluginDeriverBase::create in Search API Autocomplete 8
Creates a new class instance.
Parameters
\Symfony\Component\DependencyInjection\ContainerInterface $container: The container to pull out services used in the fetcher.
string $base_plugin_id: The base plugin ID for the plugin ID.
Return value
static Returns an instance of this fetcher.
Overrides ContainerDeriverInterface::create
File
- src/
Search/ SearchPluginDeriverBase.php, line 40
Class
- SearchPluginDeriverBase
- Provides a base class for search plugin derivers.
Namespace
Drupal\search_api_autocomplete\SearchCode
public static function create(ContainerInterface $container, $base_plugin_id) {
$deriver = new static();
$deriver
->setEntityTypeManager($container
->get('entity_type.manager'));
$deriver
->setStringTranslation($container
->get('string_translation'));
static::$instances[$base_plugin_id][] = $deriver;
return $deriver;
}