Archived
1
0
This repository has been archived on 2020-12-10. You can view files and clone it, but cannot push or open issues or pull requests.
old/application/controllers/admin/Contact.php
2018-12-30 18:35:04 +01:00

18 lines
400 B
PHP

<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Contact extends MY_Controller
{
public function __construct()
{
parent::__construct();
$this->load->model('UserModel', '', TRUE);
}
public function index() {
$this->load->view('admin/sidebar', ['title' => 'Kontakt-Nachrichten']);
$this->load->view('admin/footer');
}
}