Elgg  Version master
Entity.php
Go to the documentation of this file.
1 <?php
2 
3 namespace Elgg\Export;
4 
5 use DateTime;
6 
20 class Entity extends Data {
21 
26  public function getTimeUpdated() {
27  if (!$this->time_updated) {
28  return null;
29  }
30 
31  return new DateTime($this->time_created);
32  }
33 }
getTimeUpdated()
Get updated tme.
Definition: Entity.php:26