added a way to store new budget for financial type

This commit is contained in:
2018-08-12 01:29:39 +05:30
parent 1b4aa80f24
commit cb23c5152b
2 changed files with 48 additions and 0 deletions

View File

@ -201,3 +201,15 @@ function annualgrantbudgets_civicrm_navigationMenu(&$menu) {
]);
_annualgrantbudgets_civix_navigationMenu($menu);
}
/**
* Implements hook_civicrm_apiWrappers().
*
* @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_apiWrappers
*
*/
function annualgrantbudgets_civicrm_apiWrappers(&$wrappers, $apiRequest) {
if (strtolower($apiRequest['entity']) == 'grantbudget' && $apiRequest['action'] == 'create') {
$wrappers[] = new CRM_AnnualGrantBudgets_APIWrapper();
}
}