You are here

StatusTypeInterface.php in Heartbeat 8

File

modules/statusmessage/src/StatusTypeInterface.php
View source
<?php

namespace Drupal\statusmessage;

use Drupal\Core\Config\Entity\ConfigEntityInterface;

/**
 * Provides an interface for defining Status type entities.
 */
interface StatusTypeInterface extends ConfigEntityInterface {

  // Add get/set methods for your configuration properties here.
  public function setMedia($bool);
  public function getMedia();
  public function setMime($mime);
  public function getMime();

}

Interfaces

Namesort descending Description
StatusTypeInterface Provides an interface for defining Status type entities.