Namespace
Drupal\views_slideshow
Fichier
-
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;
interface ViewsSlideshowWidgetInterface extends PluginInspectionInterface, ConfigurableInterface, PluginFormInterface, DependentPluginInterface {
public function checkCompatiblity($view);
}
Interfaces