aboutsummaryrefslogtreecommitdiffstats
path: root/public/catalog/model/setting/module.php
blob: 9f3dc2f71ba3abc9380962521a95467b495c7a78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php
class ModelSettingModule extends Model {
	public function getModule($module_id) {
		$query = $this->db->query("SELECT * FROM " . DB_PREFIX . "module WHERE module_id = '" . (int)$module_id . "'");
		
		if ($query->row) {
			return json_decode($query->row['setting'], true);
		} else {
			return array();	
		}
	}		
}