Removed unsused View/Controller
这个提交包含在:
父节点
ae7ed4980c
当前提交
46bc2ac67c
共有 2 个文件被更改,包括 0 次插入 和 33 次删除
|
|
@ -1,21 +0,0 @@
|
|||
<?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 */
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
<div id="container">
|
||||
<h2><?php echo $page_title; ?></h2>
|
||||
|
||||
<p>Below are all the exportable data options available in Cloudlog</p>
|
||||
|
||||
<h3>Data Types</h3>
|
||||
|
||||
<ul>
|
||||
<li><a href="<?php echo site_url('kml'); ?>">All QSOs as KML</a></li>
|
||||
<li><a href="<?php echo site_url('adif/export'); ?>">ADIF Export</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
正在加载…
在新工单中引用