You are here

public static function AutoEntityLabelConfigTask::create in Automatic Entity Label 8.2

Same name and namespace in other branches
  1. 8.3 src/Plugin/Derivative/AutoEntityLabelConfigTask.php \Drupal\auto_entitylabel\Plugin\Derivative\AutoEntityLabelConfigTask::create()
  2. 8 src/Plugin/Derivative/AutoEntityLabelConfigTask.php \Drupal\auto_entitylabel\Plugin\Derivative\AutoEntityLabelConfigTask::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/Derivative/AutoEntityLabelConfigTask.php, line 37

Class

AutoEntityLabelConfigTask
Class for Config Task.

Namespace

Drupal\auto_entitylabel\Plugin\Derivative

Code

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