Yanz Mini Shell
[_]
[-]
[X]
[
HomeShell 1
] [
HomeShell 2
] [
Upload
] [
Command Shell
] [
Scripting
] [
About
]
[ Directory ] =>
/
home
firstmatrixcoin
public_html
ocean-arc.firstmatrix.co.in
plugins
sparkline
Action
[*]
New File
[*]
New Folder
Sensitive File
[*]
/etc/passwd
[*]
/etc/shadow
[*]
/etc/resolv.conf
[
Delete
] [
Edit
] [
Rename
] [
Back
]
<?php //not working if (!defined('BASEPATH')) { exit('No direct script access allowed'); } class Student_model extends MY_Model { public function __construct() { parent::__construct(); } // moderator student all information public function save($data = array(), $getBranch = array()) { $hostelID = empty($data['hostel_id']) ? 0 : $data['hostel_id']; $roomID = empty($data['room_id']) ? 0 : $data['room_id']; $previous_details = array( 'school_name' => $this->input->post('school_name'), 'qualification' => $this->input->post('qualification'), 'remarks' => $this->input->post('previous_remarks'), ); if (empty($previous_details)) { $previous_details = ""; } else { $previous_details = json_encode($previous_details); } $inser_data1 = array( 'register_no' => $this->input->post('register_no'), 'admission_date' => (isset($data['admission_date']) ? date("Y-m-d", strtotime($data['admission_date'])) : ""), 'first_name' => $this->input->post('first_name'), 'last_name' => $this->input->post('last_name'), 'gender' => $this->input->post('gender'), 'birthday' => (isset($data['birthday']) ? date("Y-m-d", strtotime($data['birthday'])) : ""), 'religion' => $this->input->post('religion'), 'caste' => $this->input->post('caste'), 'blood_group' => $this->input->post('blood_group'), 'mother_tongue' => $this->input->post('mother_tongue'), 'current_address' => $this->input->post('current_address'), 'permanent_address' => $this->input->post('permanent_address'), 'city' => $this->input->post('city'), 'state' => $this->input->post('state'), 'mobileno' => $this->input->post('mobileno'), 'category_id' => (isset($data['category_id']) ? $data['category_id'] : 0), 'email' => $this->input->post('email'), 'parent_id' => $this->input->post('parent_id'), 'route_id' => (empty($this->input->post('route_id')) ? 0 : $this->input->post('route_id')), 'vehicle_id' => (empty($this->input->post('vehicle_id')) ? 0 : $this->input->post('vehicle_id')), 'hostel_id' => $hostelID, 'room_id' => $roomID, 'previous_details' => $previous_details, 'photo' => $this->uploadImage('student'), ); // moderator guardian all information if (!isset($data['student_id']) && empty($data['student_id'])) { if (!isset($data['guardian_chk'])) { // add new guardian all information in db if (!empty($data['grd_name']) || !empty($data['father_name'])) { $arrayParent = array( 'name' => $this->input->post('grd_name'), 'relation' => $this->input->post('grd_relation'), 'father_name' => $this->input->post('father_name'), 'mother_name' => $this->input->post('mother_name'), 'occupation' => $this->input->post('grd_occupation'), 'income' => $this->input->post('grd_income'), 'education' => $this->input->post('grd_education'), 'email' => $this->input->post('grd_email'), 'mobileno' => $this->input->post('grd_mobileno'), 'address' => $this->input->post('grd_address'), 'city' => $this->input->post('grd_city'), 'state' => $this->input->post('grd_state'), 'branch_id' => $this->application_model->get_branch_id(), 'photo' => $this->uploadImage('parent', 'guardian_photo'), ); $this->db->insert('parent', $arrayParent); $parentID = $this->db->insert_id(); // save guardian login credential information in the database if ($getBranch['grd_generate'] == 1) { $grd_username = $getBranch['grd_username_prefix'] . $parentID; $grd_password = $getBranch['grd_default_password']; } else { $grd_username = $data['grd_username']; $grd_password = $data['grd_password']; } $parent_credential = array( 'username' => $grd_username, 'role' => 6, 'user_id' => $parentID, 'password' => $this->app_lib->pass_hashed($grd_password), ); $this->db->insert('login_credential', $parent_credential); } else { $parentID = 0; } } else { $parentID = $data['parent_id']; } $inser_data1['parent_id'] = $parentID; // insert student all information in the database $this->db->insert('student', $inser_data1); $student_id = $this->db->insert_id(); // save student login credential information in the database if ($getBranch['stu_generate'] == 1) { $stu_username = $getBranch['stu_username_prefix'] . $student_id; $stu_password = $getBranch['stu_default_password']; } else { $stu_username = $data['username']; $stu_password = $data['password']; } $inser_data2 = array( 'user_id' => $student_id, 'username' => $stu_username, 'role' => 7, 'password' => $this->app_lib->pass_hashed($stu_password), ); $this->db->insert('login_credential', $inser_data2); // return student information $studentData = array( 'student_id' => $student_id, 'email' => $this->input->post('email'), 'username' => $stu_username, 'password' => $stu_password, ); if (!empty($data['grd_name']) || !empty($data['father_name'])) { // send parent account activate email $emailData = array( 'name' => $this->input->post('grd_name'), 'username' => $grd_username, 'password' => $grd_password, 'user_role' => 6, 'email' => $this->input->post('grd_email'), ); $this->email_model->sentStaffRegisteredAccount($emailData); } return $studentData; } else { // update student all information in the database $inser_data1['parent_id'] = $data['parent_id']; $this->db->where('id', $data['student_id']); $this->db->update('student', $inser_data1); // update login credential information in the database $this->db->where('user_id', $data['student_id']); $this->db->where('role', 7); $this->db->update('login_credential', array('username' => $data['username'])); } } public function csvImport($row = array(), $classID = '', $sectionID = '', $branchID = '') { // getting existing father data if ($row['GuardianUsername'] !== '') { $getParent = $this->db->select('parent.id') ->from('login_credential')->join('parent', 'parent.id = login_credential.user_id', 'left') ->where(array('parent.branch_id' => $branchID, 'login_credential.username' => $row['GuardianUsername'])) ->get()->row_array(); } // getting branch settings $getSettings = $this->db->select('*') ->where('id', $branchID) ->from('branch') ->get()->row_array(); if (isset($getParent) && count($getParent)) { $parentID = $getParent['id']; } else { // add new guardian all information in db $arrayParent = array( 'name' => $row['GuardianName'], 'relation' => $row['GuardianRelation'], 'father_name' => $row['FatherName'], 'mother_name' => $row['MotherName'], 'occupation' => $row['GuardianOccupation'], 'mobileno' => $row['GuardianMobileNo'], 'address' => $row['GuardianAddress'], 'email' => $row['GuardianEmail'], 'branch_id' => $branchID, 'photo' => 'defualt.png', ); $this->db->insert('parent', $arrayParent); $parentID = $this->db->insert_id(); // save guardian login credential information in the database if ($getSettings['grd_generate'] == 1) { $grd_username = $getSettings['grd_username_prefix'] . $parentID; $grd_password = $getSettings['grd_default_password']; } else { $grd_username = $row['GuardianUsername']; $grd_password = $row['GuardianPassword']; } $parent_credential = array( 'username' => $grd_username, 'role' => 6, 'user_id' => $parentID, 'password' => $this->app_lib->pass_hashed($grd_password), ); $this->db->insert('login_credential', $parent_credential); } $inser_data1 = array( 'first_name' => $row['FirstName'], 'last_name' => $row['LastName'], 'blood_group' => $row['BloodGroup'], 'gender' => $row['Gender'], 'birthday' => date("Y-m-d", strtotime($row['Birthday'])), 'mother_tongue' => $row['MotherTongue'], 'religion' => $row['Religion'], 'parent_id' => $parentID, 'caste' => $row['Caste'], 'mobileno' => $row['Phone'], 'city' => $row['City'], 'state' => $row['State'], 'current_address' => $row['PresentAddress'], 'permanent_address' => $row['PermanentAddress'], 'category_id' => $row['CategoryID'], 'admission_date' => date("Y-m-d", strtotime($row['AdmissionDate'])), 'register_no' => $row['RegisterNo'], 'photo' => 'defualt.png', 'email' => $row['StudentEmail'], ); //save all student information in the database file $this->db->insert('student', $inser_data1); $studentID = $this->db->insert_id(); // save student login credential information in the database if ($getSettings['stu_generate'] == 1) { $stu_username = $getSettings['stu_username_prefix'] . $studentID; $stu_password = $getSettings['stu_default_password']; } else { $stu_username = $row['StudentUsername']; $stu_password = $row['StudentPassword']; } //save student login credential $inser_data2 = array( 'username' => $stu_username, 'role' => 7, 'user_id' => $studentID, 'password' => $this->app_lib->pass_hashed($stu_password), ); $this->db->insert('login_credential', $inser_data2); //save student enroll information in the database file $arrayEnroll = array( 'student_id' => $studentID, 'class_id' => $classID, 'section_id' => $sectionID, 'branch_id' => $branchID, 'roll' => $row['Roll'], 'session_id' => get_session_id(), ); $this->db->insert('enroll', $arrayEnroll); } public function getFeeProgress($id) { $this->db->select('IFNULL(SUM(gd.amount), 0) as totalfees,IFNULL(SUM(p.amount), 0) as totalpay,IFNULL(SUM(p.discount),0) as totaldiscount'); $this->db->from('fee_allocation as a'); $this->db->join('fee_groups_details as gd', 'gd.fee_groups_id = a.group_id', 'inner'); $this->db->join('fee_payment_history as p', 'p.allocation_id = a.id and p.type_id = gd.fee_type_id', 'left'); $this->db->where('a.student_id', $id); $this->db->where('a.session_id', get_session_id()); $r = $this->db->get()->row_array(); $total_amount = floatval($r['totalfees']); $total_paid = floatval($r['totalpay'] + $r['totaldiscount']); if ($total_paid != 0) { $percentage = ($total_paid / $total_amount) * 100; return number_format($percentage); } else { return 0; } } public function getStudentList($classID = '', $sectionID = '', $branchID = '', $deactivate = false, $start = '', $end = '') { $this->db->select('e.*,s.photo, CONCAT_WS(" ", s.first_name, s.last_name) as fullname,s.register_no,s.gender,s.admission_date,s.parent_id,s.email,s.blood_group,s.birthday,l.active,c.name as class_name,se.name as section_name'); $this->db->from('enroll as e'); $this->db->join('student as s', 'e.student_id = s.id', 'inner'); $this->db->join('login_credential as l', 'l.user_id = s.id and l.role = 7', 'inner'); $this->db->join('class as c', 'e.class_id = c.id', 'left'); $this->db->join('section as se', 'e.section_id=se.id', 'left'); if (!empty($classID)) { $this->db->where('e.class_id', $classID); } if (!empty($start) && !empty($end)) { $this->db->where('s.admission_date >=', $start); $this->db->where('s.admission_date <=', $end); } $this->db->where('e.branch_id', $branchID); $this->db->where('e.session_id', get_session_id()); $this->db->order_by('s.id', 'ASC'); if ($sectionID != 'all' && !empty($sectionID)) { $this->db->where('e.section_id', $sectionID); } if ($deactivate == true) { $this->db->where('l.active', 0); } return $this->db->get(); } public function getSearchStudentList($search_text) { $this->db->select('e.*,s.photo,s.first_name,s.last_name,s.register_no,s.parent_id,s.email,s.blood_group,s.birthday,c.name as class_name,se.name as section_name,sp.name as parent_name'); $this->db->from('enroll as e'); $this->db->join('student as s', 'e.student_id = s.id', 'left'); $this->db->join('class as c', 'e.class_id = c.id', 'left'); $this->db->join('section as se', 'e.section_id=se.id', 'left'); $this->db->join('parent as sp', 'sp.id = s.parent_id', 'left'); $this->db->where('e.session_id', get_session_id()); if (!is_superadmin_loggedin()) { $this->db->where('e.branch_id', get_loggedin_branch_id()); } $this->db->group_start(); $this->db->like('s.first_name', $search_text); $this->db->or_like('s.last_name', $search_text); $this->db->or_like('s.register_no', $search_text); $this->db->or_like('s.email', $search_text); $this->db->or_like('e.roll', $search_text); $this->db->or_like('s.blood_group', $search_text); $this->db->or_like('sp.name', $search_text); $this->db->group_end(); $this->db->order_by('s.id', 'desc'); return $this->db->get(); } public function getSingleStudent($id = '') { $this->db->select('s.*,l.username,l.active,e.class_id,e.section_id,e.id as enrollid,e.roll,e.branch_id,e.session_id,c.name as class_name,se.name as section_name,sc.name as category_name'); $this->db->from('enroll as e'); $this->db->join('student as s', 'e.student_id = s.id', 'left'); $this->db->join('login_credential as l', 'l.user_id = s.id and l.role = 7', 'inner'); $this->db->join('class as c', 'e.class_id = c.id', 'left'); $this->db->join('section as se', 'e.section_id = se.id', 'left'); $this->db->join('student_category as sc', 's.category_id=sc.id', 'left'); $this->db->where('s.id', $id); $this->db->where('e.session_id', get_session_id()); if (!is_superadmin_loggedin()) { $this->db->where('e.branch_id', get_loggedin_branch_id()); } $query = $this->db->get(); if ($query->num_rows() == 0) { show_404(); } return $query->row_array(); } public function regSerNumber($school_id = '') { $registerNoPrefix = ''; if (!empty($school_id)) { $schoolconfig = $this->db->select('reg_prefix_enable,reg_start_from,institution_code,reg_prefix_digit')->where(array('id' => $school_id))->get('branch')->row(); if ($schoolconfig->reg_prefix_enable == 1) { $registerNoPrefix = $schoolconfig->institution_code . $schoolconfig->reg_start_from; $last_registerNo = $this->app_lib->studentLastRegID($school_id); if (!empty($last_registerNo)) { $last_registerNo_digit = str_replace($schoolconfig->institution_code, "", $last_registerNo->register_no); if (!is_numeric($last_registerNo_digit)) { $last_registerNo_digit = $schoolconfig->reg_start_from; } else { $last_registerNo_digit = $last_registerNo_digit + 1; } $registerNoPrefix = $schoolconfig->institution_code . sprintf("%0" . $schoolconfig->reg_prefix_digit . "d", $last_registerNo_digit); } else { $registerNoPrefix = $schoolconfig->institution_code . sprintf("%0" . $schoolconfig->reg_prefix_digit . "d", $schoolconfig->reg_start_from); } } return $registerNoPrefix; } else { $config = $this->db->select('institution_code,reg_prefix')->where(array('id' => 1))->get('global_settings')->row(); if ($config->reg_prefix == 'on') { $prefix = $config->institution_code; } $result = $this->db->select("max(id) as id")->get('student')->row_array(); $id = $result["id"]; if (!empty($id)) { $maxNum = str_pad($id + 1, 5, '0', STR_PAD_LEFT); } else { $maxNum = '00001'; } return ($prefix . $maxNum); } } public function getDisableReason($student_id='') { $this->db->select("rd.*,disable_reason.name as reason"); $this->db->from('disable_reason_details as rd'); $this->db->join('disable_reason', 'disable_reason.id = rd.reason_id', 'left'); $this->db->where('student_id', $student_id); $this->db->order_by('rd.id', 'DESC'); $this->db->limit(1); $row = $this->db->get()->row(); return $row; } // Fees Modal Multi Import Starts Here public function MulticsvImport($row = array(), $classID = '', $sectionID = '', $branchID = '',$groupID='', $feesTypeID = '') { // getting branch settings $getSettings = $this->db->select('*') ->where('id', $branchID) ->from('branch') ->get()->row_array(); // Get Student ID Starts Here // $this->db->select("id"); // $this->db->where('register_no', $row['RegisterNo']); // $this->db->limit(1); // $row_student_id = $this->db->get('student')->row(); // $student_id = $row_student_id->id; // stephen starts $this->db->select('s.register_no, e.roll'); $this->db->from('student s'); $this->db->join('enroll e', 'e.student_id = s.id', 'left'); $this->db->where('e.roll', $row['Roll']); $this->db->limit(1); $row_student_data = $this->db->get()->row(); $student_id = $row_student_data->id; $student_roll = $row_student_data->roll; // stephen ends // Get Student ID Endsss Here // Group & Type Insert Here /*1) Type Select 2) Group Insert 3) Group Details Insert 4) Allocation Insert 5) Payment History Insert*/ $fees_type_id = $feesTypeID; $session_id = get_session_id(); // 1) Groups - Starts Here $group_name = $student_roll; $inser_data1 = array( 'name' => $group_name, 'description' => $row['FeesAmount'], 'type' => 2, 'session_id' => $session_id, 'branch_id' => $branchID ); $this->db->insert('fee_groups', $inser_data1); $groupID = $this->db->insert_id(); // 1) Groups - Endsss Here // 2) Groups Details - Starts Here $inser_data2 = array( 'fee_groups_id' => $groupID, 'fee_type_id' => $fees_type_id, 'amount' => $row['FeesAmount'], 'due_date' => $row['DueDate'] ); $this->db->insert('fee_groups_details', $inser_data2); $groupDetailsID = $this->db->insert_id(); // 2) Groups Details - Endsss Here // 3) Fees Allocation - Starts Here $inser_data3 = array( 'group_id' => $groupID, 'branch_id' => $branchID, 'student_id' => $student_id, 'session_id' => $session_id ); $this->db->insert('fee_allocation', $inser_data3); // Get the last executed query $last_query = $this->db->last_query(); $feesallocationID = $this->db->insert_id(); // 3) Fees Allocation - Endsss Here // stephen starts // if (isset($_POST['save'])) { // $student_array = $this->input->post('stu_operations'); // $student_ids = $this->input->post('student_ids'); // $student_sel_array = isset($student_array) ? $student_array : array(); // $delStudent = array_diff($student_ids, $student_sel_array); // $fee_groupID = $this->input->post('fee_group_id'); // foreach ($student_array as $key => $value) { // $arrayData = array( // 'student_id' => $value, // 'group_id' => $fee_groupID, // 'session_id' => get_session_id(), // 'branch_id' => $branchID, // ); // $this->db->where($arrayData); // $q = $this->db->get('fee_allocation'); // if ($q->num_rows() == 0) { // $this->db->insert('fee_allocation', $arrayData); // } // } // if (!empty($delStudent)) { // $this->db->where_in('student_id', $delStudent); // $this->db->where('group_id', $fee_groupID); // $this->db->where('session_id', get_session_id()); // $this->db->delete('fee_allocation'); // } // set_alert('success', translate('information_has_been_saved_successfully')); // redirect(base_url('fees/allocation')); // } // stephen ends // 4) Payment History - Starts Here // /*$inser_data4 = array( // 'allocation_id' => $feesallocationID, // 'type_id' => $fees_type_id, // 'collect_by' => $session_id, // 'amount' => $row['FeesAmount'] // ); // $this->db->insert('fee_payment_history', $inser_data3); // $paymenthistory_ID = $this->db->insert_id();*/ // 3) Payment History - Endsss Here } // Fess Modal Multi Import Endsss Here }
Free Space : 12276154368 Byte