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

your ip : 108.162.242.53

H O M E


Filename/var/www/html/sman1baleendahoppppppp/application/controllers/Scholarships.php
Size4.85 kb
Permissionrw-r--r--
Ownerroot : root
Create time04-May-2025 17:23
Last modified04-May-2025 17:23
Last accessed07-Jul-2025 03:07
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 Scholarships extends Admin_Controller {

/**
* Class Constructor
*
* @return Void
*/
public function __construct() {
parent::__construct();
$this->load->model('m_scholarships');
$this->pk = M_scholarships::$pk;
$this->table = M_scholarships::$table;
}

/**
* Index
* @return Void
*/
public function index() {
$this->vars['title'] = 'BEASISWA';
$this->vars['scholarships'] = TRUE;
$this->vars['content'] = 'scholarships';
$this->load->view('backend/index', $this->vars);
}

/**
* Pagination
* @return Object
*/
public function pagination() {
if ($this->input->is_ajax_request()) {
$keyword = trim($this->input->post('keyword', true));
$page_number = _toInteger($this->input->post('page_number', true));
$limit = _toInteger($this->input->post('per_page', true));
$offset = ($page_number * $limit);
$query = $this->m_scholarships->get_where($keyword, 'rows', $limit, $offset);
$total_rows = $this->m_scholarships->get_where($keyword);
$total_page = $limit > 0 ? ceil(_toInteger($total_rows) / _toInteger($limit)) : 1;
$this->vars['total_page'] = _toInteger($total_page);
$this->vars['total_rows'] = _toInteger($total_rows);
$this->vars['rows'] = $query->result();
$this->output
->set_content_type('application/json', 'utf-8')
->set_output(json_encode($this->vars, self::REQUIRED_FLAGS))
->_display();
exit;
}
}

/**
* Find by ID
* @return Object
*/
public function find_id() {
if ($this->input->is_ajax_request()) {
$id = _toInteger($this->input->post('id', true));
$query = _isNaturalNumber( $id ) ? $this->model->RowObject($this->pk, $id, $this->table) : [];
$this->output
->set_content_type('application/json', 'utf-8')
->set_output(json_encode($query, self::REQUIRED_FLAGS))
->_display();
exit;
}
}

/**
* Save | Update
* @return Object
*/
public function save() {
if ($this->input->is_ajax_request()) {
$id = _toInteger($this->input->post('id', true));
if ($this->validation()) {
$dataset = $this->dataset();
if (_isNaturalNumber( $id )) {
$query = $this->model->RowObject($this->pk, $id, $this->table);
if ($query->student_id == __session('user_profile_id')) {
$dataset['updated_by'] = __session('user_id');
$this->vars['status'] = $this->model->update($id, $this->table, $dataset) ? 'success' : 'error';
$this->vars['message'] = $this->vars['status'] == 'success' ? 'updated' : 'not_updated';
} else {
$this->vars['status'] = 'error';
$this->vars['message'] = 'forbidden';
}
} else {
$dataset['created_at'] = date('Y-m-d H:i:s');
$dataset['created_by'] = __session('user_id');
$this->vars['status'] = $this->model->insert($this->table, $dataset) ? 'success' : 'error';
$this->vars['message'] = $this->vars['status'] == 'success' ? 'created' : 'not_created';
}
} 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;
}
}

/**
* Dataset
* @return Array
*/
private function dataset() {
return [
'student_id' => (int) __session('user_profile_id'),
'scholarship_description' => $this->input->post('scholarship_description', true),
'scholarship_type' => $this->input->post('scholarship_type', true),
'scholarship_start_year' => $this->input->post('scholarship_start_year', true),
'scholarship_end_year' => $this->input->post('scholarship_end_year', true)
];
}

/**
* Validation Form
* @return Boolean
*/
private function validation() {
$this->load->library('form_validation');
$val = $this->form_validation;
$val->set_rules('scholarship_type', 'Jenis Beasiswa', 'trim|required');
$val->set_rules('scholarship_description', 'Nama Beasiswa', 'trim|required');
$val->set_rules('scholarship_start_year', 'Tahun Mulai', 'trim|numeric|required|min_length[4]|max_length[4]');
$val->set_rules('scholarship_end_year', 'Tahun Selesai', 'trim|numeric|required|min_length[4]|max_length[4]');
$val->set_error_delimiters('<div>&sdot; ', '</div>');
return $val->run();
}
}