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

Namespace

Drupal\views_slideshow

File

src/ViewsSlideshowWidgetInterface.php

View source
<?php

namespace Drupal\views_slideshow;

use Drupal\Component\Plugin\ConfigurableInterface;
use Drupal\Component\Plugin\DependentPluginInterface;
use Drupal\Component\Plugin\PluginInspectionInterface;
use Drupal\Core\Plugin\PluginFormInterface;

/**
 * Provides an interface for a Views slideshow widget.
 */
interface ViewsSlideshowWidgetInterface extends PluginInspectionInterface, ConfigurableInterface, PluginFormInterface, DependentPluginInterface {
    
    /**
     * Check if the widget is compatible with the current view configuration.
     *
     * @return bool
     *   TRUE if the widget is compatible with the view.
     */
    public function checkCompatiblity($view);

}

Interfaces

Title Deprecated Summary
ViewsSlideshowWidgetInterface Provides an interface for a Views slideshow widget.