コード例 #1
0
 public function editvieweducationAction()
 {
     $user = PR_Session::getSession(PR_Session::SESSION_USER);
     $UserID = $user["UserID"];
     $request = $this->getRequest();
     $params = $request->getParams();
     $CredentialExperienceID = $request->getParam("CredentialExperienceID");
     $core = new PR_Api_Core_CandidateClass();
     $getUserArray = $core->getCandidateInfo($UserID);
     $this->view->UserArray = $getUserArray;
     $CandidateprofileID = $user["CandidateProfileID"];
     $getCandidates = $core->getCandidateProfile($CandidateprofileID);
     $Educationlist = $core->getCandidateEducation($CredentialExperienceID);
     $this->view->getCandidates = $getCandidates;
     $this->view->Educationlist = $Educationlist;
     $this->render('edit-view-education');
 }