mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-27 01:24:16 +00:00
Removed unsused View/Controller
This commit is contained in:
@@ -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>
|
||||
Reference in New Issue
Block a user