blob: 9d0235aa2316882c0195fd06f44f7e998474fa7e (
plain)
1
2
3
4
5
6
7
8
|
<?php
class ModelSettingExtension extends Model {
function getExtensions($type) {
$query = $this->db->query("SELECT * FROM " . DB_PREFIX . "extension WHERE `type` = '" . $this->db->escape($type) . "'");
return $query->rows;
}
}
|