preliminary whitespace cleanup
authoreileen <eileen@fuzion.co.nz>
Mon, 3 Jun 2013 03:10:03 +0000 (15:10 +1200)
committereileen <eileen@fuzion.co.nz>
Mon, 3 Jun 2013 03:10:03 +0000 (15:10 +1200)
16 files changed:
CRM/Contribute/BAO/Premium.php
CRM/Contribute/Form/Contribution/Main.php
CRM/Contribute/Form/ContributionPage/AddProduct.php
CRM/Contribute/Form/ContributionPage/Amount.php
CRM/Contribute/Form/ContributionPage/Custom.php
CRM/Contribute/Form/ManagePremiums.php
CRM/Contribute/Form/Task.php
CRM/Contribute/Form/Task/Batch.php
CRM/Contribute/Form/Task/Delete.php
CRM/Contribute/Form/Task/PDF.php
CRM/Contribute/Form/Task/PDFLetterCommon.php
CRM/Contribute/Form/Task/PickProfile.php
CRM/Contribute/Form/Task/SearchTaskHookSample.php
CRM/Contribute/Form/Task/Status.php
CRM/Contribute/Info.php
CRM/Contribute/Page/ContributionPage.php

index 522fe93fbfd673c2b0b4339aff1561de88f538e7..bf888b5c287712a5914872903a4963dee6440763 100644 (file)
@@ -43,7 +43,7 @@ class CRM_Contribute_BAO_Premium extends CRM_Contribute_DAO_Premium {
 
   /**
    * class constructor
-   */ 
+   */
   function __construct() {
     parent::__construct();
   }
@@ -86,7 +86,7 @@ class CRM_Contribute_BAO_Premium extends CRM_Contribute_DAO_Premium {
   }
 
   /**
-     * Function to delete financial Types 
+     * Function to delete financial Types
    *
    * @param int $contributionTypeId
    * @static
index 35d53b77f7fb47b7968934f07a414212cb7a235c..1c7b1bcbdc2542511b810bd0f2b57b788f35e5e3 100644 (file)
@@ -789,7 +789,7 @@ class CRM_Contribute_Form_Contribution_Main extends CRM_Contribute_Form_Contribu
       }
 
       // CRM-12233
-      if ($membershipIsActive && !$self->_membershipBlock['is_required'] 
+      if ($membershipIsActive && !$self->_membershipBlock['is_required']
         && $self->_values['amount_block_is_active']) {
         $membershipFieldId = $contributionFieldId = $errorKey = $otherFieldId = NULL;
         foreach ($self->_values['fee'] as $fieldKey => $fieldValue) {
@@ -804,7 +804,7 @@ class CRM_Contribute_Form_Contribution_Main extends CRM_Contribute_Form_Contribu
             elseif ($fieldValue['name'] == 'contribution_amount') {
               $contributionFieldId = $fieldKey;
             }
-          
+
             if (!$errorKey || CRM_Utils_Array::value('price_' . $contributionFieldId, $fields) == '0') {
               $errorKey = $fieldKey;
             }
@@ -889,7 +889,7 @@ class CRM_Contribute_Form_Contribution_Main extends CRM_Contribute_Form_Contribu
       CRM_Price_BAO_Set::processAmount($self->_values['fee'],
         $fields, $lineItem
       );
-      
+
       if ($fields['amount'] < 0) {
         $errors['_qf_default'] = ts('Contribution can not be less than zero. Please select the options accordingly');
       }
index 3a9761e8489f0aa805ddf67c5bacc764681eb851..138c5a20a93458f6c80248f998fb1bd7add747cb 100644 (file)
@@ -167,28 +167,28 @@ class CRM_Contribute_Form_ContributionPage_AddProduct extends CRM_Contribute_For
     $session->pushUserContext($url);
 
     $this->add('select', 'product_id', ts('Select the Product') . ' ', $this->_products, TRUE);
-    
+
     $this->addElement('text', 'weight', ts('Weight'), CRM_Core_DAO::getAttribute('CRM_Contribute_DAO_PremiumsProduct', 'weight'));
-    
+
     $financialType = CRM_Contribute_PseudoConstant::financialType( );
     $premiumFinancialType = array();
     CRM_Core_PseudoConstant::populate(
       $premiumFinancialType,
       'CRM_Financial_DAO_EntityFinancialAccount',
-      $all = True, 
-      $retrieve = 'entity_id', 
-      $filter = null, 
-      'account_relationship = 8' 
+      $all = True,
+      $retrieve = 'entity_id',
+      $filter = null,
+      'account_relationship = 8'
     );
-            
+
     $costFinancialType = array();
     CRM_Core_PseudoConstant::populate(
       $costFinancialType,
       'CRM_Financial_DAO_EntityFinancialAccount',
-      $all = True, 
-      $retrieve = 'entity_id', 
-      $filter = null, 
-      'account_relationship = 7' 
+      $all = True,
+      $retrieve = 'entity_id',
+      $filter = null,
+      'account_relationship = 7'
     );
     $productFinancialType = array_intersect($costFinancialType, $premiumFinancialType);
     foreach( $financialType as $key => $financialTypeName ){
@@ -197,11 +197,11 @@ class CRM_Contribute_Form_ContributionPage_AddProduct extends CRM_Contribute_For
     }
     if( count( $financialType ) ){
       $this->assign( 'financialType', $financialType );
-    } 
+    }
     $this->add(
-      'select', 
-      'financial_type_id', 
-      ts( 'Financial Type' ), 
+      'select',
+      'financial_type_id',
+      ts( 'Financial Type' ),
       array(''=>ts('- select -')) + $financialType
     );
     $this->addRule('weight', ts('Please enter integer value for weight'), 'integer');
@@ -272,7 +272,7 @@ class CRM_Contribute_Form_ContributionPage_AddProduct extends CRM_Contribute_For
       if ($this->_pid) {
         $oldWeight = CRM_Core_DAO::getFieldValue('CRM_Contribute_DAO_PremiumsProduct', $this->_pid, 'weight', 'id');
       }
-      
+
       // updateOtherWeights needs to filter on premiums_id
       $filter = array('premiums_id' => $params['premiums_id']);
       $params['weight'] = CRM_Utils_Weight::updateOtherWeights('CRM_Contribute_DAO_PremiumsProduct', $oldWeight, $params['weight'], $filter);
index 0ed67cf757bd77d7ddadfbc7444523d53b05e687..6a4638f11e3420a17dbc907cb7d484172e8a0975 100644 (file)
@@ -138,7 +138,7 @@ SELECT id
       FALSE
     );
     $this->addWysiwyg('pay_later_receipt', ts('Pay Later Instructions'), CRM_Core_DAO::getAttribute('CRM_Contribute_DAO_ContributionPage', 'pay_later_receipt'));
-    
+
     //add partial payment options
 
     // add price set fields
@@ -305,7 +305,7 @@ SELECT id
         $errors['min_amount'] = ts('Minimum Amount should be less than Maximum Amount');
       }
     }
+
     if (isset($fields['is_pay_later'])) {
       if (empty($fields['pay_later_text'])) {
         $errors['pay_later_text'] = ts('Please enter the text for the \'pay later\' checkbox displayed on the contribution form.');
@@ -314,7 +314,7 @@ SELECT id
         $errors['pay_later_receipt'] = ts('Please enter the instructions to be sent to the contributor when they choose to \'pay later\'.');
       }
     }
-    
+
     // don't allow price set w/ membership signup, CRM-5095
     if ($priceSetId = CRM_Utils_Array::value('price_set_id', $fields)) {
       // don't allow price set w/ membership.
@@ -375,7 +375,7 @@ SELECT id
         }
       }
     }
-    
+
     return $errors;
   }
 
@@ -517,7 +517,7 @@ SELECT id
               $setParams['title'] = $this->_values['title'];
               if (!CRM_Core_DAO::getFieldValue('CRM_Price_BAO_Set', $pageTitle, 'id', 'name')) {
                 $setParams['name'] = $pageTitle;
-              }    
+              }
               elseif (!CRM_Core_DAO::getFieldValue('CRM_Price_BAO_Set', $pageTitle . '_' . $this->_id, 'id', 'name')) {
                 $setParams['name'] = $pageTitle . '_' . $this->_id;
               }
@@ -600,7 +600,7 @@ SELECT id
               CRM_Price_BAO_Field::retrieve($editedFieldParams, $editedResults);
 
               if (!$priceFieldID = CRM_Utils_Array::value('id', $editedResults)) {
-                $fieldParams = array( 
+                $fieldParams = array(
                   'name' => 'other_amount',
                   'label' => 'Other Amount',
                   'price_set_id' => $priceSetId,
@@ -613,7 +613,7 @@ SELECT id
                 $fieldParams['option_amount'][1] = 1;
                 if (!$noContriAmount) {
                   $fieldParams['is_required'] = 1;
-                  $fieldParams['option_label'][1] = 'Contribution Amount'; 
+                  $fieldParams['option_label'][1] = 'Contribution Amount';
                 } else {
                   $fieldParams['is_required'] = 0;
                   $fieldParams['option_label'][1] = 'Other Amount';
@@ -690,8 +690,8 @@ SELECT id
       if ($deletePriceSet) {
         CRM_Price_BAO_Set::removeFrom('civicrm_contribution_page', $contributionPageID);
       }
-      
-      if ($deleteAmountBlk ) {   
+
+      if ($deleteAmountBlk ) {
         $priceField = CRM_Utils_Array::value('price_field_id', $params)?$params['price_field_id']:CRM_Utils_Array::value('price_field_other', $params);
         if ($priceField) {
           $priceSetID = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_Field', $priceField, 'price_set_id');
index 709a7782bebe77dffa54dc4cbd9361ba09c28f4d..aed4ba271f8482e00051ecbd1363957e0327084e 100644 (file)
@@ -196,7 +196,7 @@ class CRM_Contribute_Form_ContributionPage_Custom extends CRM_Contribute_Form_Co
     if (($postProfileType == 'Membership') && !$membershipEnable) {
       $errors['custom_post_id'] = $errorMsg;
     }
-   
+
     $behalf = CRM_Core_DAO::getFieldValue('CRM_Contribute_DAO_ContributionPage', $contributionPageId, 'is_for_organization');
     if ($fields['custom_pre_id']) {
       $errorMsg = ts('You should move the membership related fields in the "On Behalf" profile for this Contribution Page');
index a68eadbfc8dd267e3010cb42effdc6448fc9c903..dd45fbb75260eb5f2fe9c9cdd758cefe13e29b21 100644 (file)
@@ -172,27 +172,27 @@ class CRM_Contribute_Form_ManagePremiums extends CRM_Contribute_Form {
     $this->add('Select', 'frequency_unit', ts('Frequency Unit'), array('' => '- select period -', 'day' => 'Day', 'week' => 'Week', 'month' => 'Month', 'year' => 'Year'));
 
     $this->add('text', 'frequency_interval', ts('Frequency'), CRM_Core_DAO::getAttribute('CRM_Contribute_DAO_Product', 'frequency_interval'));
-    
+
     //Financial Type CRM-11106
     $financialType = CRM_Contribute_PseudoConstant::financialType( );
     $premiumFinancialType = array();
     CRM_Core_PseudoConstant::populate(
       $premiumFinancialType,
       'CRM_Financial_DAO_EntityFinancialAccount',
-      $all = True, 
-      $retrieve = 'entity_id', 
-      $filter = null, 
-      'account_relationship = 8' 
+      $all = True,
+      $retrieve = 'entity_id',
+      $filter = null,
+      'account_relationship = 8'
     );
-            
+
     $costFinancialType = array();
     CRM_Core_PseudoConstant::populate(
       $costFinancialType,
       'CRM_Financial_DAO_EntityFinancialAccount',
-      $all = True, 
-      $retrieve = 'entity_id', 
-      $filter = null, 
-      'account_relationship = 7' 
+      $all = True,
+      $retrieve = 'entity_id',
+      $filter = null,
+      'account_relationship = 7'
     );
     $productFinancialType = array_intersect($costFinancialType, $premiumFinancialType);
     foreach( $financialType as $key => $financialTypeName ){
@@ -201,14 +201,14 @@ class CRM_Contribute_Form_ManagePremiums extends CRM_Contribute_Form {
     }
     if( count( $financialType ) ){
       $this->assign( 'financialType', $financialType );
-    } 
+    }
     $this->add(
-      'select', 
-      'financial_type_id', 
-      ts( 'Financial Type' ), 
+      'select',
+      'financial_type_id',
+      ts( 'Financial Type' ),
       array(''=>ts('- select -')) + $financialType
     );
-    
+
     $this->add('checkbox', 'is_active', ts('Enabled?'));
 
     $this->addFormRule(array('CRM_Contribute_Form_ManagePremiums', 'formRule'));
index 41256e48393da79911040be115f649e5433ebde6..39d7c563dd500de2174effdc17109840e410f5ce 100644 (file)
@@ -109,7 +109,7 @@ class CRM_Contribute_Form_Task extends CRM_Core_Form {
       if ( $form->get( CRM_Utils_Sort::SORT_ORDER  ) ) {
         $sortOrder = $form->get( CRM_Utils_Sort::SORT_ORDER );
       }
-      
+
       $query = new CRM_Contact_BAO_Query($queryParams, NULL, NULL, FALSE, FALSE,
         CRM_Contact_BAO_Query::MODE_CONTRIBUTE
       );
index 92c90bb9de059142fceb8d7a2067ddfbab57d525..20d4faf5c5aa0b87eb577ada15b1470f9839b614 100644 (file)
@@ -156,7 +156,7 @@ class CRM_Contribute_Form_Task_Batch extends CRM_Contribute_Form_Task {
     //fix for CRM-2752
     $customFields = CRM_Core_BAO_CustomField::getFields('Contribution');
     foreach ($this->_contributionIds as $contributionId) {
-            $typeId = CRM_Core_DAO::getFieldValue( "CRM_Contribute_DAO_Contribution", $contributionId, 'financial_type_id' ); 
+            $typeId = CRM_Core_DAO::getFieldValue( "CRM_Contribute_DAO_Contribution", $contributionId, 'financial_type_id' );
       foreach ($this->_fields as $name => $field) {
         if ($customFieldID = CRM_Core_BAO_CustomField::getKeyID($name)) {
           $customValue = CRM_Utils_Array::value($customFieldID, $customFields);
index fc11524515d46585f2713ccda2e8cb66e6d10b85..372c6b891304035a7968567fd37be3b97e313fd1 100644 (file)
@@ -86,7 +86,7 @@ class CRM_Contribute_Form_Task_Delete extends CRM_Contribute_Form_Task {
         $deletedContributions++;
       }
     }
-    
+
     CRM_Core_Session::setStatus(ts('Deleted Contribution(s): %1', array(1 => $deletedContributions)), '', 'info');
     CRM_Core_Session::setStatus(ts('Total Selected Contribution(s): %1', array(1 => count($this->_contributionIds))), '', 'info');
   }
index 56fe36533bb3e326ff29f4a67b6a97986802da0b..fdbb8e5d2256bea1ffaab435af7e88a76b4fc49f 100644 (file)
@@ -223,7 +223,7 @@ AND    {$this->_componentClause}";
       $input['trxn_id']    = $contribution->trxn_id;
       $input['trxn_date']  = isset($contribution->trxn_date) ? $contribution->trxn_date : NULL;
 
-      // CRM_Contribute_BAO_Contribution::composeMessageArray expects mysql formatted date     
+      // CRM_Contribute_BAO_Contribution::composeMessageArray expects mysql formatted date
       $objects['contribution']->receive_date = CRM_Utils_Date::isoToMysql($objects['contribution']->receive_date);
 
       // CRM_Core_Error::debug('input',$input);
index 6daa42386ff6d31d2754c83c685cb21d54a31e4a..28ee4f21116215f1292336af762fc9cf7a53b712 100644 (file)
@@ -107,7 +107,7 @@ class CRM_Contribute_Form_Task_PDFLetterCommon extends CRM_Contact_Form_Task_PDF
     if ($updateStatus) {
       CRM_Core_Session::setStatus($updateStatus);
     }
-    
+
     CRM_Utils_System::civiExit(1);
   }
   //end of function
index b3ff90608b8a02b3f66cb32366c2a08b86bc1b80..e6c1b490f380967b610f8636dedbc377b4c6f109 100644 (file)
@@ -76,7 +76,7 @@ class CRM_Contribute_Form_Task_PickProfile extends CRM_Contribute_Form_Task {
     $validate = FALSE;
     //validations
     if (count($this->_contributionIds) > $this->_maxContributions) {
-      CRM_Core_Session::setStatus(ts("The maximum number of contributions you can select for Batch Update is %1. You have selected %2. Please select fewer contributions from your search results and try again.", array(1 => $this->_maxContributions, 2 => count($this->_contributionIds))), ts('Batch Update Error'), 'error');      
+      CRM_Core_Session::setStatus(ts("The maximum number of contributions you can select for Batch Update is %1. You have selected %2. Please select fewer contributions from your search results and try again.", array(1 => $this->_maxContributions, 2 => count($this->_contributionIds))), ts('Batch Update Error'), 'error');
       $validate = TRUE;
     }
 
index 98567f3d6670474f4556496440ae9c4ff231a711..88515565e34491621979650932e58281a7a869d2 100644 (file)
@@ -53,10 +53,10 @@ class CRM_Contribute_Form_Task_SearchTaskHookSample extends CRM_Contribute_Form_
     $query = "
     SELECT co.total_amount as amount,
            co.receive_date as receive_date,
-           co.source       as source,   
-           ct.display_name as display_name  
-      FROM civicrm_contribution co 
-INNER JOIN civicrm_contact ct ON ( co.contact_id = ct.id )      
+           co.source       as source,
+           ct.display_name as display_name
+      FROM civicrm_contribution co
+INNER JOIN civicrm_contact ct ON ( co.contact_id = ct.id )
      WHERE co.id IN ( $contribIDs )";
 
     $dao = CRM_Core_DAO::executeQuery($query,
index 541ac15694f37051a705e971fedda8399d4b10c3..d617fa1f156972d4011bbfd1c1283d011c11b48a 100644 (file)
@@ -53,7 +53,7 @@ class CRM_Contribute_Form_Task_Status extends CRM_Contribute_Form_Task {
    *
    * @return void
    * @access public
-   */ 
+   */
   function preProcess() {
     $id = CRM_Utils_Request::retrieve('id', 'Positive',
       $this, FALSE
index f1e46478c3c87074afb73ae6c91e29b4fa84ca3e..1cfa51082635db79375b7cbe0ecd2a8777d9f94b 100644 (file)
@@ -110,7 +110,7 @@ class CRM_Contribute_Info extends CRM_Core_Component_Info {
               'query' => "reset=1&action=add&context=standalone&mode=live",
               'ref' => 'new-contribution-cc',
               'title' => $title,
-            )));        
+            )));
       }
     }
   }
index 18f4b70eb007028db5d728ea57d40af222283680..8cb90d664fe7d284def2a1ae5ee3980232edfc5c 100644 (file)
@@ -339,7 +339,7 @@ class CRM_Contribute_Page_ContributionPage extends CRM_Core_Page {
       );
       $query = "
 SELECT      ccp.title
-FROM        civicrm_contribution_page ccp 
+FROM        civicrm_contribution_page ccp
 JOIN        civicrm_pcp cp ON ccp.id = cp.page_id
 WHERE       cp.page_id = {$id}
 AND         cp.page_type = 'contribute'