File "location.php"
Full path: /home/cakedeco/retaildirectonline.co.uk/catalog/model/localisation/location.php
File
size: 325 B (325 B bytes)
MIME-type: text/x-php
Charset: utf-8
Download Open Edit Advanced Editor &nnbsp; Back
<?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;
}
}