You are here

WeatherDisplayInterface.php in Weather 8

Same filename and directory in other branches
  1. 2.0.x src/Entity/WeatherDisplayInterface.php

File

src/Entity/WeatherDisplayInterface.php
View 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

Namesort descending Description
WeatherDisplayInterface Provides an interface for defining Weather display entities.