mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 18:27:16 +00:00
20 lines
457 B
PHP
20 lines
457 B
PHP
<?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()
|
|
{
|
|
$data['page_title'] = __("QSL Card Management");
|
|
|
|
$this->load->view('interface_assets/header', $data);
|
|
$this->load->view('qslmanagement/index');
|
|
$this->load->view('interface_assets/footer');
|
|
}
|
|
} |