public function getEntity($id)
 {
     // overrides parent class to enrich entity with display elements
     $location = parent::getEntity($id, $this->tenantid, $this->userid);
     $location = Utility::addDisplayElements($location);
     $location["images"] = '';
     // blank for now; may want some other value here depending upon how it gets used
     return $location;
 }