public function Status::isPublished in Heartbeat 8
Returns the Status published status indicator.
Unpublished Status are only visible to restricted users.
Return value
bool TRUE if the Status is published.
Overrides StatusInterface::isPublished
File
- modules/
statusmessage/ src/ Entity/ Status.php, line 144
Class
Namespace
Drupal\statusmessage\EntityCode
public function isPublished() {
return (bool) $this
->getEntityKey('status');
}