public function SiteSettingEntity::isPublished in Site Settings and Labels 8
Returns the Site Setting published status indicator.
Unpublished Site Setting are only visible to restricted users.
Return value
bool TRUE if the Site Setting is published.
Overrides SiteSettingEntityInterface::isPublished
File
- src/
Entity/ SiteSettingEntity.php, line 171
Class
- SiteSettingEntity
- Defines the Site Setting entity.
Namespace
Drupal\site_settings\EntityCode
public function isPublished() {
return (bool) $this
->getEntityKey('status');
}