152 行
		
	
	
	
		
			4.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			152 行
		
	
	
	
		
			4.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
 | |
| 
 | |
| /*
 | |
| 	Handles Displaying of information for station tools.
 | |
| */
 | |
| 
 | |
| class Options extends CI_Controller {
 | |
| 
 | |
| 	function __construct()
 | |
| 	{
 | |
| 		parent::__construct();
 | |
| 		$this->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'));
 | |
| 
 | |
| 			// 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 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'));
 | |
| 
 | |
| 			// 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');
 | |
| 		}
 | |
|     }
 | |
| 
 | |
| }
 |