You are here

SliderInterface.php in Image sliders 8

File

src/SliderInterface.php
View source
<?php

namespace Drupal\image_slider;

use Drupal\Core\Entity\ContentEntityInterface;
use Drupal\user\EntityOwnerInterface;
use Drupal\Core\Entity\EntityChangedInterface;

/**
 * Provides an interface defining a Slider entity.
 *
 * We have this interface so we can join the other interfaces it extends.
 *
 * @ingroup image_slider
 */
interface SliderInterface extends ContentEntityInterface, EntityOwnerInterface, EntityChangedInterface {

}

Interfaces

Namesort descending Description
SliderInterface Provides an interface defining a Slider entity.