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 : 104.21.89.46 your ip : 172.69.130.146 H O M E |
Filename | /var/www/html/sman1baleendahoppppppp/application/controllers/academic/Import_alumni.php |
Size | 2.88 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 08:03 |
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 Import_alumni extends Admin_Controller {
/**
* Class Constructor
*
* @return Void
*/
public function __construct() {
parent::__construct();
}
/**
* Index
* @return Void
*/
public function index() {
$this->vars['title'] = 'Import Alumni';
$this->vars['academic'] = $this->vars['academic_import'] = $this->vars['import_alumni'] = TRUE;
$this->vars['content'] = 'academic/import_alumni';
$this->load->view('backend/index', $this->vars);
}
/**
* Save
*/
public function save() {
if ($this->input->is_ajax_request()) {
$rows = explode("\n", $this->input->post('students'));
foreach($rows as $row) {
$exp = explode("\t", $row);
if (count($exp) != 7) continue;
$identity_number_exists = $this->model->is_exists('identity_number', trim($exp[0]), 'students');
if ( $identity_number_exists ) continue;
$this->db->set('identity_number', trim($exp[0]));
$this->db->set('full_name', trim($exp[1]));
$this->db->set('gender', trim($exp[2]) == 'L' ? 'M' : 'F');
$this->db->set('start_date', trim($exp[3]));
$this->db->set('end_date', trim($exp[4]));
$this->db->set('mobile_phone', trim($exp[5]));
$this->db->set('street_address', trim($exp[6]));
$this->db->set('is_transfer', 'false');
$this->db->set('is_prospective_student', 'false');
$this->db->set('is_alumni', 'true');
$this->db->set('is_student', 'false');
$this->db->set('citizenship', 'WNI');
$this->db->set('student_status_id', get_option_id('student_status', 'lulus'));
$this->db->set('email', trim($exp[0]).'@'.str_replace(['http://', 'https://', 'www.'], '', rtrim(__session('website'), '/')));
$this->db->set('created_at', date('Y-m-d H:i:s'));
$this->db->set('created_by', __session('user_id'));
$query_string = $this->db->get_compiled_insert('students');
$query_string = str_replace('INSERT INTO', 'INSERT IGNORE INTO', $query_string);
$this->db->query($query_string);
}
$this->vars['status'] = 'success';
$this->vars['message'] = 'Data alumni sudah tersimpan';
$this->output
->set_content_type('application/json', 'utf-8')
->set_output(json_encode($this->vars, 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 Import_alumni extends Admin_Controller {
/**
* Class Constructor
*
* @return Void
*/
public function __construct() {
parent::__construct();
}
/**
* Index
* @return Void
*/
public function index() {
$this->vars['title'] = 'Import Alumni';
$this->vars['academic'] = $this->vars['academic_import'] = $this->vars['import_alumni'] = TRUE;
$this->vars['content'] = 'academic/import_alumni';
$this->load->view('backend/index', $this->vars);
}
/**
* Save
*/
public function save() {
if ($this->input->is_ajax_request()) {
$rows = explode("\n", $this->input->post('students'));
foreach($rows as $row) {
$exp = explode("\t", $row);
if (count($exp) != 7) continue;
$identity_number_exists = $this->model->is_exists('identity_number', trim($exp[0]), 'students');
if ( $identity_number_exists ) continue;
$this->db->set('identity_number', trim($exp[0]));
$this->db->set('full_name', trim($exp[1]));
$this->db->set('gender', trim($exp[2]) == 'L' ? 'M' : 'F');
$this->db->set('start_date', trim($exp[3]));
$this->db->set('end_date', trim($exp[4]));
$this->db->set('mobile_phone', trim($exp[5]));
$this->db->set('street_address', trim($exp[6]));
$this->db->set('is_transfer', 'false');
$this->db->set('is_prospective_student', 'false');
$this->db->set('is_alumni', 'true');
$this->db->set('is_student', 'false');
$this->db->set('citizenship', 'WNI');
$this->db->set('student_status_id', get_option_id('student_status', 'lulus'));
$this->db->set('email', trim($exp[0]).'@'.str_replace(['http://', 'https://', 'www.'], '', rtrim(__session('website'), '/')));
$this->db->set('created_at', date('Y-m-d H:i:s'));
$this->db->set('created_by', __session('user_id'));
$query_string = $this->db->get_compiled_insert('students');
$query_string = str_replace('INSERT INTO', 'INSERT IGNORE INTO', $query_string);
$this->db->query($query_string);
}
$this->vars['status'] = 'success';
$this->vars['message'] = 'Data alumni sudah tersimpan';
$this->output
->set_content_type('application/json', 'utf-8')
->set_output(json_encode($this->vars, self::REQUIRED_FLAGS))
->_display();
exit;
}
}
}