public function Node::getCreatedTime in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/modules/node/src/Entity/Node.php \Drupal\node\Entity\Node::getCreatedTime()
Gets the node creation timestamp.
Return value
int Creation timestamp of the node.
Overrides NodeInterface::getCreatedTime
File
- core/
modules/ node/ src/ Entity/ Node.php, line 204 - Contains \Drupal\node\Entity\Node.
Class
- Node
- Defines the node entity class.
Namespace
Drupal\node\EntityCode
public function getCreatedTime() {
return $this
->get('created')->value;
}