27 lines
375 B
PHP
27 lines
375 B
PHP
<?php
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
class Page extends Member_Controller {
|
|
|
|
|
|
public function index()
|
|
{
|
|
$this->load->view('members/view_page');
|
|
}
|
|
|
|
public function email(){
|
|
$this->index();
|
|
}
|
|
public function chat(){
|
|
$this->index();
|
|
}
|
|
|
|
public function todo(){
|
|
$this->index();
|
|
}
|
|
public function calendar(){
|
|
$this->index();
|
|
}
|
|
|
|
}
|