Added basis for multi logbook
这个提交包含在:
父节点
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';
|
||||
}
|
||||
16
application/models/Logbooks.php
普通文件
16
application/models/Logbooks.php
普通文件
|
|
@ -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';
|
||||
}
|
||||
}
|
||||
正在加载…
在新工单中引用