load->helper(array('form', 'url')); $this->load->model('user_model'); if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } } // Default /options view just gives some text to explain the options area function index() { //echo $this->config->item('option_theme'); //echo $this->optionslib->get_option('theme'); $data['page_title'] = "Cloudlog Options"; $this->load->view('interface_assets/header', $data); $this->load->view('options/index'); $this->load->view('interface_assets/footer'); } // function used to display the /appearance url function appearance() { // Get Language Options $directory = 'application/language'; $data['language_options'] = array_diff(scandir($directory), array('..', '.')); $data['page_title'] = "Cloudlog Options"; $data['sub_heading'] = "Appearance"; $this->load->model('Themes_model'); $data['themes'] = $this->Themes_model->getThemes(); $this->load->view('interface_assets/header', $data); $this->load->view('options/appearance'); $this->load->view('interface_assets/footer'); } // Handles saving the appreance options to the options system. function appearance_save() { // Get Language Options $directory = 'application/language'; $data['language_options'] = array_diff(scandir($directory), array('..', '.')); $data['page_title'] = "Cloudlog Options"; $data['sub_heading'] = "Appearance"; $this->load->helper(array('form', 'url')); $this->load->library('form_validation'); $this->form_validation->set_rules('theme', 'theme', 'required'); if ($this->form_validation->run() == FALSE) { $this->load->view('interface_assets/header', $data); $this->load->view('options/appearance'); $this->load->view('interface_assets/footer'); } else { // Update theme choice within the options system $theme_update_status = $this->optionslib->update('theme', $this->input->post('theme'), 'yes'); // If theme update is complete set a flashsession with a success note if($theme_update_status == TRUE) { $this->session->set_flashdata('success', 'Theme changed to '.$this->input->post('theme')); } // Update theme choice within the options system $search_update_status = $this->optionslib->update('global_search', $this->input->post('globalSearch')); // If theme update is complete set a flashsession with a success note if($search_update_status == TRUE) { $this->session->set_flashdata('success', 'Global Search changed to '.$this->input->post('globalSearch')); } // Update dashboard banner within the options system $dasboard_banner_update_status = $this->optionslib->update('dashboard_banner', $this->input->post('dashboardBanner'), 'yes'); // If dashboard banner update is complete set a flashsession with a success note if($dasboard_banner_update_status == TRUE) { $this->session->set_flashdata('success', 'Dashboard banner changed to '.$this->input->post('dashboardBanner')); } // Update dashboard map within the options system $dashboard_map_update_status = $this->optionslib->update('dashboard_map', $this->input->post('dashboardMap'), 'yes'); // If dashboard map update is complete set a flashsession with a success note if($ldashboard_map_update_status == TRUE) { $this->session->set_flashdata('success', 'Dashboard map changed to '.$this->input->post('dashboardMap')); } // Update logbook map within the options system $logbook_map_update_status = $this->optionslib->update('logbook_map', $this->input->post('logbookMap'), 'yes'); // If logbook map update is complete set a flashsession with a success note if($logbook_map_update_status == TRUE) { $this->session->set_flashdata('success', 'Logbook map changed to '.$this->input->post('logbookMap')); } // Update Lang choice within the options system // $lang_update_status = $this->optionslib->update('language', $this->input->post('language')); // If Lang update is complete set a flashsession with a success note // if($lang_update_status == TRUE) { // $this->session->set_flashdata('success', 'Language changed to '.ucfirst($this->input->post('language'))); // } // Redirect back to /appearance redirect('/options/appearance'); } } // function used to display the /radio url function radio() { $data['page_title'] = "Cloudlog Options"; $data['sub_heading'] = "Radio Settings"; $this->load->view('interface_assets/header', $data); $this->load->view('options/radios'); $this->load->view('interface_assets/footer'); } // Handles saving the radio options to the options system. function radio_save() { // Get Language Options $data['page_title'] = "Cloudlog Options"; $data['sub_heading'] = "Radio Settings"; $this->load->helper(array('form', 'url')); $this->load->library('form_validation'); $this->form_validation->set_rules('radioTimeout', 'radioTimeout', 'required'); if ($this->form_validation->run() == FALSE) { $this->load->view('interface_assets/header', $data); $this->load->view('options/radios'); $this->load->view('interface_assets/footer'); } else { // Update theme choice within the options system $radioTimeout_update = $this->optionslib->update('cat_timeout_interval', $this->input->post('radioTimeout'), 'yes'); // If theme update is complete set a flashsession with a success note if($radioTimeout_update == TRUE) { $this->session->set_flashdata('success', 'Radio Timeout Warning changed to '.$this->input->post('radioTimeout').' seconds'); } // Redirect back to /appearance redirect('/options/radio'); } } // function used to display the /appearance url function email() { $data['page_title'] = "Cloudlog Options"; $data['sub_heading'] = "Email"; $this->load->view('interface_assets/header', $data); $this->load->view('options/email'); $this->load->view('interface_assets/footer'); } // Handles saving the radio options to the options system. function email_save() { // Get Language Options $data['page_title'] = "Cloudlog Options"; $data['sub_heading'] = "Email"; $this->load->helper(array('form', 'url')); $this->load->library('form_validation'); $this->form_validation->set_rules('emailProtocol', 'Email Protocol', 'required'); if ($this->form_validation->run() == FALSE) { $this->load->view('interface_assets/header', $data); $this->load->view('options/email'); $this->load->view('interface_assets/footer'); } else { // Update emailProtocol choice within the options system $emailProtocolupdate = $this->optionslib->update('emailProtocol', $this->input->post('emailProtocol'), 'yes'); // If emailProtocolupdate update is complete set a flashsession with a success note if($emailProtocolupdate == TRUE) { $this->session->set_flashdata('success', 'Outgoing Email Protocol changed to '.$this->input->post('emailProtocol')); } // Update smtpEncryption choice within the options system $smtpEncryptionupdate = $this->optionslib->update('smtpEncryption', $this->input->post('smtpEncryption'), 'yes'); // If smtpEncryption update is complete set a flashsession with a success note if($smtpEncryptionupdate == TRUE) { $this->session->set_flashdata('success', 'SMTP Encryption changed to '.$this->input->post('smtpEncryption')); } // Update smtpHost choice within the options system $smtpHostupdate = $this->optionslib->update('smtpHost', $this->input->post('smtpHost'), 'yes'); // If smtpHost update is complete set a flashsession with a success note if($smtpHostupdate == TRUE) { $this->session->set_flashdata('success', 'SMTP Host changed to '.$this->input->post('smtpHost')); } // Update smtpPort choice within the options system $smtpPortupdate = $this->optionslib->update('smtpPort', $this->input->post('smtpPort'), 'yes'); // If smtpPort update is complete set a flashsession with a success note if($smtpPortupdate == TRUE) { $this->session->set_flashdata('success', 'SMTP Port changed to '.$this->input->post('smtpPort')); } // Update smtpUsername choice within the options system $smtpUsernameupdate = $this->optionslib->update('smtpUsername', $this->input->post('smtpUsername'), 'yes'); // If smtpUsername update is complete set a flashsession with a success note if($smtpUsernameupdate == TRUE) { $this->session->set_flashdata('success', 'SMTP Username changed to '.$this->input->post('smtpUsername')); } // Update smtpPassword choice within the options system $smtpPasswordupdate = $this->optionslib->update('smtpPassword', $this->input->post('smtpPassword'), 'yes'); // If smtpPassword update is complete set a flashsession with a success note if($smtpPasswordupdate == TRUE) { $this->session->set_flashdata('success', 'SMTP Password changed to '.$this->input->post('smtpPassword')); } // Update emailcrlf choice within the options system $emailcrlfupdate = $this->optionslib->update('emailcrlf', $this->input->post('emailcrlf'), 'yes'); // If emailcrlf update is complete set a flashsession with a success note if($emailcrlfupdate == TRUE) { $this->session->set_flashdata('success', 'Email CRLF changed to '.$this->input->post('emailcrlf')); } // Update emailnewline choice within the options system $emailnewlineupdate = $this->optionslib->update('emailnewline', $this->input->post('emailnewline'), 'yes'); // If emailnewline update is complete set a flashsession with a success note if($emailnewlineupdate == TRUE) { $this->session->set_flashdata('success', 'Email Newline changed to '.$this->input->post('emailnewline')); } // Redirect back to /appearance redirect('/options/email'); } } function oqrs() { $data['page_title'] = "Cloudlog Options"; $data['sub_heading'] = "OQRS Options"; $this->load->view('interface_assets/header', $data); $this->load->view('options/oqrs'); $this->load->view('interface_assets/footer'); } function oqrs_save() { $data['page_title'] = "Cloudlog Options"; $data['sub_heading'] = "OQRS Options"; $this->load->helper(array('form', 'url')); $this->load->library('form_validation'); $global_oqrs_text = $this->optionslib->update('global_oqrs_text', $this->input->post('global_oqrs_text'), null); $global_oqrs_text = $this->optionslib->update('groupedSearch', $this->input->post('groupedSearch'), null); if($global_oqrs_text == TRUE) { $this->session->set_flashdata('success', 'OQRS options have been saved.'); } redirect('/options/oqrs'); } }