]> jfr.im git - z_archive/KronOS.git/blob - video/application/controllers/backend.php
7d89ce204c996fd9defdc8582cd3effb11a3b92f
[z_archive/KronOS.git] / video / application / controllers / backend.php
1 <?php
2 class Backend extends CI_Controller {
3
4 public function __construct() {
5 parent::__construct();
6
7 $this->load->model('core');
8 }
9
10 public function index() {
11 print "";
12 }
13
14 public function get_menu() {
15 return $this->core->get_menu();
16 }
17 }
18 ?>