You are here

public function Comment::isPublished in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/comment/src/Entity/Comment.php \Drupal\comment\Entity\Comment::isPublished()

Checks if the comment is published.

Return value

bool TRUE if the comment is published.

Overrides CommentInterface::isPublished

File

core/modules/comment/src/Entity/Comment.php, line 494
Contains \Drupal\comment\Entity\Comment.

Class

Comment
Defines the comment entity class.

Namespace

Drupal\comment\Entity

Code

public function isPublished() {
  return $this
    ->get('status')->value == CommentInterface::PUBLISHED;
}