HeartbeatStreamInterface.php 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. <?php
  2. namespace Drupal\heartbeat8\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 stream entities.
  11. *
  12. * @ingroup heartbeat8
  13. */
  14. interface HeartbeatStreamInterface extends RevisionableInterface, RevisionLogInterface, EntityChangedInterface, EntityOwnerInterface {
  15. // Add get/set methods for your configuration properties here.
  16. /**
  17. * Gets the Heartbeat stream name.
  18. *
  19. * @return string
  20. * Name of the Heartbeat stream.
  21. */
  22. public function getName();
  23. /**
  24. * Sets the Heartbeat stream name.
  25. *
  26. * @param string $name
  27. * The Heartbeat stream name.
  28. *
  29. * @return \Drupal\heartbeat8\Entity\HeartbeatStreamInterface
  30. * The called Heartbeat stream entity.
  31. */
  32. public function setName($name);
  33. /**
  34. * Gets the Heartbeat stream creation timestamp.
  35. *
  36. * @return int
  37. * Creation timestamp of the Heartbeat stream.
  38. */
  39. public function getCreatedTime();
  40. /**
  41. * Sets the Heartbeat stream creation timestamp.
  42. *
  43. * @param int $timestamp
  44. * The Heartbeat stream creation timestamp.
  45. *
  46. * @return \Drupal\heartbeat8\Entity\HeartbeatStreamInterface
  47. * The called Heartbeat stream entity.
  48. */
  49. public function setCreatedTime($timestamp);
  50. /**
  51. * Returns the Heartbeat stream published status indicator.
  52. *
  53. * Unpublished Heartbeat stream are only visible to restricted users.
  54. *
  55. * @return bool
  56. * TRUE if the Heartbeat stream is published.
  57. */
  58. public function isPublished();
  59. /**
  60. * Sets the published status of a Heartbeat stream.
  61. *
  62. * @param bool $published
  63. * TRUE to set this Heartbeat stream to published, FALSE to set it to unpublished.
  64. *
  65. * @return \Drupal\heartbeat8\Entity\HeartbeatStreamInterface
  66. * The called Heartbeat stream entity.
  67. */
  68. public function setPublished($published);
  69. /**
  70. * Gets the Heartbeat stream revision creation timestamp.
  71. *
  72. * @return int
  73. * The UNIX timestamp of when this revision was created.
  74. */
  75. public function getRevisionCreationTime();
  76. /**
  77. * Sets the Heartbeat stream revision creation timestamp.
  78. *
  79. * @param int $timestamp
  80. * The UNIX timestamp of when this revision was created.
  81. *
  82. * @return \Drupal\heartbeat8\Entity\HeartbeatStreamInterface
  83. * The called Heartbeat stream entity.
  84. */
  85. public function setRevisionCreationTime($timestamp);
  86. /**
  87. * Gets the Heartbeat stream revision author.
  88. *
  89. * @return \Drupal\user\UserInterface
  90. * The user entity for the revision author.
  91. */
  92. public function getRevisionUser();
  93. /**
  94. * Sets the Heartbeat stream revision author.
  95. *
  96. * @param int $uid
  97. * The user ID of the revision author.
  98. *
  99. * @return \Drupal\heartbeat8\Entity\HeartbeatStreamInterface
  100. * The called Heartbeat stream entity.
  101. */
  102. public function setRevisionUserId($uid);
  103. }