first commit

This commit is contained in:
pakerpale
2020-06-10 06:21:34 +09:00
commit 20c9739ba9
1913 changed files with 266257 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<?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();
}
}