X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=bin%2FContributionProcessor.php;h=0e867e266a0856bccb3c9e1a4583abbf9081da14;hb=da8b6697592f63af870d17be2dd7f70b10fac225;hp=074a73c3c7826a30681813e3fc6ae4cf9531b9ba;hpb=01fc73a5788aff9892383186d4dbb674a006dbc8;p=civicrm-core.git diff --git a/bin/ContributionProcessor.php b/bin/ContributionProcessor.php index 074a73c3c7..0e867e266a 100644 --- a/bin/ContributionProcessor.php +++ b/bin/ContributionProcessor.php @@ -1,7 +1,7 @@ trxn_id = $value; if ($dao->find(TRUE)) { preg_match('/(\d+)$/', $name, $matches); - $seq = $matches[1]; + $seq = $matches[1]; $email = $result["l_email{$seq}"]; - $amt = $result["l_amt{$seq}"]; + $amt = $result["l_amt{$seq}"]; CRM_Core_Error::debug_log_message("Skipped (already recorded) - $email, $amt, $value ..

", TRUE); continue; } @@ -234,9 +234,9 @@ class CiviContributeProcessor { } } if ($result['l_errorcode0'] == '11002') { - $end = $result['l_timestamp99']; - $end_time = strtotime("{$end}", time()); - $end_date = date('Y-m-d\T00:00:00.00\Z', $end_time); + $end = $result['l_timestamp99']; + $end_time = strtotime("{$end}", time()); + $end_date = date('Y-m-d\T00:00:00.00\Z', $end_time); $args['enddate'] = $end_date; } } while ($result['l_errorcode0'] == '11002'); @@ -272,8 +272,8 @@ class CiviContributeProcessor { if (is_array($response[1][$response[0]]['notifications']['charge-amount-notification'])) { if (array_key_exists('google-order-number', - $response[1][$response[0]]['notifications']['charge-amount-notification'] - )) { + $response[1][$response[0]]['notifications']['charge-amount-notification'] + )) { // sometimes 'charge-amount-notification' itself is an absolute // array and not array of arrays. This is the case when there is only one // charge-amount-notification. Hack for this special case - @@ -283,9 +283,10 @@ class CiviContributeProcessor { } foreach ($response[1][$response[0]]['notifications']['charge-amount-notification'] - as $amtData + as $amtData ) { - $searchParams = array('order-numbers' => array($amtData['google-order-number']['VALUE']), + $searchParams = array( + 'order-numbers' => array($amtData['google-order-number']['VALUE']), 'notification-types' => array('risk-information', 'new-order', 'charge-amount'), ); $response = CRM_Core_Payment_Google::invokeAPI($paymentProcessor, @@ -322,9 +323,9 @@ class CiviContributeProcessor { static function csv() { - $csvFile = '/home/deepak/Desktop/crm-4247.csv'; + $csvFile = '/home/deepak/Desktop/crm-4247.csv'; $delimiter = ";"; - $row = 1; + $row = 1; $handle = fopen($csvFile, "r"); if (!$handle) { @@ -434,4 +435,3 @@ else { $lock->release(); echo "Done processing

"; -