CityListInterface.php in Country, State and City Fields 8
Namespace
Drupal\country_state_cityFile
src/CityListInterface.phpView source
<?php
namespace Drupal\country_state_city;
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 country_state_city
*/
interface CityListInterface extends ContentEntityInterface, EntityOwnerInterface, EntityChangedInterface {
}
Interfaces
Name | Description |
---|---|
CityListInterface | Provides an interface defining a Slider entity. |