Same name and namespace in other branches
  1. 5.0.x src/ViewsSlideshowTypeBase.php \Drupal\views_slideshow\ViewsSlideshowTypeBase

Provides basic functionality for Views slideshow types.

Hierarchy

Expanded class hierarchy of ViewsSlideshowTypeBase

1 file declares its use of ViewsSlideshowTypeBase
Cycle.php dans modules/views_slideshow_cycle/src/Plugin/ViewsSlideshowType/Cycle.php

Fichier

src/ViewsSlideshowTypeBase.php, line 12

Namespace

Drupal\views_slideshow
View source
abstract class ViewsSlideshowTypeBase extends PluginBase implements ViewsSlideshowTypeInterface {
    use StringTranslationTrait;
    
    /**
     * {@inheritdoc}
     */
    public function __construct(array $configuration, $plugin_id, $plugin_definition) {
        parent::__construct($configuration, $plugin_id, $plugin_definition);
        $this->setConfiguration($configuration);
    }
    
    /**
     * {@inheritdoc}
     */
    public function getTitle() {
        return $this->pluginDefinition['title'];
    }
    
    /**
     * {@inheritdoc}
     */
    public function validateConfigurationForm(array &$form, FormStateInterface $form_state) {
    }
    
    /**
     * {@inheritdoc}
     */
    public function defaultConfiguration() {
        return [];
    }
    
    /**
     * {@inheritdoc}
     */
    public function getConfiguration() {
        return [
            'id' => $this->getPluginId(),
        ] + $this->configuration;
    }
    
    /**
     * {@inheritdoc}
     */
    public function setConfiguration(array $configuration) {
        $this->configuration = $configuration + $this->defaultConfiguration();
        return $this;
    }
    
    /**
     * {@inheritdoc}
     */
    public function calculateDependencies() {
        return [];
    }
    
    /**
     * {@inheritdoc}
     */
    public function submitConfigurationForm(array &$form, FormStateInterface $form_state) {
    }

}

Members