コード例 #1
0
ファイル: Student.php プロジェクト: sivarajankumar/eduis
 /**
  * Fetches Contact Type Ids of a Student,
  * Member_id must be set before calling this function 
  * @return array the Type of Contacts submitted by the Student 
  */
 public function fetchContactTypeIds()
 {
     $member_id = $this->getMember_id(true);
     $contacts_object = new Core_Model_MemberContacts();
     $contacts_object->setMember_id($member_id);
     return $contacts_object->fetchContactTypeIds();
 }