[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
14082024
/
Data
/
htdocs
/
htdocs
/
e-learning
/
application
/
models
/
[
Home
]
File: kelas_model.php
<?php /** * Class Model untuk resource kelas * * @package Elearning Dokumenary * @link http://www.dokumenary.net */ class Kelas_model extends CI_Model { /** * Method untuk mengambi semua data kelas * * @param null|integer $parent_id * @param array $array_where * @return array * @author Almazari <almazary@gmail.com> */ public function retrieve_all($parent_id = null, $array_where = array()) { $this->db->where('parent_id', $parent_id); foreach ($array_where as $key => $value) { $this->db->where($key, $value); } $this->db->order_by('urutan', 'ASC'); $result = $this->db->get('kelas'); return $result->result_array(); } public function retrieve_all_child($show_not_active = false) { $this->db->where('parent_id !=', '0'); if (!$show_not_active) { $this->db->where('aktif', 1); } $this->db->order_by('urutan', 'ASC'); $result = $this->db->get('kelas'); return $result->result_array(); } /** * Method untuk mengambil satu record data kelas * * @param integer $id * @return array * @author Almazari <almazary@gmail.com> */ public function retrieve($id, $show_not_active = false) { $id = (int)$id; $this->db->where('id', $id); if (!$show_not_active) { $this->db->where('aktif', 1); } $result = $this->db->get('kelas', '1'); return $result->row_array(); } /** * Method untuk menambah data kelas * * @param string $nama * @param integer|null $parent_id * @return integer last insert id * @author Almazari <almazary@gmail.com> */ public function create( $nama, $parent_id = null ) { if (!is_null($parent_id)) { $parent_id = (int)$parent_id; } $this->db->select('MAX(urutan) AS urutan'); $query = $this->db->get('kelas'); $row = $query->row_array(); if (empty($row['urutan'])) { $row['urutan'] = 1; } else { $row['urutan'] = $row['urutan'] + 1; } $data = array( 'nama' => $nama, 'parent_id' => $parent_id, 'urutan' => $row['urutan'] ); $this->db->insert('kelas', $data); return $this->db->insert_id(); } /** * Method untuk memperbaharui record kelas * * @param integer $id * @param nama $nama * @param integer|null $parent_id * @param integer $urutan * @param integer $aktif 1|0 * @return boolean true jika berhasil * @author Almazari <almazary@gmail.com> */ public function update( $id, $nama, $parent_id = null, $urutan, $aktif = 1 ) { $id = (int)$id; $urutan = (int)$urutan; $aktif = (int)$aktif; if (!is_null($parent_id)) { $parent_id = (int)$parent_id; } $data = array( 'nama' => $nama, 'parent_id' => $parent_id, 'urutan' => $urutan, 'aktif' => $aktif ); $this->db->where('id', $id); $this->db->update('kelas', $data); return true; } /** * Method untuk menghapus record kelas * * @param integer $id * @return boolean true jika berhasil * @author Almazari <almazary@gmail.com> */ public function delete($id) { $id = (int)$id; $this->db->where('id', $id); $this->db->delete('kelas'); return true; } /** * Method untuk menambah data kelas siswa * * @param integer $kelas_id * @param integer $siswa_id * @param integer $aktif * @return integer last insert id * @author Almazari <almazary@gmail.com> */ public function create_siswa( $kelas_id, $siswa_id, $aktif = 0 ) { $kelas_id = (int)$kelas_id; $siswa_id = (int)$siswa_id; $aktif = (int)$aktif; $data = array( 'kelas_id' => $kelas_id, 'siswa_id' => $siswa_id, 'aktif' => $aktif ); $this->db->insert('kelas_siswa', $data); return $this->db->insert_id(); } /** * Method untuk memperbaharui kelas siswa * * @param integer $id * @param integer $kelas_id * @param integer $siswa_id * @param integer $aktif * @return boolean true jika berhasil * @author Almazari <almazary@gmail.com> */ public function update_siswa( $id, $kelas_id, $siswa_id, $aktif ) { $id = (int)$id; $kelas_id = (int)$kelas_id; $siswa_id = (int)$siswa_id; $aktif = (int)$aktif; $data = array( 'kelas_id' => $kelas_id, 'siswa_id' => $siswa_id, 'aktif' => $aktif ); $this->db->where('id', $id); $this->db->update('kelas_siswa', $data); return true; } /** * Method untuk mengambil satu data kelas siswa berdasarkan id atau konsisi tertentu * * @param null|integer $id * @param null|array $array_where contoh : * <code> * $array_where = array( * 'kelas_id' => 1, * 'aktif' => 0 * ); * </code> * @return array * @author Almazari <almazary@gmail.com> */ public function retrieve_siswa($id = null, $array_where = null) { if (!is_null($id)) { $id = (int)$id; $this->db->where('id', $id); } elseif (is_array($array_where)) { foreach ($array_where as $key => $value) { $this->db->where($key, $value); } } $result = $this->db->get('kelas_siswa', '1'); return $result->row_array(); } /** * Method untuk mengambil semua data kelas siswa * * @param integer $no_of_records * @param integer $page_no * @param null|array $array_where * @return array * @author Almazari <almazary@gmail.com> */ public function retrieve_all_siswa( $no_of_records = 10, $page_no = 1, $array_where = null ) { $no_of_records = (int)$no_of_records; $page_no = (int)$page_no; $where = array(); if (!is_null($array_where) AND is_array($array_where)) { foreach ($array_where as $key => $value) { $where[$key] = array($value, 'where'); } } $order_by = array('id' => 'ASC'); $data = $this->pager->set('kelas_siswa', $no_of_records, $page_no, $where, $order_by); return $data; } /** * Method untuk menghapus kelas siswa * * @param integer $id * @return boolean true jika berhasil * @author Almazari <almazary@gmail.com> */ public function delete_siswa($id) { $id = (int)$id; $this->db->where('id', $id); $this->db->delete('kelas_siswa'); return true; } }