You are here

public static function Type::create in Support Ticketing System 8

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 PluginBase::create

File

modules/support_ticket/src/Plugin/views/argument/Type.php, line 50
Contains \Drupal\support_ticket\Plugin\views\argument\Type.

Class

Type
Argument handler to accept a support ticket type.

Namespace

Drupal\support_ticket\Plugin\views\argument

Code

public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
  $entity_manager = $container
    ->get('entity.manager');
  return new static($configuration, $plugin_id, $plugin_definition, $entity_manager
    ->getStorage('support_ticket_type'));
}