remove unused fn (did this
authoreileenmcnaugton <eileen@fuzion.co.nz>
Tue, 4 Aug 2015 11:59:29 +0000 (23:59 +1200)
committereileenmcnaugton <eileen@fuzion.co.nz>
Mon, 10 Aug 2015 01:09:37 +0000 (13:09 +1200)
'come back' from a 4.6 merge  - I thought it was gone

CRM/Core/Payment/Form.php
CRM/Core/Payment/PayPalImpl.php

index a39aa22f1e1954df2ed1907ded423cd00adce4ff..92cb83bd2e1404f5464939f9c9f7d705d1d28608 100644 (file)
@@ -298,26 +298,6 @@ class CRM_Core_Payment_Form {
     }
   }
 
-  /**
-   * Billing mode button is basically synonymous with paypal express  - this is probably a good example of 'odds & sods' code we
-   * need to find a way for the payment processor to assign. A tricky aspect is that the payment processor may need to set the order
-   *
-   * @param $form
-   */
-  protected static function addPaypalExpressCode(&$form) {
-    if (empty($form->isBackOffice)) {
-      if (in_array(CRM_Utils_Array::value('billing_mode', $form->_paymentProcessor), array(2, 3))) {
-        $form->_expressButtonName = $form->getButtonName('upload', 'express');
-        $form->assign('expressButtonName', $form->_expressButtonName);
-        $form->add('image',
-          $form->_expressButtonName,
-          $form->_paymentProcessor['url_button'],
-          array('class' => 'crm-form-submit')
-        );
-      }
-    }
-  }
-
   /**
    * Validate the payment instrument values before passing it to the payment processor
    * We want this to be overrideable by the payment processor, and default to using
index 7a6f58e0381db703828c92303a2a49925ae5d15f..72e86d23e92fb852dee76427396151caef133246 100644 (file)
@@ -124,7 +124,7 @@ class CRM_Core_Payment_PayPalImpl extends CRM_Core_Payment {
    * Billing mode button is basically synonymous with paypal express  - this is probably a good example of 'odds & sods' code we
    * need to find a way for the payment processor to assign. A tricky aspect is that the payment processor may need to set the order
    *
-   * @param $form
+   * @param CRM_Core_Form $form
    */
   protected function addPaypalExpressCode(&$form) {
     if (empty($form->isBackOffice)) {