| Linux hosting5.siteguarding.com 3.10.0-962.3.2.lve1.5.88.el7.x86_64 #1 SMP Fri Sep 26 14:06:42 UTC 2025 x86_64 Path : /home/devsafetybis/op3038.dev.safetybis.com/catalog/model/design/ |
| Current File : /home/devsafetybis/op3038.dev.safetybis.com/catalog/model/design/theme.php |
<?php
class ModelDesignTheme extends Model {
public function getTheme($route, $theme) {
$query = $this->db->query("SELECT * FROM " . DB_PREFIX . "theme WHERE store_id = '" . (int)$this->config->get('config_store_id') . "' AND theme = '" . $this->db->escape($theme) . "' AND route = '" . $this->db->escape($route) . "'");
return $query->row;
}
}