You are here

public static function ComponentBlockBlockDeriver::create in Component blocks 1.0.x

Same name and namespace in other branches
  1. 1.x src/Plugin/Deriver/ComponentBlockBlockDeriver.php \Drupal\component_blocks\Plugin\Deriver\ComponentBlockBlockDeriver::create()
  2. 1.1.x src/Plugin/Deriver/ComponentBlockBlockDeriver.php \Drupal\component_blocks\Plugin\Deriver\ComponentBlockBlockDeriver::create()

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/Plugin/Deriver/ComponentBlockBlockDeriver.php, line 79

Class

ComponentBlockBlockDeriver
Defines a class for deriving blocks from component block plugins.

Namespace

Drupal\component_blocks\Plugin\Deriver

Code

public static function create(ContainerInterface $container, $base_plugin_id) {
  return new static($container
    ->get('plugin.manager.ui_patterns'), $container
    ->get('entity_type.manager'));
}