Viewing file: mo_rg_courseopenfor.php (4.41 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
include_once("da_rg_CourseOpenFor.php");
class mo_rg_courseopenfor extends Da_rg_CourseOpenFor {
/**
* หน้าที่ของฟังก์ชั่น คือ หารายวิชาที่เปิดสอนหลายหลักสูตร
*
* @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_CourseOpenFor.*
* @todo use
*/
public function qryCof($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_CourseOpenFor
$c1
$c3
$c2";
$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_CourseOpenFor.*, rg_Curriculum.*
* @todo use
*/
public function qryCofJoinCur($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_CourseOpenFor
LEFT JOIN $this->rg_dbname.rg_Curriculum ON cofCurId=curId
$c1
$c3
$c2";
$query = $this->db->query($sql);
return $query;
}
function getSumSeats($condition="") {
$where = $this->checkCondition($condition);
$c1= substr($where, 0, -3);
$sql = "SELECT IFNULL(SUM(cofSeats), 0) AS num
FROM $this->rg_dbname.rg_CourseOpenFor
$c1";
$query = $this->db->query($sql);
return $query->row()->num;
}
public function getSumSeatsByCoIdNotCurId($coId, $curId) {
$sql = "SELECT IFNULL(SUM(cofSeats), 0) AS num
FROM $this->rg_dbname.rg_CourseOpenFor
WHERE cofCoId = ?
AND cofCurId <> ?";
$query = $this->db->query($sql, array($coId, $curId));
return $query->row()->num;
}
public function getGroupConCofCurId($coId) {
$sql = "SELECT GROUP_CONCAT(cofCurId) AS cofCurId
FROM $this->rg_dbname.rg_CourseOpenFor
WHERE cofCoId=?";
$query = $this->db->query($sql, array($coId));
return $query->row()->cofCurId;
}
public function qryCofJoinCurLev($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_CourseOpenFor
LEFT JOIN $this->rg_dbname.rg_Curriculum ON cofCurId=curId
LEFT JOIN $this->ppc_dbname.Level ON curLevId=levelId
$c1
$c3
$c2";
$query = $this->db->query($sql);
return $query;
}
} // end class Rg_timetable_model
?>
|