Profile pages added
This commit is contained in:
@@ -0,0 +1,22 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||||
|
|
||||||
|
class Profile extends Provider_Controller {
|
||||||
|
|
||||||
|
public function index() {
|
||||||
|
$data = array();
|
||||||
|
$this->renderProviderSecurePage('profile/profile', $data);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function inbox() {
|
||||||
|
$data = array();
|
||||||
|
$this->renderProviderSecurePage('profile/inbox', $data);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function setttings() {
|
||||||
|
$data = array();
|
||||||
|
$this->renderProviderSecurePage('profile/setttings', $data);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user