public function Comment::getCreatedTime in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/comment/src/Entity/Comment.php \Drupal\comment\Entity\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 476 - Contains \Drupal\comment\Entity\Comment.
Class
- Comment
- Defines the comment entity class.
Namespace
Drupal\comment\EntityCode
public function getCreatedTime() {
if (isset($this
->get('created')->value)) {
return $this
->get('created')->value;
}
return NULL;
}