kopia lustrzana https://github.com/magicbug/Cloudlog
21 wiersze
595 B
PHP
21 wiersze
595 B
PHP
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
|
|
|
|
class Export extends CI_Controller {
|
|
|
|
|
|
public function index()
|
|
{
|
|
$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'); }
|
|
|
|
$data['page_title'] = "Data Export";
|
|
|
|
$this->load->view('interface_assets/header', $data);
|
|
$this->load->view('export/index');
|
|
$this->load->view('interface_assets/footer');
|
|
|
|
}
|
|
}
|
|
|
|
/* End of file welcome.php */
|
|
/* Location: ./application/controllers/welcome.php */ |