Viewing file: mo_prefix.php (3.18 KB) -rwxr-xr-x Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
include_once("da_prefix.php");
class Mo_prefix extends Da_prefix {
/**
* หน้าที่ของฟังก์ชั่น คือ หาข้อมูลสิทธิการรักษาพยาบาลตามเงื่อนไข
*
* @access public
* @param array condition โดยรูปแบบของ array จะอยู่ในรูป condition('key' => value) ไว้สำหรับระบุเงื่อนไขของคำสั่ง SELECT
* @param array order โดยรูปแบบของ array จะอยู่ในรูป condition('key' => value) ไว้สำหรับระบุเงื่อนไขการเรียงลำดับ ORDER BY
* @param array group โดยรูปแบบของ array จะอยู่ในรูป condition('key' => value) ไว้สำหรับระบุเงื่อนไขการจัดกลุ่ม GROUP BY
* @return query >= 1 rows : rg_HealthPrivilege.*
* @todo use
*/
public function qryPf($condition="",$order="",$group="") {
$where = $this->checkCondition($condition);
$order = $this->checkOrderBy($order);
$group = $this->checkGroupBy($group);
$c1 = substr($where, 0, -3);
$c2 = substr($order, 0, -1);
$c3 = substr($group, 0, -1);
$sql = "SELECT *
FROM $this->ppc_dbname.Prefix
$c1
$c2
$c3";
$query = $this->db->query($sql);
return $query;
}
public function get_options($condition="",$order="",$group="",$optional='y') {
$query = $this->qryPf($condition,$order,$group);
if($optional=='y') $opt[''] = '';
foreach($query->result() as $row) {
$opt[$row->prefixId] = $row->prefixName;
}
return $opt;
}
public function get_optionsEng($condition="",$order="",$group="",$optional='y') {
$query = $this->qryPf($condition,$order,$group);
if($optional=='y') $opt[''] = '';
foreach($query->result() as $row) {
$opt[$row->prefixId] = $row->prefixNameEng;
}
return $opt;
}
/*
* aOrderBy = array('fieldname' => 'ASC|DESC', ... )
*/
function get_all($aOrderBy=""){
$orderBy = "";
if ( is_array($aOrderBy) ) {
$orderBy.= "ORDER BY ";
foreach ($aOrderBy as $key => $value) {
$orderBy.= "$key $value, ";
}
$orderBy = substr($orderBy, 0, strlen($orderBy)-2);
}
$sql = "SELECT *
FROM $this->ppc_dbname.Prefix
$orderBy";
$query = $this->db->query($sql);
return $query;
}
public function qryPfNotId($condition="",$prefixId) {
$where = $this->checkCondition($condition);
$c1 = substr($where, 0, -3);
$sql = "SELECT *
FROM $this->ppc_dbname.Prefix
$c1
AND prefixId<>?";
$query = $this->db->query($sql,array($prefixId));
return $query;
}
public function qryPfLikePfNameFullAndPfName($prefixNameFull, $prefixName) {
$sql = "SELECT *
FROM $this->ppc_dbname.Prefix
WHERE prefixNameFull LIKE ?
OR prefixName LIKE ?
ORDER BY CONVERT(prefixName USING TIS620)";
$query = $this->db->query($sql,array('%'.$prefixNameFull.'%', '%'.$prefixName.'%'));
return $query;
}
// add your functions here
} // end class M_prefix
?>
|