blob: bb27cdbd926470d5fd2c2d16ec98cf537cf8f5e0 (
plain)
1
2
3
4
5
6
7
8
|
<?php
class ModelLocalisationLocation extends Model {
public function getLocation($location_id) {
$query = $this->db->query("SELECT location_id, name, address, geocode, telephone, fax, image, open, comment FROM " . DB_PREFIX . "location WHERE location_id = '" . (int)$location_id . "'");
return $query->row;
}
}
|