diff options
Diffstat (limited to 'public/catalog/model/setting/setting.php')
-rw-r--r-- | public/catalog/model/setting/setting.php | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/public/catalog/model/setting/setting.php b/public/catalog/model/setting/setting.php new file mode 100644 index 0000000..a9d42f9 --- /dev/null +++ b/public/catalog/model/setting/setting.php @@ -0,0 +1,28 @@ +<?php +class ModelSettingSetting extends Model { + public function getSetting($code, $store_id = 0) { + $data = array(); + + $query = $this->db->query("SELECT * FROM " . DB_PREFIX . "setting WHERE store_id = '" . (int)$store_id . "' AND `code` = '" . $this->db->escape($code) . "'"); + + foreach ($query->rows as $result) { + if (!$result['serialized']) { + $data[$result['key']] = $result['value']; + } else { + $data[$result['key']] = json_decode($result['value'], true); + } + } + + return $data; + } + + public function getSettingValue($key, $store_id = 0) { + $query = $this->db->query("SELECT value FROM " . DB_PREFIX . "setting WHERE store_id = '" . (int)$store_id . "' AND `key` = '" . $this->db->escape($key) . "'"); + + if ($query->num_rows) { + return $query->row['value']; + } else { + return null; + } + } +}
\ No newline at end of file |