Comment::getCreatedTime

public Comment::getCreatedTime()

Returns the time that the comment was created.

Return value

int The timestamp of when the comment was created.

Overrides CommentInterface::getCreatedTime

File

core/modules/comment/src/Entity/Comment.php, line 455

Class

Comment
Defines the comment entity class.

Namespace

Drupal\comment\Entity

Code

1
2
3
4
5
6
public function getCreatedTime() {
  if (isset($this->get('created')->value)) {
    return $this->get('created')->value;
  }
  return NULL;
}
doc_Drupal
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.