jenkins-bot has submitted this change and it was merged. ( https://gerrit.wikimedia.org/r/349720 )
Change subject: Add de Bijenkorf card ...................................................................... Add de Bijenkorf card Also needs https://gerrit.wikimedia.org/r/349721 Change-Id: I3b00c4cd60e453d363927adcc1071c678c7f78ef --- M sites/all/modules/wmf_civicrm/wmf_civicrm.install M sites/all/modules/wmf_civicrm/wmf_civicrm.module 2 files changed, 13 insertions(+), 0 deletions(-) Approvals: XenoRyet: Looks good to me, approved jenkins-bot: Verified diff --git a/sites/all/modules/wmf_civicrm/wmf_civicrm.install b/sites/all/modules/wmf_civicrm/wmf_civicrm.install index be49ad0..d4c75fe 100644 --- a/sites/all/modules/wmf_civicrm/wmf_civicrm.install +++ b/sites/all/modules/wmf_civicrm/wmf_civicrm.install @@ -2904,6 +2904,16 @@ "); } + /** + * Add Bijcard + */ + function wmf_civicrm_update_7511() { + $payment_instruments = array( + 'Credit Card: Bijenkorf', + ); + wmf_civicrm_bootstrap_civi(); + wmf_civicrm_create_option_values( 'payment_instrument', $payment_instruments ); + } } /** * Backfill contribution_tracking associations for recurring donations diff --git a/sites/all/modules/wmf_civicrm/wmf_civicrm.module b/sites/all/modules/wmf_civicrm/wmf_civicrm.module index 0bc895a..a3fb78f 100644 --- a/sites/all/modules/wmf_civicrm/wmf_civicrm.module +++ b/sites/all/modules/wmf_civicrm/wmf_civicrm.module @@ -688,6 +688,9 @@ case 'webpay': $payment_instrument .= ': Webpay'; break; + case 'bij': + $payment_instrument .= ': Bijenkorf'; + break; } break; case 'dd': -- To view, visit https://gerrit.wikimedia.org/r/349720 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: merged Gerrit-Change-Id: I3b00c4cd60e453d363927adcc1071c678c7f78ef Gerrit-PatchSet: 4 Gerrit-Project: wikimedia/fundraising/crm Gerrit-Branch: master Gerrit-Owner: Ejegg <[email protected]> Gerrit-Reviewer: Ejegg <[email protected]> Gerrit-Reviewer: XenoRyet <[email protected]> Gerrit-Reviewer: jenkins-bot <> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
