StatusTypeInterface.php 424 B

123456789101112131415161718192021
  1. <?php
  2. namespace Drupal\statusmessage;
  3. use Drupal\Core\Config\Entity\ConfigEntityInterface;
  4. /**
  5. * Provides an interface for defining Status type entities.
  6. */
  7. interface StatusTypeInterface extends ConfigEntityInterface {
  8. // Add get/set methods for your configuration properties here.
  9. public function setMedia($bool);
  10. public function getMedia();
  11. public function setMime($mime);
  12. public function getMime();
  13. }