public function ViewsSlideshowTypeBase::__construct in Views Slideshow 8.4
Constructs a \Drupal\Component\Plugin\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/
ViewsSlideshowTypeBase.php, line 18
Class
- ViewsSlideshowTypeBase
- Provides basic functionality for Views slideshow types.
Namespace
Drupal\views_slideshowCode
public function __construct(array $configuration, $plugin_id, $plugin_definition) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this
->setConfiguration($configuration);
}