New static data

This commit is contained in:
CHIEFSOFT\ameye
2024-07-04 20:53:52 -04:00
parent 3f7154dd7f
commit 47acbc436f
4 changed files with 59 additions and 13 deletions
@@ -433,4 +433,17 @@ abstract class BaseController extends Controller
curl_close($curl);
return json_decode($result, true);
}
public 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")
];
}
public function historyTypes(){
return [
array("ty"=>"Completed Jobs", "id"=>"COMPLETED_JOBS", "tag"=>"hist_type_completed_jobs"),
];
}
}