[ Avaa Bypassed ]




Upload:

Command:

www-data@18.216.67.249: ~ $
<?php

defined('BASEPATH') OR exit('No direct script access allowed');

/* * *****************Admission.php**********************************
 * @product name    : University Management System Express
 * @type            : Class
 * @class name      : Admission
 * @description     : Manage admission admission imformation of the school.  
 * @author          : Farid Ahmed, Webmaster, BDU 	
 * @url             : https://bdu.ac.bd/      
 * @support         : farid0001@bdu.ac.bd	
 * @copyright       : BDU ICT Team	 	
 * ********************************************************** */

class Admission extends MY_Controller {

    public $data = array();

    function __construct() {
        parent::__construct();      
        
        $this->load->model('Admission_Model', 'admission', true);            
    }

    
    
    /*****************Function index**********************************
    * @type            : Function
    * @function name   : index
    * @description     : Load "Admission Admission List" user interface                 
    *                    with class wise listing    
    * @param           : $id integer value
    * @return          : null 
    * ********************************************************** */
    public function index($class_id = null) {

        check_permission(VIEW);
        
        if(isset($class_id) && !is_numeric($class_id)){
            error($this->lang->line('unexpected_error'));
            redirect('student/admission/index');
        }
        
        // for super admin 
        $school_id = '';
        if($_POST){
            
            $school_id = $this->input->post('school_id');
            $class_id  = $this->input->post('class_id');           
        }
        
        $this->data['class_id'] = $class_id;
        $this->data['filter_class_id'] = $class_id;
        $this->data['filter_school_id'] = $school_id;
                
        $this->data['admissions'] = $this->admission->get_admission_list($class_id, $school_id);
        $this->data['roles'] = $this->admission->get_list('roles', array('status' => 1), '', '', '', 'id', 'ASC');
        
        
        $condition = array();
        $condition['status'] = 1;        
        if($this->session->userdata('role_id') != SUPER_ADMIN){            
            $condition['school_id'] = $this->session->userdata('school_id');
            $this->data['classes'] = $this->admission->get_list('classes', $condition, '','', '', 'id', 'ASC');
            $this->data['guardians'] = $this->admission->get_list('guardians', $condition, '','', '', 'id', 'ASC');
            $this->data['class_list'] = $this->admission->get_list('classes', $condition, '','', '', 'id', 'ASC');
        }
        
        $this->data['schools'] = $this->schools;
        $this->data['list'] = TRUE;
        $this->layout->title($this->lang->line('online_admission') . ' | ' . SMS);
        $this->layout->view('admission/index', $this->data);
    }

 
    /*****************Function approved**********************************
    * @type            : Function
    * @function name   : approved
    * @description     : Load Update "Admission admission" user interface                 
    *                    with populate "Admission" value 
    *                    and process to update "Admission" into database    
    * @param           : $id integer value
    * @return          : null 
    * ********************************************************** */
    public function approve($id = null) {

        check_permission(EDIT);

        if(!is_numeric($id)){
            error($this->lang->line('unexpected_error'));
            redirect('student/admission/index');     
        }
                
        if ($_POST) {
            
            // need to check school subscription status
            if($this->session->userdata('role_id') != SUPER_ADMIN){                 
                if(!check_saas_status($this->session->userdata('school_id'), 'student')){                        
                  redirect('dashboard/index');
                }
            }
            
            $this->_prepare_admission_validation();
            if ($this->form_validation->run() === TRUE) {
                $data = $this->_get_posted_admission_data();
                
                $insert_id = $this->admission->insert('students', $data);

                if ($insert_id) {          
                    
                    // insert enrollment data
                    $this->__insert_enrollment($insert_id);
                    // need to upodate admission status
                    $this->admission->update('admissions', array('status'=>3, 'modified_at'=>date('Y-m-d H:i:s') ), array('id'=>$this->input->post('id')));               
                    
                    success($this->lang->line('update_success'));
                    redirect('student/index/'.$this->input->post('class_id'));
                } else {
                    error($this->lang->line('insert_failed'));
                    redirect('admission/approved/' . $this->input->post('id'));
                }
            } else {
                error($this->lang->line('insert_failed'));
                $this->data['admission'] = $this->admission->get_single_admission($this->input->post('id'));
            }
        }

        
        
        if ($id) {            
            
            $this->data['admission'] = $this->admission->get_single('admissions', array('id'=>$id)); 

            if ((!$this->data['admission']) || ($this->data['admission']->status == 3)) {
                redirect('student/admission/index');
            }
        }
      
        $class_id = $this->data['admission']->class_id;
        if(!$class_id){
          $class_id = $this->input->post('class_id');
        } 

        $school = $this->admission->get_school_by_id($this->data['admission']->school_id);
        
        $this->data['class_id'] = $class_id;
        $this->data['admissions'] = $this->admission->get_admission_list($class_id, $school->id);
        $this->data['roles'] = $this->admission->get_list('roles', array('status' => 1), '', '', '', 'id', 'ASC');
        
    
        $condition = array();
        $condition['status'] = 1;        
        $condition['school_id'] = $this->data['admission']->school_id;            
       
        
        $this->data['discounts'] = $this->admission->get_list('discounts', $condition, '','', '', 'id', 'ASC');
        $this->data['classes'] = $this->admission->get_list('classes', $condition, '','', '', 'id', 'ASC');
        $this->data['class_list'] = $this->admission->get_list('classes', $condition, '','', '', 'id', 'ASC');
        $this->data['types']      = $this->admission->get_list('student_types', $condition, '','', '', 'id', 'ASC'); 
        $this->data['academic_years'] = $this->admission->get_list('academic_years', $condition, '','', '', 'id', 'ASC');
        
        $this->data['school_id'] = $this->data['admission']->school_id;
        $this->data['filter_school_id'] = $this->data['admission']->school_id;
        
        $this->data['schools'] = $this->schools;
        $this->data['edit'] = TRUE;
        $this->layout->title($this->lang->line('approve') . ' | ' . SMS);
        $this->layout->view('admission/index', $this->data);
    }


    
     /*****************Function get_single_admission**********************************
     * @type            : Function
     * @function name   : get_single_admission
     * @description     : "Load single admission information" from database                  
     *                    to the user interface   
     * @param           : null
     * @return          : null 
     * ********************************************************** */
    public function get_single_admission(){
        
        $admission_id = $this->input->post('admission_id');        
        $this->data['admission'] = $this->admission->get_single_admission($admission_id);          
        echo $this->load->view('admission/get-single-admission', $this->data);
    }
    
    /*****************Function waiting**********************************
     * @type            : Function
     * @function name   : waiting
     * @description     : "update admission status" from database                  
     *                    to the user interface   
     * @param           : null
     * @return          : null 
     * ********************************************************** */
    public function waiting($admission_id){
        
        if(!is_numeric($admission_id)){
            error($this->lang->line('unexpected_error'));
            redirect('student/admission/index');     
        }
        
        $status = $this->admission->update('admissions', array('status'=>1, 'modified_at'=>date('Y-m-d H:i:s') ), array('id'=>$admission_id));               
        $admission = $this->admission->get_single('admissions', array('id' => $admission_id));
        
        if($status){
            success($this->lang->line('update_success'));
        }else{
            error($this->lang->line('update_failed'));
        }
         redirect('student/admission/index/'.$admission->class_id); 
    }
    
    /*****************Function decline**********************************
     * @type            : Function
     * @function name   : decline
     * @description     : "update admission status" from database                  
     *                    to the user interface   
     * @param           : null
     * @return          : null 
     * ********************************************************** */
    public function decline($admission_id){
        
        if(!is_numeric($admission_id)){
            error($this->lang->line('unexpected_error'));
            redirect('student/admission/index');     
        }
        
        $admission = $this->admission->get_single('admissions', array('id' => $admission_id));
        $status = $this->admission->update('admissions', array('status'=>2, 'modified_at'=>date('Y-m-d H:i:s') ), array('id'=>$admission_id));               
        
        if($status){
            success($this->lang->line('update_success'));
        }else{
            error($this->lang->line('update_failed'));
        }
        redirect('student/admission/index/'.$admission->class_id.'/'.$admission->school_id);    
    }
    
    
        
    /*****************Function _prepare_admission_validation**********************************
    * @type            : Function
    * @function name   : _prepare_admission_validation
    * @description     : Process "Admission" user input data validation                 
    *                       
    * @param           : null
    * @return          : null 
    * ********************************************************** */
    private function _prepare_admission_validation() {
        
        $this->load->library('form_validation');
        $this->form_validation->set_error_delimiters('<div class="error-message" style="color: red;">', '</div>');

        $this->form_validation->set_rules('school_id', $this->lang->line('school_name'), 'trim|required');
        $this->form_validation->set_rules('academic_year_id', $this->lang->line('academic_year_id'), 'trim|required');
        $this->form_validation->set_rules('type_id', $this->lang->line('student_type'), 'trim');
        
        $this->form_validation->set_rules('username', $this->lang->line('username'), 'trim|required|callback_username');
        $this->form_validation->set_rules('password', $this->lang->line('password'), 'trim|required|min_length[6]|max_length[20]');
        $this->form_validation->set_rules('class_id', $this->lang->line('class'), 'trim|required');
        $this->form_validation->set_rules('roll_no', $this->lang->line('roll_no'), 'trim|required'); 

        $this->form_validation->set_rules('email', $this->lang->line('email'), 'trim|valid_email');
        
        $this->form_validation->set_rules('admission_no', $this->lang->line('admission_no'), 'trim|required');
        $this->form_validation->set_rules('admission_date', $this->lang->line('admission_date'), 'trim|required');
        $this->form_validation->set_rules('section_id', $this->lang->line('section'), 'trim|required');

        //$this->form_validation->set_rules('guardian_id', $this->lang->line('guardian'), 'trim|required');
        
        $this->form_validation->set_rules('registration_no', $this->lang->line('registration_no'), 'trim');
        $this->form_validation->set_rules('group', $this->lang->line('group'), 'trim');
        $this->form_validation->set_rules('name', $this->lang->line('name'), 'trim|required');
        $this->form_validation->set_rules('phone', $this->lang->line('phone'), 'trim|required|min_length[6]|max_length[20]');
        $this->form_validation->set_rules('dob', $this->lang->line('birth_date'), 'trim|required');
        $this->form_validation->set_rules('gender', $this->lang->line('gender'), 'trim|required');
        $this->form_validation->set_rules('blood_group', $this->lang->line('blood_group'), 'trim');
        $this->form_validation->set_rules('present_address', $this->lang->line('present_address'), 'trim');
        $this->form_validation->set_rules('permanent_address', $this->lang->line('permanent_address'), 'trim');
        $this->form_validation->set_rules('religion', $this->lang->line('religion'), 'trim');
        $this->form_validation->set_rules('other_info', $this->lang->line('other_info'), 'trim');
        $this->form_validation->set_rules('photo', $this->lang->line('photo'), 'trim|callback_photo');
                
        // guardian fields
        $this->form_validation->set_rules('guardian_name', $this->lang->line('guardian_name'), 'trim|required');
        $this->form_validation->set_rules('guardian_phone', $this->lang->line('guardian_phone'), 'trim|required');
        
    }
                        
    /*****************Function username**********************************
    * @type            : Function
    * @function name   : username
    * @description     : Unique check for "Admission username" data/value                  
    *                       
    * @param           : null
    * @return          : boolean true/false 
    * ********************************************************** */ 
    public function username() {
        
        $username = $this->admission->duplicate_check($this->input->post('username'));
        if ($username) {
            $this->form_validation->set_message('username', $this->lang->line('already_exist'));
            return FALSE;
        } else {
            if(preg_match('/^[a-zA-Z0-9_]{4,30}$/', $this->input->post('username'))){
                return TRUE;
            }else{                  
                $this->form_validation->set_message('username', $this->lang->line('username_only')); 
                return FALSE;
            }
        }       
    }
                
    /*****************Function photo**********************************
    * @type            : Function
    * @function name   : photo
    * @description     : validate admission profile photo                 
    *                       
    * @param           : null
    * @return          : boolean true/false 
    * ********************************************************** */
    public function photo() {
        if ($_FILES['photo']['name']) {
            
            list($width, $height) = getimagesize($_FILES['photo']['tmp_name']);
            if((!empty($width)) && $width > 120 || $height > 130){
                $this->form_validation->set_message('photo', $this->lang->line('please_check_image_dimension'));
                return FALSE;
            }
            
            $name = $_FILES['photo']['name'];
            $arr = explode('.', $name);
            $ext = end($arr);
            if ($ext == 'jpg' || $ext == 'jpeg' || $ext == 'png' || $ext == 'gif') {
                return TRUE;
            } else {
                $this->form_validation->set_message('photo', $this->lang->line('select_valid_file_format'));
                return FALSE;
            }
        }
    }

       
    /*****************Function _get_posted_admission_data**********************************
    * @type            : Function
    * @function name   : _get_posted_admission_data
    * @description     : Prepare "Admission" user input data to save into database                  
    *                       
    * @param           : null
    * @return          : $data array(); value 
    * ********************************************************** */
    private function _get_posted_admission_data() {

        $items = array();

        $items[] = 'school_id';
        $items[] = 'type_id';
        $items[] = 'admission_no';       
        $items[] = 'national_id';
        $items[] = 'registration_no';
        $items[] = 'group';
        $items[] = 'name';
        $items[] = 'phone';
        $items[] = 'email';
        $items[] = 'gender';
        $items[] = 'blood_group';
        $items[] = 'present_address';
        $items[] = 'permanent_address';
        $items[] = 'religion';
        $items[] = 'caste';
        $items[] = 'discount_id';
        $items[] = 'second_language';
        $items[] = 'previous_school';
        $items[] = 'previous_class';
        $items[] = 'father_name';
        $items[] = 'father_phone';
        $items[] = 'father_education';
        $items[] = 'father_profession';
        $items[] = 'father_designation';
        $items[] = 'mother_name';
        $items[] = 'mother_phone';
        $items[] = 'mother_education';
        $items[] = 'mother_profession';
        $items[] = 'mother_designation';
        $items[] = 'health_condition';
        $items[] = 'other_info';

        $data = elements($items, $_POST);

        $data['relation_with'] = strtolower($this->input->post('gud_relation'));
        $data['dob'] = date('Y-m-d', strtotime($this->input->post('dob')));
        $data['admission_date'] = date('Y-m-d', strtotime($this->input->post('admission_date')));
        $data['age'] = floor((time() - strtotime($data['dob'])) / 31556926);

       
        $data['created_at'] = date('Y-m-d H:i:s');
        $data['created_by'] = logged_in_user_id();
        $data['status'] = 1;
        
        // create guardian if not exist
        if($this->input->post('guardian_id')){
            $data['guardian_id'] = $this->input->post('guardian_id');
        }else{
            
            $info = array();
            $guardian = array();    
                        
            $info['name']     =  $this->input->post('guardian_name');
            $info['role_id']  = GUARDIAN;
            $info['username'] = $this->admission->get_custom_id('users', 'GUD');
            $info['password'] = get_random_tring(6);
            $info['email'] = $this->input->post('gud_email');
            $info['phone'] = $this->input->post('guardian_phone');            
            // now creating guardian user
            $guardian['user_id'] = $this->admission->create_custom_user($info);     
            
            // create guardian....
            $guardian['school_id']   = $data['school_id'];
            $guardian['national_id'] = $this->input->post('gud_national_id');
            $guardian['name']        = $this->input->post('guardian_name');
            $guardian['phone']   = $this->input->post('guardian_phone');
            $guardian['email']   = $this->input->post('gud_email');
            $guardian['profession']   = $this->input->post('gud_profession');
            $guardian['present_address']   = $this->input->post('gud_present_address');
            $guardian['permanent_address']   = $this->input->post('gud_permanent_address');
            $guardian['religion']   = $this->input->post('gud_religion');
            $guardian['created_at'] = date('Y-m-d H:i:s');
            $guardian['created_by'] = logged_in_user_id();
            $guardian['status'] = 1;
            $data['guardian_id'] = $this->admission->insert('guardians', $guardian);
            
        }
        
        // create student user 
        $data['user_id'] = $this->admission->create_user();       
        
        $data['photo'] = $this->_upload_photo();
       

        return $data;
    }

           
    /*****************Function _upload_photo**********************************
    * @type            : Function
    * @function name   : _upload_photo
    * @description     : process to upload admission profile photo in the server                  
    *                     and return photo file name  
    * @param           : null
    * @return          : $return_photo string value 
    * ********************************************************** */
    private function _upload_photo() {
              
        $return_photo = '';
        
        if($_FILES['photo']['name']){            
           
            $photo = $_FILES['photo']['name'];
            $photo_type = $_FILES['photo']['type'];
            if ($photo != "") {
                if ($photo_type == 'image/jpeg' || $photo_type == 'image/pjpeg' ||
                        $photo_type == 'image/jpg' || $photo_type == 'image/png' ||
                        $photo_type == 'image/x-png' || $photo_type == 'image/gif') {

                    $destination = 'assets/uploads/student-photo/';

                    $file_type = explode(".", $photo);
                    $extension = strtolower($file_type[count($file_type) - 1]);
                    $photo_path = 'photo-' . time() . '-sms.' . $extension;

                    move_uploaded_file($_FILES['photo']['tmp_name'], $destination . $photo_path);

                    $return_photo = $photo_path;
                }
            } 
            
        }else{
           
            $student_photo = $this->input->post('prev_photo');  
            if ($student_photo != "") {          

                $destination_1 = 'assets/uploads/admission-photo/';
                $destination_2 = 'assets/uploads/student-photo/';

                copy($destination_1.$student_photo, $destination_2 . $student_photo);
                $return_photo = $student_photo;
            } 
        }

        return $return_photo;
    }
    
    
    /*****************Function delete**********************************
    * @type            : Function
    * @function name   : delete
    * @description     : delete "Admission" data from database                  
    *                     also delete all relational data
    *                     and unlink admission photo from server   
    * @param           : $id integer value
    * @return          : null 
    * ********************************************************** */
    public function delete($id = null) {

        check_permission(DELETE);
        
        if(!is_numeric($id)){
             error($this->lang->line('unexpected_error'));
              redirect('student/admission/index');
        }
        
        $admission = $this->admission->get_single('admissions', array('id' => $id));
        if (!empty($admission)) {

            // delete admission
            $this->admission->delete('admissions', array('id' => $id));

            // delete admission resume and photo
            $destination = 'assets/uploads/';
            if (file_exists($destination . '/admission/' . $admission->photo)) {
                @unlink($destination . '/admission/' . $admission->photo);
            }
            success($this->lang->line('delete_success'));
            
        } else {
            error($this->lang->line('delete_failed'));
        }
        
        redirect('student/admission/index');
    }

        
    /*****************Function __insert_enrollment**********************************
    * @type            : Function
    * @function name   : __insert_enrollment
    * @description     : save admission info to enrollment while create a new admission                  
    * @param           : $insert_id integer value
    * @return          : null 
    * ********************************************************** */
    private function __insert_enrollment($insert_id) {
        $data = array();
        
        $school = $this->admission->get_school_by_id($this->input->post('school_id'));
        
        $data['student_id'] = $insert_id;
        $data['school_id'] = $this->input->post('school_id');
        $data['class_id'] = $this->input->post('class_id');
        $data['section_id'] = $this->input->post('section_id');
        $data['academic_year_id'] = $this->input->post('academic_year_id');
        $data['roll_no'] = $this->input->post('roll_no');
        $data['created_at'] = date('Y-m-d H:i:s');
        $data['created_by'] = logged_in_user_id();
        $data['status'] = 1;
        $this->admission->insert('enrollments', $data);
    }

}

Filemanager

Name Type Size Permission Actions
Activity.php File 13.19 KB 0777
Admission.php File 24.32 KB 0777
Bulk.php File 12.26 KB 0777
Student.php File 49.9 KB 0777
Type.php File 9.71 KB 0777
index.html File 131 B 0777