StatusInterface.php 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <?php
  2. namespace Drupal\statusmessage;
  3. use Drupal\Core\Entity\ContentEntityInterface;
  4. use Drupal\Core\Entity\EntityChangedInterface;
  5. use Drupal\user\EntityOwnerInterface;
  6. /**
  7. * Provides an interface for defining Status entities.
  8. *
  9. * @ingroup statusmessage
  10. */
  11. interface StatusInterface extends ContentEntityInterface, EntityChangedInterface, EntityOwnerInterface {
  12. // Add get/set methods for your configuration properties here.
  13. /**
  14. * Gets the Status type.
  15. *
  16. * @return string
  17. * The Status type.
  18. */
  19. public function getType();
  20. /**
  21. * Gets the Status name.
  22. *
  23. * @return string
  24. * Name of the Status.
  25. */
  26. public function getName();
  27. /**
  28. * Sets the Status name.
  29. *
  30. * @param string $name
  31. * The Status name.
  32. *
  33. * @return \Drupal\statusmessage\StatusInterface
  34. * The called Status entity.
  35. */
  36. public function setName($name);
  37. /**
  38. * Gets the Status creation timestamp.
  39. *
  40. * @return int
  41. * Creation timestamp of the Status.
  42. */
  43. public function getCreatedTime();
  44. /**
  45. * Sets the Status creation timestamp.
  46. *
  47. * @param int $timestamp
  48. * The Status creation timestamp.
  49. *
  50. * @return \Drupal\statusmessage\StatusInterface
  51. * The called Status entity.
  52. */
  53. public function setCreatedTime($timestamp);
  54. /**
  55. * Returns the Status published status indicator.
  56. *
  57. * Unpublished Status are only visible to restricted users.
  58. *
  59. * @return bool
  60. * TRUE if the Status is published.
  61. */
  62. public function isPublished();
  63. /**
  64. * Sets the published status of a Status.
  65. *
  66. * @param bool $published
  67. * TRUE to set this Status to published, FALSE to set it to unpublished.
  68. *
  69. * @return \Drupal\statusmessage\StatusInterface
  70. * The called Status entity.
  71. */
  72. public function setPublished($published);
  73. public function setMessage($message);
  74. public function getMessage();
  75. // public function setSender($sender);
  76. //
  77. // public function getSender();
  78. public function setRecipient($recipient);
  79. public function getRecipient();
  80. public function setEntityTarget($entityTarget);
  81. public function getEntityTarget();
  82. }