Same filename and directory in other branches
- 8.x-4.x src/ViewsSlideshowSkinBase.php
Namespace
Drupal\views_slideshow
Fichier
-
src/ViewsSlideshowSkinBase.php
View source
<?php
namespace Drupal\views_slideshow;
use Drupal\Component\Plugin\PluginBase;
abstract class ViewsSlideshowSkinBase extends PluginBase implements ViewsSlideshowSkinInterface {
public function getLabel() {
return $this->pluginDefinition['label'];
}
public function getClass() {
return $this->pluginDefinition['id'];
}
public function getLibraries() {
return $this->pluginDefinition['libraries'];
}
}
Classes