static function relationshipContactTypeList()
 {
     $relType = CRM_Utils_Array::value('relType', $_POST);
     $types = CRM_Contact_BAO_Relationship::getValidContactTypeList($relType);
     $elements = array();
     foreach ($types as $key => $label) {
         $elements[] = array('name' => $label, 'value' => $key);
     }
     echo json_encode($elements);
     CRM_Utils_System::civiExit();
 }
Example #2
0
 static function relationshipContactTypeList()
 {
     $relType = CRM_Utils_Array::value('relType', $_REQUEST);
     $types = CRM_Contact_BAO_Relationship::getValidContactTypeList($relType);
     $elements = array();
     foreach ($types as $key => $label) {
         $elements[] = array('name' => $label, 'value' => $key);
     }
     CRM_Utils_JSON::output($elements);
 }