X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FFinancial%2FBAO%2FPaymentProcessor.php;h=f5cb848d13971c0026ba30d420f6b6faffad8728;hb=cb5962bd23bde819fcfcd391649e39aacf957bbc;hp=5ff3237b172abeccfabfa2cb05f2247a820e86fa;hpb=8d1cd6ab03cc23c6a3156f4be6debd650da9cc59;p=civicrm-core.git diff --git a/CRM/Financial/BAO/PaymentProcessor.php b/CRM/Financial/BAO/PaymentProcessor.php index 5ff3237b17..f5cb848d13 100644 --- a/CRM/Financial/BAO/PaymentProcessor.php +++ b/CRM/Financial/BAO/PaymentProcessor.php @@ -3,7 +3,7 @@ +--------------------------------------------------------------------+ | CiviCRM version 4.7 | +--------------------------------------------------------------------+ - | Copyright CiviCRM LLC (c) 2004-2015 | + | Copyright CiviCRM LLC (c) 2004-2016 | +--------------------------------------------------------------------+ | This file is a part of CiviCRM. | | | @@ -28,7 +28,7 @@ /** * * @package CRM - * @copyright CiviCRM LLC (c) 2004-2015 + * @copyright CiviCRM LLC (c) 2004-2016 */ /** @@ -50,7 +50,6 @@ class CRM_Financial_BAO_PaymentProcessor extends CRM_Financial_DAO_PaymentProces * @throws Exception */ public static function create($params) { - // FIXME Reconcile with CRM_Admin_Form_PaymentProcessor::updatePaymentProcessor $processor = new CRM_Financial_DAO_PaymentProcessor(); $processor->copyValues($params); @@ -79,6 +78,7 @@ class CRM_Financial_BAO_PaymentProcessor extends CRM_Financial_DAO_PaymentProces ); CRM_Financial_BAO_FinancialTypeAccount::add($values); } + Civi\Payment\System::singleton()->flushProcessors(); return $processor; } @@ -90,6 +90,22 @@ class CRM_Financial_BAO_PaymentProcessor extends CRM_Financial_DAO_PaymentProces parent::__construct(); } + /** + * Retieve array of allowed credit cards for this payment processor. + * @param interger|null $paymentProcessorID id of processor. + * @return array + */ + public static function getCreditCards($paymentProcessorID = NULL) { + if (!empty($paymentProcessorID)) { + $processor = new CRM_Financial_DAO_PaymentProcessor(); + $processor->id = $paymentProcessorID; + $processor->find(TRUE); + $cards = json_decode($processor->accepted_credit_cards, TRUE); + return $cards; + } + return array(); + } + /** * Retrieve DB object based on input parameters. *