Changes of the last few months including restructuring system from using only ranks to permissions
This commit is contained in:
@@ -1,17 +1,19 @@
|
||||
<?php
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
class Faq extends MY_Controller {
|
||||
class Faq extends MY_Controller
|
||||
{
|
||||
|
||||
public function __construct() {
|
||||
parent::__construct('faq');
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct('faq');
|
||||
}
|
||||
|
||||
public function index()
|
||||
{
|
||||
$this->load->view('header', ['active' => 'faq', 'title' => 'FAQ - Frequently Asked Questions']);
|
||||
$this->load->view('faq');
|
||||
$this->load->view('footer');
|
||||
}
|
||||
}
|
||||
|
||||
public function index()
|
||||
{
|
||||
$this->load->view('header', ['active' => 'faq', 'title' => 'FAQ - Frequently Asked Questions']);
|
||||
$this->load->view('faq');
|
||||
$this->load->view('footer');
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user