mirror of
https://github.com/magicbug/Cloudlog
synced 2026-08-13 17:49:35 -04:00
18 lines
304 B
PHP
18 lines
304 B
PHP
|
|
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
|
||
|
|
|
||
|
|
/*
|
||
|
|
|
||
|
|
Handles all functions todo with QSLing.
|
||
|
|
|
||
|
|
*/
|
||
|
|
|
||
|
|
class qsl extends CI_Controller {
|
||
|
|
|
||
|
|
|
||
|
|
public function index()
|
||
|
|
{
|
||
|
|
$this->load->view('layout/header');
|
||
|
|
$this->load->view('qsl/main');
|
||
|
|
$this->load->view('layout/footer');
|
||
|
|
}
|
||
|
|
}
|