2019-09-05 06:04:12 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
if ( ! defined('BASEPATH')) exit('No direct script access allowed');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
This controller will contain features for managing incoming QSL cards
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
class Qslmanagement extends CI_Controller {
|
|
|
|
|
|
|
|
|
|
public function index()
|
|
|
|
|
{
|
2019-10-09 04:38:34 +08:00
|
|
|
$data['page_title'] = "QSL Card Management";
|
|
|
|
|
|
|
|
|
|
$this->load->view('interface_assets/header', $data);
|
|
|
|
|
$this->load->view('qslmanagement/index');
|
|
|
|
|
$this->load->view('interface_assets/footer');
|
2019-09-05 06:04:12 +08:00
|
|
|
}
|
|
|
|
|
}
|