This commit is contained in:
2020-02-08 13:31:12 -05:00
parent 892c9c97c4
commit edf3f334f2
4 changed files with 143 additions and 34 deletions
+10 -22
View File
@@ -92,10 +92,13 @@ class Member extends Member_Controller {
// echo "Yes i got to the controller";
}
public function myprofile() {
public function myprofile(){
$data = array();
$this->renderMemberPages('view_myprofile', $data);
}
public function configure() {
// echo 'yes'; view_mypage
@@ -131,29 +134,14 @@ class Member extends Member_Controller {
// exit();
}
$this->configure();
}
public function addNotecard() {
$data = array();
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
$data['title'] = trim($this->input->post('title'));
$data['detail'] = trim($this->input->post('detail'));
$data['member_id'] = $_SESSION["member_id"];
$data['session'] = $_SESSION["sessionid"];
// exit();
}
// $this->renderMemberPages('view_mycalendar', $data);
}
public function mycalendar() {
$data = array();
$this->renderMemberPages('view_mycalendar', $data);