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

your ip : 108.162.216.216

H O M E


Filename/var/www/html/sman1baleendahoppppppp/application/controllers/academic/By_student_status.php
Size2.18 kb
Permissionrw-r--r--
Ownerroot : root
Create time04-May-2025 17:23
Last modified04-May-2025 17:23
Last accessed07-Jul-2025 08:16
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 By_student_status extends Admin_Controller {

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

/**
* Index
* @return Void
*/
public function index() {
$this->vars['title'] = 'Grafik ' . ucwords(strtolower(__session('_student'))) .' Berdasarkan Status '. ucwords(strtolower(__session('_student')));
$this->vars['academic'] = $this->vars['academic_chart'] = $this->vars['by_student_status'] = TRUE;
$this->vars['academic_year_dropdown'] = $this->m_academic_years->dropdown();
$this->vars['content'] = 'academic/by_student_status';
$this->load->view('backend/index', $this->vars);
}

/**
* Generate Chart
*/
public function generate_chart() {
if ($this->input->is_ajax_request()) {
$academic_year_id = _toInteger($this->input->post('academic_year_id', true));
$query = $this->m_students->chart_by_student_status($academic_year_id);
$this->vars['title'] = 'GRAFIK ' . strtoupper(__session('_student')) . ' BERDASARKAN STATUS PESERTA DIDIK ' . strtoupper(__session('_academic_year'));
$this->vars['labels'] = [];
$this->vars['data'] = [];
foreach($query->result() as $row) {
array_push($this->vars['labels'], $row->labels);
array_push($this->vars['data'], $row->data);
}
$this->output
->set_content_type('application/json', 'utf-8')
->set_output(json_encode($this->vars, self::REQUIRED_FLAGS))
->_display();
exit;
}
}
}