15 lines
300 B
PHP
Executable File
15 lines
300 B
PHP
Executable File
<?php
|
|
|
|
class Settings_model extends MY_Model {
|
|
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
public function findBySiteID(int $siteID) {
|
|
return $this->db->where("siteID", $siteID)
|
|
->get('cm_settings')
|
|
->row();
|
|
}
|
|
} |