Viewing file: mo_rg_classteacher.php (4.42 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
include_once("da_rg_ClassTeacher.php");
class Mo_rg_classteacher extends Da_rg_ClassTeacher {
/**
* หน้าที่ของฟังก์ชั่น คือ หาข้อมูลอาจารย์ประจำชั้นตามเงื่อนไข
*
* @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_ClassTeacher.*
* @todo use
*/
public function qryCtc($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->rg_dbname.rg_ClassTeacher
$c1
$c2
$c3";
$query = $this->db->query($sql);
return $query;
}
/**
* หน้าที่ของฟังก์ชั่น คือ หาข้อมูลอาจารย์ประจำชั้น คำนำหน้าชื่อ ชื่อ และนามสกุลตามเงื่อนไข
*
* @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_ClassTeacher.*, $db_ppc.Person.*, $db_ppc.Prefix.*
* @todo use
*/
public function qryCtcJoinPrs($condition="",$order="",$group="") {
$db_ppc = $this->config->item('ppc_dbname');
$db_rg = $this->config->item('rg_dbname');
$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 GROUP_CONCAT(IF(prsItId=1, CONCAT(pf.prefixName,ps.fName,' ',ps.lName), CONCAT(pfo.prefixName,pso.fName,' ',pso.lName)) SEPARATOR '<br /> ') AS prsNames
FROM $this->rg_dbname.rg_ClassTeacher
INNER JOIN $this->rg_dbname.rg_Person prs ON ctcPrsId = prsId
LEFT JOIN $this->ppc_dbname.Person ps ON prsUsId = ps.personId
LEFT JOIN $this->ppc_dbname.Prefix pf ON ps.prefixId = pf.prefixId
LEFT JOIN $this->ppc_dbname.Personout pso ON prsUsId = pso.psoutId
LEFT JOIN $this->ppc_dbname.Prefix pfo ON pso.prefixId = pfo.prefixId
$c1
$c3
$c2";
$query = $this->db->query($sql);
return $query;
}
public function qryctcPrsId($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 count(ctcPrsId) as num from $this->rg_dbname.rg_ClassTeacher
$c1
$c3
$c2";
$query = $this->db->query($sql);
if($query->num_rows()){
return $query->row()->num;
}else{
return 0;
}
}
function getCountPrs($condition="") {
$where = $this->checkCondition($condition);
$c1 = substr($where, 0, -3);
$sql = "SELECT COUNT(ctcPrsId) AS num
FROM $this->rg_dbname.rg_ClassTeacher
$c1";
$query = $this->db->query($sql);
return $query->row()->num;
}
}
?>
|