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.71.254.99

H O M E


Filename/var/www/html/sman1baleendahoppppppp/application/controllers/public/Print_admission_form.php
Size4.16 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-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 Print_admission_form extends Public_Controller {

/**
* Constructor
* @access public
*/
public function __construct() {
parent::__construct();
}

/**
* Index
* @access public
*/
public function index() {
$this->load->model('m_settings');
$this->vars['recaptcha_site_key'] = __session('recaptcha_site_key');
$this->vars['page_title'] = 'Cetak Formulir Penerimaan ' . __session('_student') . ' Baru Tahun ' . __session('admission_year');
$this->vars['button'] = 'Cetak Formulir';
$this->vars['onclick'] = 'print_admission_form()';
$this->vars['content'] = 'themes/'.theme_folder().'/admission-search-form';
$this->load->view('themes/'.theme_folder().'/index', $this->vars);
}

/**
* PDF Generated Process
* @return Void
*/
public function process() {
if ($this->input->is_ajax_request()) {
if (__captchaActivated()) {
$score = get_recapture_score($this->input->post('g-recaptcha-response'));
if ($score < 0.9) {
$this->vars['status'] = 'recaptcha_error';
$this->vars['message'] = 'Recaptcha Error!';
$this->output
->set_content_type('application/json', 'utf-8')
->set_output(json_encode($this->vars, self::REQUIRED_FLAGS))
->_display();
exit;
}
}

if ($this->validation()) {
$registration_number = strip_tags($this->input->post('registration_number'));
$birth_date = strip_tags($this->input->post('birth_date'));
if (_isValidDate($birth_date) && strlen($registration_number) == 10 && ctype_digit((string) $registration_number)) {
$this->load->model('m_registrants');
$registrant = $this->m_registrants->find_registrant($registration_number, $birth_date);
if ( count($registrant) == 0) {
$this->vars['status'] = 'warning';
$this->vars['message'] = 'Data dengan tanggal lahir '.indo_date($birth_date).' dan nomor pendaftaran '.$registration_number.' tidak ditemukan.';
} else {
$file_name = 'formulir-penerimaan-'. (__session('school_level') >= 5 ? 'mahasiswa' : 'peserta-didik').'-baru-tahun-'.__session('admission_year');
$file_name .= '-'.$query->birth_date.'-'.$query->registration_number.'.pdf';
$this->load->library('admission');
$this->admission->create_pdf($registrant, $file_name);
$this->vars['file_name'] = $file_name;
$this->vars['status'] = 'success';
}
} else {
$this->vars['status'] = 'error';
$this->vars['message'] = 'Format data yang anda masukan tidak benar.';
}
} else {
$this->vars['status'] = 'validation_errors';
$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;
}
}

/**
* Validations Form
* @return Boolean
*/
private function validation() {
$this->load->library('form_validation');
$val = $this->form_validation;
$val->set_rules('registration_number', 'Nomor Pendaftaran', 'trim|required|numeric|max_length[10]|min_length[10]');
$val->set_rules('birth_date', 'Tanggal Lahir', 'trim|required|callback_date_format_check');
$val->set_message('required', '{field} harus diisi');
$val->set_error_delimiters('<div>&sdot; ', '</div>');
return $val->run();
}

/**
* Declaration Check
* @return Boolean
*/
public function date_format_check($str) {
if (!_isValidDate($str)) {
$this->form_validation->set_message('date_format_check', 'Tanggal lahir harus diisi dengan format YYYY-MM-DD');
return FALSE;
}
return TRUE;
}
}