public function ViewsSlideshowWidgetTypeBase::__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/
ViewsSlideshowWidgetTypeBase.php, line 18
Class
- ViewsSlideshowWidgetTypeBase
- Base class for a Views slideshow widget type.
Namespace
Drupal\views_slideshowCode
public function __construct(array $configuration, $plugin_id, $plugin_definition) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this
->setConfiguration($configuration);
}