first commit
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
<?php defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
include_once 'Member_controller.php';
|
||||
|
||||
/**
|
||||
* Member Dashboard Controller
|
||||
* @copyright 2019 Manaknightdigital Inc.
|
||||
* @link https://manaknightdigital.com
|
||||
* @license Proprietary Software licensing
|
||||
* @author Ryan Wong
|
||||
*
|
||||
*/
|
||||
class Member_dashboard_controller extends Member_controller
|
||||
{
|
||||
public $_page_name = 'Dashboard';
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct();
|
||||
}
|
||||
|
||||
public function index ()
|
||||
{
|
||||
return $this->render('Member/Dashboard', $this->_data);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user