public function Keyword::isPublished in Alinks 8
Returns the Keyword published status indicator.
Unpublished Keyword are only visible to restricted users.
Return value
bool TRUE if the Keyword is published.
Overrides KeywordInterface::isPublished
File
- src/
Entity/ Keyword.php, line 136
Class
- Keyword
- Defines the Keyword entity.
Namespace
Drupal\alinks\EntityCode
public function isPublished() {
return (bool) $this
->getEntityKey('status');
}