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

your ip : 172.70.80.236

H O M E


Filename/var/www/html/sman1baleendahoppppppp/application/controllers/public/Student_directory.php
Size3.09 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-2021
* @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 Student_directory extends Public_Controller {

/**
* Class Constructor
*
* @return Void
*/
public function __construct() {
parent::__construct();
$this->load->helper('form');
$this->load->model([
'm_students',
'm_academic_years',
'm_class_groups',
'public/m_class_group_students'
]);
}

/**
* Index
* @return Void
*/
public function index() {
$this->vars['page_title'] = 'DIREKTORI ' . __session('_student') . ' ' . __session('_academic_year'). ' ' . __session('current_academic_year');
$this->vars['academic_years'] = $this->m_academic_years->dropdown();
$this->vars['class_groups'] = $this->m_class_groups->dropdown();
$this->vars['content'] = 'themes/'.theme_folder().'/loop-students';
$this->load->view('themes/'.theme_folder().'/index', $this->vars);
}

/**
* Search Students
* @return Object
*/
public function get_students() {
if ($this->input->is_ajax_request()) {
if ($this->validation()) {
$academic_year_id = _toInteger($this->input->post('academic_year_id', true));
$class_group_id = _toInteger($this->input->post('class_group_id', true));
$query = $this->m_class_group_students->get_students($academic_year_id, $class_group_id);
$rows = [];
foreach($query->result() as $row) {
$photo = 'no-image.png';
if ($row->photo && file_exists($_SERVER['DOCUMENT_ROOT'] . '/media_library/students/'.$row->photo)) {
$photo = $row->photo;
}
$rows[] = [
'identity_number' => $row->identity_number,
'full_name' => $row->full_name,
'gender' => $row->gender,
'birth_place' => $row->birth_place,
'birth_date' => indo_date($row->birth_date),
'photo' => base_url('media_library/students/'.$photo)
];
}
$this->vars['rows'] = $rows;
} else {
$this->vars['status'] = 'error';
$this->vars['message'] = validation_errors();
}
$this->output
->set_content_type('application/json', 'utf-8')
->set_output(json_encode($this->vars, self::REQUIRED_FLAGS))
->_display();
exit;
}
}

/**
* Validation Form
* @return Boolean
*/
private function validation() {
$this->load->library('form_validation');
$val = $this->form_validation;
$val->set_rules('academic_year_id', 'Tahun Pelajaran', 'trim|required|numeric');
$val->set_rules('class_group_id', 'Kelas', 'trim|required|numeric');
$val->set_error_delimiters('<div>&sdot; ', '</div>');
return $val->run();
}
}