public Node::getRevisionCreationTime()
Gets the node revision creation timestamp.
Return value
int The UNIX timestamp of when this revision was created.
Overrides NodeInterface::getRevisionCreationTime
File
- core/modules/node/src/Entity/Node.php, line 293
Class
- Node
- Defines the node entity class.
Namespace
Drupal\node\Entity
Code
1 2 3 | public function getRevisionCreationTime() { return $this ->get( 'revision_timestamp' )->value; } |
Please login to continue.