You are here

public static function BrightcoveVideoSearch::create in Brightcove Video Connect 8.2

Same name and namespace in other branches
  1. 3.x src/Plugin/Search/BrightcoveVideoSearch.php \Drupal\brightcove\Plugin\Search\BrightcoveVideoSearch::create()

Creates an instance of the plugin.

Parameters

\Symfony\Component\DependencyInjection\ContainerInterface $container: The container to pull out services used in the plugin.

array $configuration: A configuration array containing information about the plugin instance.

string $plugin_id: The plugin ID for the plugin instance.

mixed $plugin_definition: The plugin implementation definition.

Return value

static Returns an instance of this plugin.

Overrides SearchPluginBase::create

File

src/Plugin/Search/BrightcoveVideoSearch.php, line 95

Class

BrightcoveVideoSearch
Executes a keyword search for videos against the {brightcove_video} table.

Namespace

Drupal\brightcove\Plugin\Search

Code

public static function create(ContainerInterface $container, array $configuration, $pluginId, $definition) {
  return new static($configuration, $pluginId, $definition, $container
    ->get('current_user'), $container
    ->get('database'), $container
    ->get('entity_type.manager'));
}