Added basis for multi logbook

这个提交包含在:
Peter Goodhall 2019-09-22 21:41:23 +01:00
父节点 66231b52d2
当前提交 b26b525c20
共有 2 个文件被更改,包括 35 次插入0 次删除

查看文件

@ -0,0 +1,19 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Logbooks extends CI_Controller {
/* Controls ADIF Import/Export Functions */
function __construct()
{
parent::__construct();
$this->load->helper(array('form', 'url'));
$this->load->model('user_model');
if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
}
public function index()
{
echo 'Functions to come';
}

查看文件

@ -0,0 +1,16 @@
<?php
if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/*
This controller will contain features for managing incoming QSL cards
*/
class User_Logbooks extends CI_Controller {
public function index()
{
echo 'Functions to come';
}
}