HeartbeatInterface.php 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. <?php
  2. namespace Drupal\heartbeat\Entity;
  3. use Drupal\Core\Entity\RevisionLogInterface;
  4. use Drupal\Core\Entity\RevisionableInterface;
  5. use Drupal\Component\Utility\Xss;
  6. use Drupal\Core\Url;
  7. use Drupal\Core\Entity\EntityChangedInterface;
  8. use Drupal\user\EntityOwnerInterface;
  9. /**
  10. * Provides an interface for defining Heartbeat entities.
  11. *
  12. * @ingroup heartbeat
  13. */
  14. interface HeartbeatInterface extends RevisionableInterface, RevisionLogInterface, EntityChangedInterface, EntityOwnerInterface {
  15. // Add get/set methods for your configuration properties here.
  16. /**
  17. * Gets the Heartbeat type.
  18. *
  19. * @return string
  20. * The Heartbeat type.
  21. */
  22. public function getType();
  23. /**
  24. * Gets the Heartbeat name.
  25. *
  26. * @return string
  27. * Name of the Heartbeat.
  28. */
  29. public function getName();
  30. /**
  31. * Sets the Heartbeat name.
  32. *
  33. * @param string $name
  34. * The Heartbeat name.
  35. *
  36. * @return \Drupal\heartbeat\Entity\HeartbeatInterface
  37. * The called Heartbeat entity.
  38. */
  39. public function setName($name);
  40. /**
  41. * Gets the Heartbeat message.
  42. *
  43. * @return string
  44. * Message of the Heartbeat.
  45. */
  46. public function getMessage();
  47. /**
  48. * Sets the Heartbeat Message.
  49. *
  50. * @param $name
  51. * @return
  52. * @internal param string $message The Heartbeat Message
  53. */
  54. public function setMessage($message);
  55. /**
  56. * Gets the Heartbeat user.
  57. *
  58. * @return int
  59. * The uid of the Heartbeat's user.
  60. */
  61. public function getUid();
  62. /**
  63. * Sets the Heartbeat user.
  64. *
  65. * @param int uid
  66. * The Heartbeat user.
  67. *
  68. */
  69. public function setUid($uid);
  70. /**
  71. * Gets the Heartbeat's associated node nid.
  72. *
  73. * @return int
  74. * The nid of the Heartbeat's associated node.
  75. */
  76. public function getNid();
  77. /**
  78. * Sets the Heartbeat user.
  79. *
  80. * @param int uid
  81. * The Heartbeat user.
  82. *
  83. */
  84. public function setNid($nid);
  85. /**
  86. * Gets the Heartbeat creation timestamp.
  87. *
  88. * @return int
  89. * Creation timestamp of the Heartbeat.
  90. */
  91. public function getCreatedTime();
  92. /**
  93. * Sets the Heartbeat creation timestamp.
  94. *
  95. * @param int $timestamp
  96. * The Heartbeat creation timestamp.
  97. *
  98. * @return \Drupal\heartbeat\Entity\HeartbeatInterface
  99. * The called Heartbeat entity.
  100. */
  101. public function setCreatedTime($timestamp);
  102. /**
  103. * Returns the Heartbeat published status indicator.
  104. *
  105. * Unpublished Heartbeat are only visible to restricted users.
  106. *
  107. * @return bool
  108. * TRUE if the Heartbeat is published.
  109. */
  110. public function isPublished();
  111. /**
  112. * Sets the published status of a Heartbeat.
  113. *
  114. * @param bool $published
  115. * TRUE to set this Heartbeat to published, FALSE to set it to unpublished.
  116. *
  117. * @return \Drupal\heartbeat\Entity\HeartbeatInterface
  118. * The called Heartbeat entity.
  119. */
  120. public function setPublished($published);
  121. /**
  122. * Gets the Heartbeat revision creation timestamp.
  123. *
  124. * @return int
  125. * The UNIX timestamp of when this revision was created.
  126. */
  127. public function getRevisionCreationTime();
  128. /**
  129. * Sets the Heartbeat revision creation timestamp.
  130. *
  131. * @param int $timestamp
  132. * The UNIX timestamp of when this revision was created.
  133. *
  134. * @return \Drupal\heartbeat\Entity\HeartbeatInterface
  135. * The called Heartbeat entity.
  136. */
  137. public function setRevisionCreationTime($timestamp);
  138. /**
  139. * Gets the Heartbeat revision author.
  140. *
  141. * @return \Drupal\user\UserInterface
  142. * The user entity for the revision author.
  143. */
  144. public function getRevisionUser();
  145. /**
  146. * Sets the Heartbeat revision author.
  147. *
  148. * @param int $uid
  149. * The user ID of the revision author.
  150. *
  151. * @return \Drupal\heartbeat\Entity\HeartbeatInterface
  152. * The called Heartbeat entity.
  153. */
  154. public function setRevisionUserId($uid);
  155. }