K2LL33D SHELL

 Apache/2.4.7 (Ubuntu)
 Linux sman1baleendah 3.13.0-24-generic #46-Ubuntu SMP Thu Apr 10 19:11:08 UTC 2014 x86_64
 uid=33(www-data) gid=33(www-data) groups=33(www-data)
 safemode : OFF
 MySQL: ON | Perl: ON | cURL: OFF | WGet: ON
  >  / var / www / html / sman1baleendahoppppppp / application / models /
server ip : 104.21.89.46

your ip : 172.69.59.191

H O M E


Filename/var/www/html/sman1baleendahoppppppp/application/models/M_class_group_settings.php
Size2.78 kb
Permissionrw-r--r--
Ownerroot : root
Create time04-May-2025 17:23
Last modified04-May-2025 17:23
Last accessed04-May-2025 17:23
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
<?php defined('BASEPATH') OR exit('No direct script access allowed');

/**
* CMS Sekolahku | CMS (Content Management System) dan PPDB/PMB Online GRATIS
* untuk sekolah SD/Sederajat, SMP/Sederajat, SMA/Sederajat, dan Perguruan Tinggi
* @version 2.4.13
* @author Anton Sofyan | https://facebook.com/antonsofyan | [email protected] | 0857 5988 8922
* @copyright (c) 2014-2023
* @link https://sekolahku.web.id
*
* PERINGATAN :
* 1. TIDAK DIPERKENANKAN MENGGUNAKAN CMS INI TANPA SEIZIN DARI PIHAK PENGEMBANG APLIKASI.
* 2. TIDAK DIPERKENANKAN MEMPERJUALBELIKAN APLIKASI INI TANPA SEIZIN DARI PIHAK PENGEMBANG APLIKASI.
* 3. TIDAK DIPERKENANKAN MENGHAPUS KODE SUMBER APLIKASI.
*/

class M_class_group_settings extends CI_Model {

/**
* Primary key
* @var String
*/
public static $pk = 'id';

/**
* Table
* @var String
*/
public static $table = 'class_group_settings';

/**
* Class Constructor
*
* @return Void
*/
public function __construct() {
parent::__construct();
}

/**
* Get Data
* @param String $keyword
* @param String $return_type
* @param Integer $limit
* @param Integer $offset
* @return Resource
*/
public function get_where($keyword = '', $return_type = 'count', $limit = 0, $offset = 0) {
$this->db->select("
x1.id
, x2.academic_year
, CONCAT(x3.class_group, IF((x4.major_short_name <> ''), CONCAT(' ',x4.major_short_name),''),IF((x3.sub_class_group <> ''),CONCAT(' - ',x3.sub_class_group),'')) AS class_name
, CONCAT(x5.nik, ' - ', x5.full_name) AS employee_name
, COUNT(x6.class_group_setting_id) AS total
, x1.is_deleted
");
$this->db->join('academic_years x2', 'x1.academic_year_id = x2.id', 'LEFT');
$this->db->join('class_groups x3', 'x1.class_group_id = x3.id', 'LEFT');
$this->db->join('majors x4', 'x3.major_id = x4.id', 'LEFT');
$this->db->join('employees x5', 'x1.employee_id = x5.id', 'LEFT');
$this->db->join('class_group_students x6', 'x1.id = x6.class_group_setting_id', 'LEFT');
if ( ! empty($keyword) ) {
$this->db->like("x2.academic_year", $keyword);
$this->db->or_like("CONCAT(x3.class_group, IF((x4.major_short_name <> ''), CONCAT(' ',x4.major_short_name),''),IF((x3.sub_class_group <> ''),CONCAT(' - ',x3.sub_class_group),''))", $keyword);
$this->db->or_like("x5.nik", $keyword);
$this->db->or_like("x5.full_name", $keyword);
}
$this->db->group_by('x1.id, x1.academic_year_id, x1.class_group_id');
$this->db->order_by('x2.academic_year', 'DESC');
$this->db->order_by('x3.class_group', 'ASC');
$this->db->order_by('x3.major_id', 'ASC');
$this->db->order_by('x3.sub_class_group', 'ASC');
if ( $return_type == 'count' ) return $this->db->count_all_results(self::$table . ' x1');
if ( $limit > 0 ) $this->db->limit($limit, $offset);
return $this->db->get(self::$table . ' x1');
}
}