123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- <?php
- namespace Drupal\heartbeat\Entity;
- use Drupal\Core\Entity\RevisionLogInterface;
- use Drupal\Core\Entity\RevisionableInterface;
- use Drupal\Component\Utility\Xss;
- use Drupal\Core\Url;
- use Drupal\Core\Entity\EntityChangedInterface;
- use Drupal\user\EntityOwnerInterface;
- /**
- * Provides an interface for defining Heartbeat entities.
- *
- * @ingroup heartbeat
- */
- interface HeartbeatInterface extends RevisionableInterface, RevisionLogInterface, EntityChangedInterface, EntityOwnerInterface {
- // Add get/set methods for your configuration properties here.
- /**
- * Gets the Heartbeat type.
- *
- * @return string
- * The Heartbeat type.
- */
- public function getType();
- /**
- * Gets the Heartbeat name.
- *
- * @return string
- * Name of the Heartbeat.
- */
- public function getName();
- /**
- * Sets the Heartbeat name.
- *
- * @param string $name
- * The Heartbeat name.
- *
- * @return \Drupal\heartbeat\Entity\HeartbeatInterface
- * The called Heartbeat entity.
- */
- public function setName($name);
- /**
- * Gets the Heartbeat message.
- *
- * @return string
- * Message of the Heartbeat.
- */
- public function getMessage();
- /**
- * Sets the Heartbeat Message.
- *
- * @param $name
- * @return
- * @internal param string $message The Heartbeat Message
- */
- public function setMessage($message);
- /**
- * Gets the Heartbeat user.
- *
- * @return int
- * The uid of the Heartbeat's user.
- */
- public function getUid();
- /**
- * Sets the Heartbeat user.
- *
- * @param int uid
- * The Heartbeat user.
- *
- */
- public function setUid($uid);
- /**
- * Gets the Heartbeat's associated node nid.
- *
- * @return int
- * The nid of the Heartbeat's associated node.
- */
- public function getNid();
- /**
- * Sets the Heartbeat user.
- *
- * @param int uid
- * The Heartbeat user.
- *
- */
- public function setNid($nid);
- /**
- * Gets the Heartbeat creation timestamp.
- *
- * @return int
- * Creation timestamp of the Heartbeat.
- */
- public function getCreatedTime();
- /**
- * Sets the Heartbeat creation timestamp.
- *
- * @param int $timestamp
- * The Heartbeat creation timestamp.
- *
- * @return \Drupal\heartbeat\Entity\HeartbeatInterface
- * The called Heartbeat entity.
- */
- public function setCreatedTime($timestamp);
- /**
- * Returns the Heartbeat published status indicator.
- *
- * Unpublished Heartbeat are only visible to restricted users.
- *
- * @return bool
- * TRUE if the Heartbeat is published.
- */
- public function isPublished();
- /**
- * Sets the published status of a Heartbeat.
- *
- * @param bool $published
- * TRUE to set this Heartbeat to published, FALSE to set it to unpublished.
- *
- * @return \Drupal\heartbeat\Entity\HeartbeatInterface
- * The called Heartbeat entity.
- */
- public function setPublished($published);
- /**
- * Gets the Heartbeat revision creation timestamp.
- *
- * @return int
- * The UNIX timestamp of when this revision was created.
- */
- public function getRevisionCreationTime();
- /**
- * Sets the Heartbeat revision creation timestamp.
- *
- * @param int $timestamp
- * The UNIX timestamp of when this revision was created.
- *
- * @return \Drupal\heartbeat\Entity\HeartbeatInterface
- * The called Heartbeat entity.
- */
- public function setRevisionCreationTime($timestamp);
- /**
- * Gets the Heartbeat revision author.
- *
- * @return \Drupal\user\UserInterface
- * The user entity for the revision author.
- */
- public function getRevisionUser();
- /**
- * Sets the Heartbeat revision author.
- *
- * @param int $uid
- * The user ID of the revision author.
- *
- * @return \Drupal\heartbeat\Entity\HeartbeatInterface
- * The called Heartbeat entity.
- */
- public function setRevisionUserId($uid);
- }
|