Elgg  Version master
Entity.php
Go to the documentation of this file.
1 <?php
2 
3 namespace Elgg\Export;
4 
6 use Elgg\Values;
7 
20 class Entity extends Data {
21 
27  public function getTimeUpdated() {
28  if (!$this->time_updated) {
29  return null;
30  }
31 
32  return Values::normalizeTime($this->time_created);
33  }
34 }
Saves user notification settings.
getTimeUpdated()
Get updated time.
Definition: Entity.php:27
static normalizeTime($time)
Returns DateTime object based on time representation.
Definition: Values.php:75