You are here

public function ViewsJsonQuery::__construct in Views Json Source 8

Constructs a PluginBase 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.

Overrides PluginBase::__construct

File

src/Plugin/views/query/ViewsJsonQuery.php, line 72

Class

ViewsJsonQuery
Base query handler for views_json_source.

Namespace

Drupal\views_json_source\Plugin\views\query

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, ConfigFactoryInterface $config, CacheBackendInterface $cache, TimeInterface $time, ContainerAwareEventDispatcher $event_dispatcher) {
  parent::__construct($configuration, $plugin_id, $plugin_definition);
  $this->config = $config;
  $this->cache = $cache;
  $this->time = $time;
  $this->eventDispatcher = $event_dispatcher;
}