You are here

public function HomeboxLayout::isPublished in Homebox 8

Returns the Homebox Layout published status indicator.

Unpublished Homebox Layout are only visible to restricted users.

Return value

bool TRUE if the Homebox Layout is published.

Overrides HomeboxLayoutInterface::isPublished

File

src/Entity/HomeboxLayout.php, line 187

Class

HomeboxLayout
Defines the Homebox Layout entity.

Namespace

Drupal\homebox\Entity

Code

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