You are here

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\Entity

Code

public function isPublished() {
  return (bool) $this
    ->getEntityKey('status');
}