family type

This commit is contained in:
CHIEFSOFT\ameye
2024-01-10 21:25:47 -05:00
parent 60c455ba6c
commit e03da006b9
+8
View File
@@ -646,9 +646,17 @@ class WrenchApi extends BaseController
$final_out["server_tag"] = $server_tag;
$final_out["language"] = "en";
$final_out["ip_loc"] = $ip_loc;
$final_out["family_types"] = this.familyTypes();
//return json_encode( ( new \App\Models\ResultFormatter() )->processOutJson($in, $out));
return json_encode( $final_out );
}
private function familyTypes(){
return [
array("ty"=>"Parent", "id"=>"PARENT", "tag"=>"fam_type_parent"),
array("ty"=>"Relatives", "id"=>"RELATIVES", "tag"=>"fam_type_relatives"),
array("ty"=>"Others", "id"=>"Others", "tag"=>"fam_type_others")
];
}
}