���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /var/www/html/adimi/application/modules/dashboard/controllers/ |
<?php if (!defined('BASEPATH')) exit('No direct script access allowed'); class Cour_location extends MX_Controller { function __construct() { parent::__construct(); $this->auth->check_user_auth(); $this->load->library('dashboard/lour_location'); $this->load->model('dashboard/Our_location'); } //Default loading for our_location system. public function index() { $this->permission->check_label('our_location')->create()->redirect(); $content = $this->lour_location->our_location_add_form(); $this->template_lib->full_admin_html_view($content); } //Insert our_location public function insert_our_location() { $this->permission->check_label('our_location')->create()->redirect(); $lang_id = $this->input->post('language_id',TRUE); $headlines = $this->input->post('headlines',TRUE); $details = $this->input->post('details',TRUE); $position = $this->input->post('position',TRUE); //Link page add for ($i = 0, $n = count($lang_id); $i < $n; $i++) { $language_id = $lang_id[$i]; $head_line = $headlines[$i]; $detail = $details[$i]; $data = array( 'language_id' => $language_id, 'headline' => $head_line, 'details' => $detail, 'position' => $position, 'status' => '1', ); $pos_res = $this->db->select('*') ->from('our_location') ->where('position', $position) ->where('language_id', $language_id) ->get() ->num_rows(); if ($pos_res > 0) { $this->session->set_userdata(array('error_message' => display('already_exists'))); redirect(base_url('dashboard/Cour_location')); } else { $result = $this->Our_location->our_location_entry($data); } } if ($result == TRUE) { $this->session->set_userdata(array('message' => display('successfully_added'))); if (isset($_POST['add-our_location'])) { redirect(base_url('dashboard/Cour_location/manage_our_location')); } elseif (isset($_POST['add-our_location-another'])) { redirect(base_url('dashboard/Cour_location')); } } else { $this->session->set_userdata(array('error_message' => display('already_exists'))); redirect(base_url('dashboard/Cour_location')); } } //Manage our_location public function manage_our_location() { $this->permission->check_label('our_location')->read()->redirect(); $content =$this->lour_location->our_location_list(); $this->template_lib->full_admin_html_view($content);; } //our_location Update Form public function our_location_update_form($content_id) { $this->permission->check_label('our_location')->update()->redirect(); $content = $this->lour_location->our_location_edit_data($content_id); $this->template_lib->full_admin_html_view($content); } // our_location Update public function our_location_update($position = null) { $this->permission->check_label('our_location')->update()->redirect(); $lang_id = $this->input->post('language_id',TRUE); $headlines = $this->input->post('headlines',TRUE); $details = $this->input->post('details',TRUE); $posi = $this->input->post('position',TRUE); //Link page add for ($i = 0, $n = count($lang_id); $i < $n; $i++) { $language_id = $lang_id[$i]; $head_line = $headlines[$i]; $detail = $details[$i]; $pos_res = $this->db->select('*') ->from('our_location') ->where('position', $posi) ->get() ->num_rows(); if ($pos_res > 0) { $new = array( 'headline' => $head_line, 'details' => $detail, ); $result = $this->Our_location->update_our_location($new, $position, $language_id); } else { $u_pos = array( 'headline' => $head_line, 'details' => $detail, 'position' => $posi, ); $result = $this->Our_location->update_our_location($u_pos, $position, $language_id); } } if ($result == TRUE) { $this->session->set_userdata(array('message' => display('successfully_updated'))); redirect(base_url('dashboard/Cour_location/manage_our_location')); } else { $this->session->set_userdata(array('error_message' => display('position_already_exists'))); redirect(base_url('dashboard/Cour_location/manage_our_location')); } } // our_location Delete public function our_location_delete($position) { $this->permission->check_label('our_location')->delete()->redirect(); $this->Our_location->delete_our_location($position); $this->session->set_userdata(array('message' => display('successfully_delete'))); redirect('dashboard/Cour_location/manage_our_location'); } //Inactive public function inactive($position) { $this->permission->check_label('our_location')->update()->redirect(); $this->db->set('status', 0); $this->db->where('position', $position); $this->db->update('our_location'); $this->session->set_userdata(array('error_message' => display('successfully_inactive'))); redirect(base_url('dashboard/Cour_location/manage_our_location')); } //Active public function active($position) { $this->permission->check_label('our_location')->update()->redirect(); $this->db->set('status', 1); $this->db->where('position', $position); $this->db->update('our_location'); $this->session->set_userdata(array('message' => display('successfully_active'))); redirect(base_url('dashboard/Cour_location/manage_our_location')); } }