Files
MermsEmrWeb/providerwww/application/controllers/Profile.php
T
2019-03-04 18:53:47 +00:00

23 lines
510 B
PHP

<?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);
}
}