Comment::isPublished

public 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 473

Class

Comment
Defines the comment entity class.

Namespace

Drupal\comment\Entity

Code

public function isPublished() {
  return $this->get('status')->value == CommentInterface::PUBLISHED;
}
doc_Drupal
2016-10-29 08:50:22
Comments
Leave a Comment

Please login to continue.