Current Path : /var/www/upload/install/model/3rd_party/ |
Current File : /var/www/upload/install/model/3rd_party/maxmind.php |
<?php class Model3rdPartyMaxmind extends Model { public function editSetting($data) { $this->db->query("REPLACE INTO `" . DB_PREFIX . "setting` SET `maxmind_key` = '" . $db->escape($data['maxmind_key']) . "', `maxmind_score` = '" . (int)$data['maxmind_score'] . "', `maxmind_order_status_id` = '" . (int)$data['maxmind_order_status_id'] . "' WHERE `store_id` = '0' AND `code` = 'maxmind'"); $this->db->query("INSERT INTO `oc_extension` (`type`, `code`) VALUES ('fraud', 'maxmind')"); } public function getOrderStatuses() { $query = $this->db->query("SELECT * FROM " . DB_PREFIX . "order_status WHERE language_id = '1' ORDER BY name ASC"); return $query->rows; } }