You are here

public static function SchedulerRulesActionDeriver::create in Scheduler 2.x

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

scheduler_rules_integration/src/Plugin/RulesAction/SchedulerRulesActionDeriver.php, line 56

Class

SchedulerRulesActionDeriver
Derives actions for each supported entity type.

Namespace

Drupal\scheduler_rules_integration\Plugin\RulesAction

Code

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