Same filename and directory in other branches
  1. 5.0.x src/ViewsSlideshowSkinBase.php 1 commentaire

Namespace

Drupal\views_slideshow

Fichier

src/ViewsSlideshowSkinBase.php

View source
<?php

namespace Drupal\views_slideshow;

use Drupal\Component\Plugin\PluginBase;

/**
 * Provides basic functionality for Views slideshow skins.
 */
abstract class ViewsSlideshowSkinBase extends PluginBase implements ViewsSlideshowSkinInterface {
    
    /**
     * {@inheritdoc}
     */
    public function getLabel() {
        return $this->pluginDefinition['label'];
    }
    
    /**
     * {@inheritdoc}
     */
    public function getClass() {
        return $this->pluginDefinition['id'];
    }
    
    /**
     * {@inheritdoc}
     */
    public function getLibraries() {
        return $this->pluginDefinition['libraries'];
    }

}

Classes

Titre Deprecated Résumé
ViewsSlideshowSkinBase Provides basic functionality for Views slideshow skins.