You are here

public static function Update230::create in Lightning Workflow 8.2

Same name and namespace in other branches
  1. 8.3 src/Update/Update230.php \Drupal\lightning_workflow\Update\Update230::create()

Instantiates a new instance of this class.

This is a factory method that returns a new instance of this class. The factory should pass any needed dependencies into the constructor of this class, but not the container itself. Every call to this method must return a new instance of this class; that is, it may not implement a singleton.

Parameters

\Symfony\Component\DependencyInjection\ContainerInterface $container: The service container this instance should use.

Overrides ContainerInjectionInterface::create

File

src/Update/Update230.php, line 66

Class

Update230
Plugin annotation @Update("2.3.0");

Namespace

Drupal\lightning_workflow\Update

Code

public static function create(ContainerInterface $container) {
  $content_role_manager = NULL;
  if ($container
    ->get('module_handler')
    ->moduleExists('lightning_roles')) {
    $content_role_manager = $container
      ->get('lightning.content_roles');
  }
  return new static($container
    ->get('module_installer'), $container
    ->get('entity_type.manager')
    ->getStorage('workflow'), $container
    ->get('string_translation'), $content_role_manager);
}