You are here

public function Type::__construct in Support Ticketing System 8

Constructs a new Support Ticket Type object.

Parameters

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.

\Drupal\Core\Entity\EntityStorageInterface $storage: The entity storage class.

Overrides HandlerBase::__construct

File

modules/support_ticket/src/Plugin/views/argument/Type.php, line 41
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 function __construct(array $configuration, $plugin_id, $plugin_definition, EntityStorageInterface $support_ticket_type_storage) {
  parent::__construct($configuration, $plugin_id, $plugin_definition);
  $this->supportTicketTypeStorage = $support_ticket_type_storage;
}