aboutsummaryrefslogtreecommitdiffstats
path: root/public/catalog/model/design/theme.php
blob: 9b0aae19dc72eba1c4c32fbe3b0c76a50854b4eb (plain)
1
2
3
4
5
6
7
8
<?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;
	}
}