UPGRADE NOTE: Do not edit or add to this file if you wish to upgrade AbanteCart to newer versions in the future. If you wish to customize AbanteCart for your needs please refer to http://www.AbanteCart.com for more information. ------------------------------------------------------------------------------*/ if (! defined ( 'DIR_CORE' )) { header ( 'Location: static_pages/' ); } class ModelSettingStore extends Model { public function getStore($store_id) { $query = $this->db->query("SELECT DISTINCT *, s.store_id FROM " . $this->db->table("stores") . " s LEFT JOIN " . $this->db->table("store_descriptions") . " sd ON (s.store_id = sd.store_id AND sd.language_id = '" . $this->config->get('storefront_language_id') . "') WHERE s.store_id = '" . (int)$store_id . "'"); return $query->row; } } ?>