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 / settings / | server ip : 104.21.89.46 your ip : 172.69.7.250 H O M E |
Filename | /var/www/html/sman1baleendahoppppppp/application/controllers/settings/General.php |
Size | 5.74 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 13:01 |
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 General extends Admin_Controller {
/**
* Class Constructor
*
* @return Void
*/
public function __construct() {
parent::__construct();
$this->load->model('m_settings');
$this->pk = M_settings::$pk;
$this->table = M_settings::$table;
}
/**
* Index
* @return Void
*/
public function index() {
$this->vars['title'] = 'Pengaturan Umum';
$this->vars['settings'] = $this->vars['general_settings'] = TRUE;
$this->vars['timezone_list'] = json_encode(timezone_list(), JSON_HEX_APOS | JSON_HEX_QUOT);
$this->vars['content'] = 'settings/general';
$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_settings->get_where($keyword, 'general', 'rows', $limit, $offset);
$total_rows = $this->m_settings->get_where($keyword, 'general');
$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;
}
}
/**
* 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();
$dataset['updated_by'] = __session('user_id');
$query = $this->model->update($id, $this->table, $dataset);
$this->vars['status'] = $query ? 'success' : 'error';
$this->vars['message'] = $query ? 'Data Anda berhasil disimpan.' : 'Terjadi kesalahan dalam menyimpan data';
} 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 [
'setting_value' => $this->input->post('setting_value')
];
}
/**
* Validation Form
* @return Boolean
*/
private function validation() {
$this->load->library('form_validation');
$val = $this->form_validation;
$val->set_rules('setting_value', 'Value', 'trim|required');
$val->set_error_delimiters('<div>⋅ ', '</div>');
return $val->run();
}
/**
* Upload
* @return Void
*/
public function upload() {
if ($this->input->is_ajax_request()) {
$id = _toInteger($this->input->post('id', true));
if (_isNaturalNumber( $id )) {
$query = $this->model->RowObject($this->pk, $id, $this->table);
$file_name = $query->setting_value;
$config['upload_path'] = './media_library/images/';
$config['allowed_types'] = 'jpg|png|jpeg|gif';
$config['max_size'] = 0;
$config['encrypt_name'] = TRUE;
$this->load->library('upload', $config);
if ( ! $this->upload->do_upload('file') ) {
$this->vars['status'] = 'error';
$this->vars['message'] = $this->upload->display_errors();
} else {
$file = $this->upload->data();
$update = $this->model->update($id, $this->table, ['setting_value' => $file['file_name']]);
if ($update) {
// chmood new file
@chmod(FCPATH.'media_library/images/'.$file['file_name'], 0777);
// chmood old file
@chmod(FCPATH.'media_library/images/'.$file_name, 0777);
// unlink old file
@unlink(FCPATH.'media_library/images/'.$file_name);
// resize new image
$this->image_resize(FCPATH.'media_library/images', $file['file_name'], $query->setting_variable);
}
$this->vars['status'] = 'success';
$this->vars['message'] = 'uploaded';
}
} else {
$this->vars['status'] = 'error';
$this->vars['message'] = 'ID bukan merupakan tipe angka yang valid !';
}
$this->output
->set_content_type('application/json', 'utf-8')
->set_output(json_encode($this->vars, self::REQUIRED_FLAGS))
->_display();
exit;
}
}
/**
* Image Resize
* @param String $path
* @param String $file_name
* @param String $setting_variable
* @return Void
*/
private function image_resize($path, $file_name, $setting_variable = 'favicon') {
$settings = [
'favicon_width' => 32,
'favicon_height' => 32,
'header_width' => __session('header_width'),
'header_height' => __session('header_height')
];
$this->load->library('image_lib');
$config['image_library'] = 'gd2';
$config['source_image'] = $path .'/'.$file_name;
$config['maintain_ratio'] = false;
$config['width'] = (int) $settings[$setting_variable . '_width'];
$config['height'] = (int) $settings[$setting_variable . '_height'];
$this->image_lib->initialize($config);
$this->image_lib->resize();
}
}
/**
* 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 General extends Admin_Controller {
/**
* Class Constructor
*
* @return Void
*/
public function __construct() {
parent::__construct();
$this->load->model('m_settings');
$this->pk = M_settings::$pk;
$this->table = M_settings::$table;
}
/**
* Index
* @return Void
*/
public function index() {
$this->vars['title'] = 'Pengaturan Umum';
$this->vars['settings'] = $this->vars['general_settings'] = TRUE;
$this->vars['timezone_list'] = json_encode(timezone_list(), JSON_HEX_APOS | JSON_HEX_QUOT);
$this->vars['content'] = 'settings/general';
$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_settings->get_where($keyword, 'general', 'rows', $limit, $offset);
$total_rows = $this->m_settings->get_where($keyword, 'general');
$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;
}
}
/**
* 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();
$dataset['updated_by'] = __session('user_id');
$query = $this->model->update($id, $this->table, $dataset);
$this->vars['status'] = $query ? 'success' : 'error';
$this->vars['message'] = $query ? 'Data Anda berhasil disimpan.' : 'Terjadi kesalahan dalam menyimpan data';
} 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 [
'setting_value' => $this->input->post('setting_value')
];
}
/**
* Validation Form
* @return Boolean
*/
private function validation() {
$this->load->library('form_validation');
$val = $this->form_validation;
$val->set_rules('setting_value', 'Value', 'trim|required');
$val->set_error_delimiters('<div>⋅ ', '</div>');
return $val->run();
}
/**
* Upload
* @return Void
*/
public function upload() {
if ($this->input->is_ajax_request()) {
$id = _toInteger($this->input->post('id', true));
if (_isNaturalNumber( $id )) {
$query = $this->model->RowObject($this->pk, $id, $this->table);
$file_name = $query->setting_value;
$config['upload_path'] = './media_library/images/';
$config['allowed_types'] = 'jpg|png|jpeg|gif';
$config['max_size'] = 0;
$config['encrypt_name'] = TRUE;
$this->load->library('upload', $config);
if ( ! $this->upload->do_upload('file') ) {
$this->vars['status'] = 'error';
$this->vars['message'] = $this->upload->display_errors();
} else {
$file = $this->upload->data();
$update = $this->model->update($id, $this->table, ['setting_value' => $file['file_name']]);
if ($update) {
// chmood new file
@chmod(FCPATH.'media_library/images/'.$file['file_name'], 0777);
// chmood old file
@chmod(FCPATH.'media_library/images/'.$file_name, 0777);
// unlink old file
@unlink(FCPATH.'media_library/images/'.$file_name);
// resize new image
$this->image_resize(FCPATH.'media_library/images', $file['file_name'], $query->setting_variable);
}
$this->vars['status'] = 'success';
$this->vars['message'] = 'uploaded';
}
} else {
$this->vars['status'] = 'error';
$this->vars['message'] = 'ID bukan merupakan tipe angka yang valid !';
}
$this->output
->set_content_type('application/json', 'utf-8')
->set_output(json_encode($this->vars, self::REQUIRED_FLAGS))
->_display();
exit;
}
}
/**
* Image Resize
* @param String $path
* @param String $file_name
* @param String $setting_variable
* @return Void
*/
private function image_resize($path, $file_name, $setting_variable = 'favicon') {
$settings = [
'favicon_width' => 32,
'favicon_height' => 32,
'header_width' => __session('header_width'),
'header_height' => __session('header_height')
];
$this->load->library('image_lib');
$config['image_library'] = 'gd2';
$config['source_image'] = $path .'/'.$file_name;
$config['maintain_ratio'] = false;
$config['width'] = (int) $settings[$setting_variable . '_width'];
$config['height'] = (int) $settings[$setting_variable . '_height'];
$this->image_lib->initialize($config);
$this->image_lib->resize();
}
}