You are here

public function Internal::__construct in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/ckeditor/src/Plugin/CKEditorPlugin/Internal.php \Drupal\ckeditor\Plugin\CKEditorPlugin\Internal::__construct()

Constructs a \Drupal\ckeditor\Plugin\CKEditorPlugin\Internal 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\Cache\CacheBackendInterface $cache_backend: The cache backend.

Overrides PluginBase::__construct

File

core/modules/ckeditor/src/Plugin/CKEditorPlugin/Internal.php, line 48
Contains \Drupal\ckeditor\Plugin\CKEditorPlugin\Internal.

Class

Internal
Defines the "internal" plugin (i.e. core plugins part of our CKEditor build).

Namespace

Drupal\ckeditor\Plugin\CKEditorPlugin

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, CacheBackendInterface $cache_backend) {
  $this->cache = $cache_backend;
  parent::__construct($configuration, $plugin_id, $plugin_definition);
}