WeatherDisplayInterface.php in Weather 2.0.x
Same filename and directory in other branches
Namespace
Drupal\weather\EntityFile
src/Entity/WeatherDisplayInterface.phpView source
<?php
namespace Drupal\weather\Entity;
use Drupal\Core\Entity\ContentEntityInterface;
/**
* Provides an interface for defining Weather display entities.
*
* @ingroup weather
*/
interface WeatherDisplayInterface extends ContentEntityInterface {
const SYSTEM_WIDE_TYPE = 'system-wide';
const DEFAULT_TYPE = 'default';
const USER_TYPE = 'user';
}
Interfaces
Name | Description |
---|---|
WeatherDisplayInterface | Provides an interface for defining Weather display entities. |