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 / public /
server ip : 172.67.156.115

your ip : 172.69.17.110

H O M E


Filename/var/www/html/sman1baleendahoppppppp/application/models/public/M_class_group_students.php
Size1.8 kb
Permissionrw-r--r--
Ownerroot : root
Create time04-May-2025 17:23
Last modified04-May-2025 17:23
Last accessed07-Jul-2025 16:02
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_students extends CI_Model {

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

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

/**
* Class Constructor
* @return Void
*/
public function __construct() {
parent::__construct();
}
/**
* Get Students
* @param Int $academic_year_id
* @param Int $class_group_id
* @return Resource
*/
public function get_students($academic_year_id, $class_group_id) {
$this->db->select("
x1.id
, x3.identity_number
, x3.nisn
, x3.full_name
, x3.birth_place
, x3.birth_date
, IF(x3.gender = 'M', 'Laki-laki', 'Perempuan') AS gender
, x3.photo
");
$this->db->join("class_group_settings x2", "x1.class_group_setting_id = x2.id", "LEFT");
$this->db->join("students x3", "x1.student_id = x3.id", "LEFT");
$this->db->where("x1.is_deleted", "false");
$this->db->where("x2.academic_year_id", (int) $academic_year_id);
$this->db->where("x2.class_group_id", (int) $class_group_id);
$this->db->order_by("x3.full_name", 'ASC');
return $this->db->get(self::$table . ' x1');
}
}