INFRA-132 - CRM/ - Fix misc oddball syntax
authorTim Otten <totten@civicrm.org>
Fri, 9 Jan 2015 03:53:01 +0000 (19:53 -0800)
committerTim Otten <totten@civicrm.org>
Fri, 9 Jan 2015 03:57:27 +0000 (19:57 -0800)
53 files changed:
CRM/ACL/BAO/Cache.php
CRM/Activity/BAO/Activity.php
CRM/Contact/BAO/Contact.php
CRM/Contact/BAO/Contact/Utils.php
CRM/Contact/BAO/Group.php
CRM/Contact/BAO/ProximityQuery.php
CRM/Contact/BAO/SearchCustom.php
CRM/Contact/Form/CustomData.php
CRM/Contact/Form/Edit/Address.php
CRM/Contact/Form/Location.php
CRM/Contact/Form/Relationship.php
CRM/Contact/Form/Search.php
CRM/Contact/Form/Task.php
CRM/Contact/Form/Task/EmailCommon.php
CRM/Contact/Form/Task/Print.php
CRM/Contribute/BAO/Query.php
CRM/Contribute/Exception/InactiveContributionPageException.php
CRM/Contribute/Form/Contribution.php
CRM/Contribute/Form/Contribution/Confirm.php
CRM/Contribute/Form/Task/PDFLetterCommon.php
CRM/Contribute/Import/Field.php
CRM/Core/BAO/FinancialTrxn.php
CRM/Core/BAO/LabelFormat.php
CRM/Core/BAO/MessageTemplate.php
CRM/Core/BAO/OptionValue.php
CRM/Core/BAO/PdfFormat.php
CRM/Core/BAO/SchemaHandler.php
CRM/Core/BAO/Setting.php
CRM/Core/I18n/SchemaStructure_4_2_alpha1.php
CRM/Core/I18n/SchemaStructure_4_3_1.php
CRM/Core/I18n/SchemaStructure_4_5_beta2.php
CRM/Core/IDS.php
CRM/Core/Invoke.php
CRM/Core/Payment/PayPalProIPN.php
CRM/Core/Permission/Drupal.php
CRM/Core/Permission/Drupal8.php
CRM/Core/Resources.php
CRM/Custom/Import/Field.php
CRM/Event/Form/Participant.php
CRM/Event/Form/Registration/Confirm.php
CRM/Event/Form/Registration/Register.php
CRM/Event/Form/Task/Delete.php
CRM/Event/Page/EventInfo.php
CRM/Export/BAO/Export.php
CRM/Financial/BAO/PaymentProcessor.php
CRM/Financial/BAO/PaymentProcessorType.php
CRM/Member/Page/Tab.php
CRM/Report/Form.php
CRM/Report/Form/Contribute/Repeat.php
CRM/SMS/Page/Callback.php
CRM/Utils/Check.php
CRM/Utils/REST.php
CRM/Utils/Zip.php

index da9c7210a0a6f44f64e0ea5acbf68bd6ca17084f..56c8bd5d01a8769723db1fcb1ccaac7128c518c5 100644 (file)
@@ -140,7 +140,9 @@ WHERE contact_id = %1
     CRM_Contact_BAO_Contact_Permission::cache($id, CRM_Core_Permission::VIEW, TRUE);
   }
 
-  // deletes all the cache entries
+  /**
+   * Deletes all the cache entries.
+   */
   public static function resetCache() {
     // reset any static caching
     self::$_cache = NULL;
index 00d06152c2625f936bf26352f7215f9f2c47606a..c7b43a32144f45db1a304df2782c44d24fff0802 100644 (file)
@@ -2593,7 +2593,7 @@ INNER JOIN  civicrm_option_group grp ON ( grp.id = val.option_group_id AND grp.n
 
   /**
    * Used to copy custom fields and attachments from an existing activity to another.
-   * @see CRM_Case_Page_AJAX::_convertToCaseActivity() for example
+   * @see CRM_Case_Page_AJAX::_convertToCaseActivity()
    *
    * @param array $params
    */
index afdee2970b44a64f3e6f7186b80685af94e8ed39..b5b11cc6c8ddc63c8a96a4ea62ebd614eed1f8dc 100644 (file)
@@ -985,9 +985,9 @@ WHERE id={$id}; ";
    * Validate type of contact image
    *
    * @param array $params
-   * @param String $imageIndex
+   * @param string $imageIndex
    *   Index of image field.
-   * @param String $statusMsg
+   * @param string $statusMsg
    *   Status message to be set after operation.
    * @param string $opType
    *   Type of operation like fatal, bounce etc.
@@ -1052,8 +1052,10 @@ WHERE id={$id}; ";
   /**
    *  Function to set is_delete true or restore deleted contact
    *
-   * @param int $contact Contact DAO object
-   * @param boolean $restore true to set the is_delete = 1 else false to restore deleted contact,
+   * @param int $contact
+   *   Contact DAO object.
+   * @param bool $restore
+   *   True to set the is_delete = 1 else false to restore deleted contact,
    *                                i.e. is_delete = 0
    *
    * @return void
index a5beebd286baaf8d87e9ff5f8fad621d6942f542..45ae2c083d29a27db5ecf310fe84229e15f768ad 100644 (file)
@@ -471,8 +471,8 @@ WHERE id={$contactId}; ";
         if ($relationship->find(TRUE)) {
           CRM_Contact_BAO_Relationship::setIsActive($relationship->id, FALSE);
           CRM_Contact_BAO_Relationship::relatedMemberships($contactId, $relMembershipParams,
-            $ids = array(
-              ), CRM_Core_Action::DELETE
+            $ids = array(),
+            CRM_Core_Action::DELETE
           );
         }
         $relationship->free();
index 848f5d1fa2ee9f02b6327e6c8ecd64218b77feb2..15dcf89f685677507b7717db6b9d62ad2029a00c 100644 (file)
@@ -720,8 +720,8 @@ class CRM_Contact_BAO_Group extends CRM_Contact_DAO_Group {
    * @return array   $groupList associated array of group list
    *  -rp = rowcount
    *  -page= offset
-   *  @todo there seems little reason for the small number of functions that call this to pass in
-   *  params that then need to be translated in this function since they are coding them when calling
+   * @todo there seems little reason for the small number of functions that call this to pass in
+   * params that then need to be translated in this function since they are coding them when calling
    */
   static public function getGroupListSelector(&$params) {
     // format the params
index 83226594c03971cafdf6301bbc78e44903f61f43..f6106a189bc017f89ee445d7490371de67e42bb5 100644 (file)
@@ -328,7 +328,7 @@ ACOS(
 
     $query->_tables['civicrm_address'] = $query->_whereTables['civicrm_address'] = 1;
 
-    require_once (str_replace('_', DIRECTORY_SEPARATOR, $fnName) . '.php');
+    require_once str_replace('_', DIRECTORY_SEPARATOR, $fnName) . '.php';
     $fnName::format($proximityAddress);
     if (
       !is_numeric(CRM_Utils_Array::value('geo_code_1', $proximityAddress)) ||
index 29752582e45277ef38a161295cba0ee33027b58a..fd7d6e3779bded8a545e29c217373b15a28a278c 100644 (file)
@@ -91,7 +91,7 @@ class CRM_Contact_BAO_SearchCustom {
       $customSearchClass = $ext->keyToClass($customSearchClass);
     }
 
-    $error = include_once ($customSearchFile);
+    $error = include_once $customSearchFile;
     if ($error == FALSE) {
       CRM_Core_Error::fatal('Custom search file: ' . $customSearchFile . ' does not exist. Please verify your custom search settings in CiviCRM administrative panel.');
     }
index d863505cb0a28d072aef3678db69bb15b812d758..ade28593a0451ec6f94b37b684fed60c7f7c0fc6 100644 (file)
@@ -186,7 +186,7 @@ class CRM_Contact_Form_CustomData extends CRM_Core_Form {
         );
         if ($isMultiple) {
           $this->assign('multiRecordDisplay', $this->_multiRecordDisplay);
-          $saveButtonName = $this->_copyValueId ? 'Save a Copy': 'Save';
+          $saveButtonName = $this->_copyValueId ? 'Save a Copy' : 'Save';
           $this->addButtons(array(
               array(
                 'type' => 'upload',
index b1bb21a159eee050c6f78f4894ccef8a1ee69ec2..c3885983d1bc321e4a52faa0b5f27b259ec57b01 100644 (file)
@@ -235,8 +235,7 @@ class CRM_Contact_Form_Edit_Address {
 
       $template     = CRM_Core_Smarty::singleton();
       $tplGroupTree = $template->get_template_vars('address_groupTree');
-      $tplGroupTree = empty($tplGroupTree) ? array(
-        ) : $tplGroupTree;
+      $tplGroupTree = empty($tplGroupTree) ? array() : $tplGroupTree;
 
       $form->assign('address_groupTree', $tplGroupTree + array($blockId => $groupTree));
       // unset the temp smarty var that got created
index 6d6363c13c2dd89753c1c3abd288020c1cada338..2c8f35a39e058ee4e2e70ddf149d5d59869d9250 100644 (file)
@@ -87,7 +87,7 @@ class CRM_Contact_Form_Location {
 
     //build 1 instance of all blocks, without using ajax ...
     foreach ($form->_blocks as $blockName => $label) {
-      require_once (str_replace('_', DIRECTORY_SEPARATOR, 'CRM_Contact_Form_Edit_' . $blockName) . '.php');
+      require_once str_replace('_', DIRECTORY_SEPARATOR, 'CRM_Contact_Form_Edit_' . $blockName) . '.php';
       $name = strtolower($blockName);
 
       $instances = array(1);
index 1ee6aadd0c22e2d8f3eba296e8e7bca2bf6a4d57..e3f0e7e57f56046267c220514f284ba51d7af3a5 100644 (file)
@@ -262,7 +262,7 @@ class CRM_Contact_Form_Relationship extends CRM_Core_Form {
           'limit' => 1,
           'version' => 3,
         );
-        $note = civicrm_api('Note' ,'getsingle', $noteParams);
+        $note = civicrm_api('Note''getsingle', $noteParams);
         $defaults['note'] = CRM_Utils_Array::value('note', $note);
       }
     }
@@ -486,7 +486,7 @@ class CRM_Contact_Form_Relationship extends CRM_Core_Form {
           'entity_id' => $id,
           'entity_table' => 'civicrm_relationship',
         );
-        $existing = civicrm_api3('note' ,'get', $noteParams);
+        $existing = civicrm_api3('note''get', $noteParams);
         if (!empty($existing['id'])) {
           $noteParams['id'] = $existing['id'];
         }
index 964cc5c95b66624cc1bf08a93550b0a0076cb843..ef4560524dcf8974e42ed526c3a6261e709620ac 100644 (file)
@@ -807,7 +807,7 @@ class CRM_Contact_Form_Search extends CRM_Core_Form_Search {
         $setDynamic = TRUE;
       }
       else {
-        $selector = new  self::$_selectorName (
+        $selector = new self::$_selectorName(
           $this->_params,
           $this->_action,
           NULL,
index 9329af659dbce2ce12d56cd7e6b339c329771e0d..0e728ef1e473334bc06f0d74625e9a839e18e3fe 100644 (file)
@@ -291,7 +291,7 @@ class CRM_Contact_Form_Task extends CRM_Core_Form {
     }
 
     $selectorName = $this->controller->selectorName();
-    require_once(str_replace('_', DIRECTORY_SEPARATOR, $selectorName) . '.php');
+    require_once str_replace('_', DIRECTORY_SEPARATOR, $selectorName) . '.php';
 
     $fv = $this->get('formValues');
     $customClass = $this->get('customSearchClass');
index d1afbf7315b4054b3a6b9608f21ba7ebba0cec46..9b490f6939d5104f813b1b286c184ea0a9c758ec 100644 (file)
@@ -383,7 +383,7 @@ class CRM_Contact_Form_Task_EmailCommon {
               $ccValues['details'][] = "<a href='{$contactURL}'>" . $form->_contactDetails[$contactId]['display_name'] . "</a>";
               break;
             case 'bcc_id':
-              $bccValues['email'][]= '"' . $form->_contactDetails[$contactId]['sort_name'] . '" <' . $email . '>';
+              $bccValues['email'][] = '"' . $form->_contactDetails[$contactId]['sort_name'] . '" <' . $email . '>';
               $bccValues['details'][] = "<a href='{$contactURL}'>" . $form->_contactDetails[$contactId]['display_name'] . "</a>";
               break;
           }
index 75428d14a840a4db3623b98e2dfa4628ce4ef1ee..11747d38b8ef8709626db7c3523d697da0db7d31 100644 (file)
@@ -81,7 +81,7 @@ class CRM_Contact_Form_Task_Print extends CRM_Contact_Form_Task {
     }
 
     $selectorName = $this->controller->selectorName();
-    require_once (str_replace('_', DIRECTORY_SEPARATOR, $selectorName) . '.php');
+    require_once str_replace('_', DIRECTORY_SEPARATOR, $selectorName) . '.php';
 
     $returnP = isset($returnPropeties) ? $returnPropeties : "";
     $customSearchClass = $this->get('customSearchClass');
index afec1c972819a7fc325a6e7706a00eb73db66cee..c90cffea900f4e331551e3821a038a9bbc6cb65f 100644 (file)
@@ -1151,7 +1151,7 @@ class CRM_Contribute_BAO_Query {
     }
     // we only have recurring dates using this ATM so lets' short cut to find the table name
     $table = 'contribution_recur';
-    $fieldName = split($table . '_', $field);
+    $fieldName = explode($table . '_', $field);
     $query->dateQueryBuilder($values,
       'civicrm_' . $table, $field, $fieldName[1], $title
     );
index 2c8273dcb05dbeca54ead58634bff1f3d9d3743d..788ac732c40be9d56bfa28e5602daeb541ddb90b 100644 (file)
@@ -5,8 +5,7 @@
  * Date: 8/12/2014
  * Time: 10:33 AM
  */
-
-class CRM_Contribute_Exception_InactiveContributionPageException extends Exception{
+class CRM_Contribute_Exception_InactiveContributionPageException extends Exception {
   private $id;
   public function __construct($message, $id) {
     parent::__construct(ts($message));
index affb8d2e2d7458a6277afa424ff168f86810586a..6eac14fc7548d526232d633935d839b1d9fcdf6a 100644 (file)
@@ -1000,7 +1000,7 @@ class CRM_Contribute_Form_Contribution extends CRM_Contribute_Form_AbstractEditP
    */
   public function postProcess() {
     $sendReceipt = $pId = $contribution = $isRelatedId = FALSE;
-    $softParams = $softIDs =array();
+    $softParams = $softIDs = array();
 
     if ($this->_action & CRM_Core_Action::DELETE) {
       CRM_Contribute_BAO_Contribution::deleteContribution($this->_id);
@@ -1116,7 +1116,7 @@ class CRM_Contribute_Form_Contribution extends CRM_Contribute_Form_AbstractEditP
           $submittedValues['tax_amount'] = 'null';
         }
         if ($lineItems[$itemId]['tax_rate']) {
-          $lineItems[$itemId]['tax_amount'] = ($lineItems[$itemId]['tax_rate']/100) * $lineItems[$itemId]['line_total'];
+          $lineItems[$itemId]['tax_amount'] = ($lineItems[$itemId]['tax_rate'] / 100) * $lineItems[$itemId]['line_total'];
           $submittedValues['total_amount'] = $lineItems[$itemId]['line_total'] + $lineItems[$itemId]['tax_amount'];
           $submittedValues['tax_amount'] = $lineItems[$itemId]['tax_amount'];
         }
index bda9b01a8b3f54d1e0e64e2ea2990607666f22ae..b1e1be6db54e1591403981f1d0cdc7740f1cb782 100644 (file)
@@ -1123,7 +1123,7 @@ class CRM_Contribute_Form_Contribution_Confirm extends CRM_Contribute_Form_Contr
           if ($fixed_period_start_day) {
             $date = explode('-', date('Y-m-d'));
             $month = substr($fixed_period_start_day, 0, strlen($fixed_period_start_day) - 2);
-            $day = substr($fixed_period_start_day, -2) . "<br>";
+            $day = substr($fixed_period_start_day, -2) . "<br/>";
             $year = $date[0];
             $startDate = $year . '-' . $month . '-' . $day;
           }
index ec4b55adfef062d89a398045718e54e082c1ec96..99b6c5f92b739a2705673d6c54d36ffd06b24384 100644 (file)
@@ -76,7 +76,7 @@ class CRM_Contribute_Form_Task_PDFLetterCommon extends CRM_Contact_Form_Task_PDF
         $contact['is_sent'][$groupBy][$groupByID] = TRUE;
         if (!empty($formValues['email_options'])) {
           if (self::emailLetter($contact, $html[$contributionId], $isPDF, $formValues, $emailParams)) {
-            $emailed ++;
+            $emailed++;
             if (!stristr($formValues['email_options'], 'both')) {
               unset($html[$contributionId]);
             }
index 535b5fd75cbfe8fe89c80dc548a8edec14f7aae2..c55d4e7371ec8816a3b58591910c31904a7903e6 100644 (file)
@@ -176,7 +176,7 @@ class CRM_Contribute_Import_Field {
         else {
           return FALSE;
         }
-          break;
+        break;
 
       case 'payment_instrument':
         static $paymentInstruments = NULL;
index ed988c535aee6e1fcf265ac45f68929aeb6437dd..2a8e0a3dd68bacae27c43a44b91a34515ccc6486 100644 (file)
@@ -205,7 +205,7 @@ WHERE ft.entity_table = 'civicrm_contribution' AND ft.entity_id = %1
         ";
 
     $sqlParams = array(1 => array($entity_id, 'Integer'));
-    return  CRM_Core_DAO::singleValueQuery($query, $sqlParams);
+    return CRM_Core_DAO::singleValueQuery($query, $sqlParams);
 
   }
 
@@ -328,7 +328,7 @@ WHERE ceft.entity_id = %1";
       $financialAccountType = CRM_Contribute_PseudoConstant::financialAccountType($params['financial_type_id']);
       $accountRelationship = CRM_Core_PseudoConstant::accountOptionValues('account_relationship', NULL, " AND label IN ('Premiums Inventory Account is', 'Cost of Sales Account is')");
       $toFinancialAccount = !empty($params['isDeleted']) ? 'Premiums Inventory Account is' : 'Cost of Sales Account is';
-      $fromFinancialAccount = !empty($params['isDeleted']) ? 'Cost of Sales Account is': 'Premiums Inventory Account is';
+      $fromFinancialAccount = !empty($params['isDeleted']) ? 'Cost of Sales Account is' : 'Premiums Inventory Account is';
       $accountRelationship = array_flip($accountRelationship);
       $financialtrxn = array(
         'to_financial_account_id' => $financialAccountType[$accountRelationship[$toFinancialAccount]],
index 0ecd262fd0ce59ac258fe15fb695863b68fdc2ae..16d7145826e3f300d509ded1d3bdbb1bccf8a26b 100644 (file)
@@ -178,7 +178,7 @@ class CRM_Core_BAO_LabelFormat extends CRM_Core_DAO_OptionValue {
    * @return array   array of font names
    * @static
    */
-  public static function getFontNames($name='label_format') {
+  public static function getFontNames($name = 'label_format') {
     $label = new CRM_Utils_PDF_Label(self::getDefaultValues($name));
     return $label->getFontNames();
   }
@@ -256,7 +256,7 @@ class CRM_Core_BAO_LabelFormat extends CRM_Core_DAO_OptionValue {
    *
    * @return int  Group ID (null if Group ID doesn't exist)
    */
-  private static function _getGid($name='label_format') {
+  private static function _getGid($name = 'label_format') {
     if (!isset(self::$_gid[$name]) || !self::$_gid[$name]) {
       self::$_gid[$name] = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_OptionGroup', $name, 'id', 'name');
       if (!self::$_gid[$name]) {
@@ -292,7 +292,7 @@ class CRM_Core_BAO_LabelFormat extends CRM_Core_DAO_OptionValue {
    * @return array  (reference)   label format list
    * @static
    */
-  public static function &getList($namesOnly = FALSE, $groupName='label_format') {
+  public static function &getList($namesOnly = FALSE, $groupName = 'label_format') {
     static $list = array();
     if (self::_getGid($groupName)) {
       // get saved label formats from Option Value table
@@ -431,7 +431,7 @@ class CRM_Core_BAO_LabelFormat extends CRM_Core_DAO_OptionValue {
    * @return CRM_Core_DAO_OptionValue object
    * @static
    */
-  public static function retrieve(&$params, &$values, $groupName='label_format') {
+  public static function retrieve(&$params, &$values, $groupName = 'label_format') {
     $optionValue = new CRM_Core_DAO_OptionValue();
     $optionValue->copyValues($params);
     $optionValue->option_group_id = self::_getGid($groupName);
index 4786e100a7d643081de88c8d42897fff0d400764..99466c6d0d4cb4fdc608a67f41ef1632965023f3 100644 (file)
@@ -224,7 +224,7 @@ class CRM_Core_BAO_MessageTemplate extends CRM_Core_DAO_MessageTemplate {
           $$bodyType = CRM_Utils_Token::replaceDomainTokens($$bodyType, $domain, TRUE, $tokens, TRUE);
           $$bodyType = CRM_Utils_Token::replaceContactTokens($$bodyType, $contact, FALSE, $tokens, FALSE, TRUE);
           $$bodyType = CRM_Utils_Token::replaceComponentTokens($$bodyType, $contact, $tokens, TRUE);
-          $$bodyType = CRM_Utils_Token::replaceHookTokens($$bodyType, $contact , $categories, TRUE);
+          $$bodyType = CRM_Utils_Token::replaceHookTokens($$bodyType, $contact, $categories, TRUE);
         }
       }
       $html = $body_html;
index 336ff380fc91801a7f1abbca08b5c75352dff7d3..21fd31a6b57e2521418c338f7e1b215540766127 100644 (file)
@@ -58,7 +58,7 @@ class CRM_Core_BAO_OptionValue extends CRM_Core_DAO_OptionValue {
     if (!empty($params['id'])) {
       $ids = array('optionValue' => $params['id']);
     }
-    return  CRM_Core_BAO_OptionValue::add($params, $ids);
+    return CRM_Core_BAO_OptionValue::add($params, $ids);
   }
   /**
    * Set default Parameters
index 06e039bb436518de54f61f1efab2e033eeff27b8..40e3ca82bc9b1aad05d76b4ac967d315896e6098 100644 (file)
@@ -55,7 +55,7 @@ class CRM_Core_BAO_PdfFormat extends CRM_Core_DAO_OptionValue {
     ),
     'stationery' => array(
       'name' => 'stationery',
-      'type' =>CRM_Utils_Type::T_STRING,
+      'type' => CRM_Utils_Type::T_STRING,
       'default' => '',
     ),
     'orientation' => array(
index c7adca4c000e628dd0375a4a3841f86e7ade722b..4fa3c4dc1d6df8cb4016c1bf90624836757e090f 100644 (file)
@@ -363,7 +363,7 @@ ALTER TABLE {$tableName}
   /**
    * Delete a civiCRM-table
    *
-   * @param String $tableName
+   * @param string $tableName
    *   Name of the table to be created.
    *
    * @return bool
index 8c2a3b7f316cd97700fb705eefe80e53dcc79b16..7ab3f5778fc666fb345504b5ec225621dd48c87b 100644 (file)
@@ -555,7 +555,7 @@ class CRM_Core_BAO_Setting extends CRM_Core_DAO_Setting {
     );
     $settingParams = array_diff_key($params, array_fill_keys($ignoredParams, TRUE));
     $getFieldsParams = array('version' => 3);
-    if (count($settingParams) ==1) {
+    if (count($settingParams) == 1) {
       // ie we are only setting one field - we'll pass it into getfields for efficiency
       list($name) = array_keys($settingParams);
       $getFieldsParams['name'] = $name;
@@ -788,7 +788,7 @@ class CRM_Core_BAO_Setting extends CRM_Core_DAO_Setting {
     // whenever there is a possibility of more than one domain we must force it
     $config = CRM_Core_Config::singleton();
     if (empty($domainID)) {
-      $domainID= CRM_Core_Config::domainID();
+      $domainID = CRM_Core_Config::domainID();
     }
     $domain = new CRM_Core_DAO_Domain();
     $domain->id = $domainID;
index 216e8d13df9fbc9ca157af999ea77f9619a8d272..f14be3e03b5770e89e93a062ffd936399e7fa005 100644 (file)
  * $Id$
  *
  */
-class CRM_Core_I18n_SchemaStructure_4_2_alpha1
-{
+class CRM_Core_I18n_SchemaStructure_4_2_alpha1 {
   /**
    * @return array
    */
-  public static function &columns()
-  {
+  public static function &columns() {
     static $result = NULL;
     if (!$result) {
       $result = array(
index 537196f57526b5f37378d84b2004807193a685ba..f5838ef2265495b2627d9749aecb2093b6b5cd96 100644 (file)
@@ -31,8 +31,7 @@
  * $Id$
  *
  */
-class CRM_Core_I18n_SchemaStructure_4_3_1
-{
+class CRM_Core_I18n_SchemaStructure_4_3_1 {
   /**
    * @return array
    */
index 4c5b2b46501df4f5e1a2c159a3dc58c3a42ce653..df8b61c2ec91f1ffaca6b01180580ba6898f04e8 100644 (file)
  * Generated from schema_structure.tpl
  * DO NOT EDIT.  Generated by CRM_Core_CodeGen
  */
-class CRM_Core_I18n_SchemaStructure_4_5_beta2
-{
-  public static function &columns()
-  {
+class CRM_Core_I18n_SchemaStructure_4_5_beta2 {
+  public static function &columns() {
     static $result = NULL;
     if (!$result) {
       $result = array(
index 75713269ee1c6c71eb3dafc323883b80650fe636..cbfea6765af58a3b0362c1331dafa13ab9afb183 100644 (file)
@@ -181,7 +181,7 @@ class CRM_Core_IDS {
    *
    * @return boolean
    */
-  private function react(IDS_Report$result) {
+  private function react(IDS_Report $result) {
 
     $impact = $result->getImpact();
     if ($impact >= $this->threshold['kick']) {
index 73a35cc9a49d1620bb6cab437edc8bcecd473e43..add454bd06c55f0cdf82c3d789bbb59fd47a3854 100644 (file)
@@ -107,7 +107,7 @@ class CRM_Core_Invoke {
    * @void
    */
   static public function hackMenuRebuild($args) {
-    if (array('civicrm','menu','rebuild') == $args || array('civicrm', 'clearcache') == $args) {
+    if (array('civicrm', 'menu', 'rebuild') == $args || array('civicrm', 'clearcache') == $args) {
       // ensure that the user has a good privilege level
       if (CRM_Core_Permission::check('administer CiviCRM')) {
         self::rebuildMenuAndCaches();
@@ -268,7 +268,7 @@ class CRM_Core_Invoke {
 
       $result = NULL;
       if (is_array($item['page_callback'])) {
-        require_once (str_replace('_', DIRECTORY_SEPARATOR, $item['page_callback'][0]) . '.php');
+        require_once str_replace('_', DIRECTORY_SEPARATOR, $item['page_callback'][0]) . '.php';
         $result = call_user_func($item['page_callback']);
       }
       elseif (strstr($item['page_callback'], '_Form')) {
@@ -281,7 +281,7 @@ class CRM_Core_Invoke {
       }
       else {
         $newArgs = explode('/', $_GET[$config->userFrameworkURLVar]);
-        require_once (str_replace('_', DIRECTORY_SEPARATOR, $item['page_callback']) . '.php');
+        require_once str_replace('_', DIRECTORY_SEPARATOR, $item['page_callback']) . '.php';
         $mode = 'null';
         if (isset($pageArgs['mode'])) {
           $mode = $pageArgs['mode'];
index 673bbc60f664e9450035098238901da7b630b856..c1bc92e0356f2fc8a93716c30e3f9ab0b6236428 100644 (file)
@@ -531,7 +531,7 @@ INNER JOIN civicrm_membership_payment mp ON m.id = mp.membership_id AND mp.contr
     }
     $input['invoice'] = self::getValue('i', FALSE);
     $this->getInput($input, $ids);
-    if ($this-> transactionExists($input['trxn_id'])) {
+    if ($this->transactionExists($input['trxn_id'])) {
       throw new CRM_Core_Exception('This transaction has already been processed');
     }
 
index 9cc51f98dcec262815fe1ccbfb439d5e97698921..dbac73bc574007963f6df7caf67ebf53e15938bf 100644 (file)
@@ -36,7 +36,7 @@
 /**
  *
  */
-class CRM_Core_Permission_Drupal extends CRM_Core_Permission_DrupalBase{
+class CRM_Core_Permission_Drupal extends CRM_Core_Permission_DrupalBase {
 
   /**
    * Is this user someone with access for the entire system
index 380c0ea4fae4bb53264361f948b8ae41a4370346..a4bba0d6afd0b59fd679bb5de060b57fe36209a8 100644 (file)
@@ -36,7 +36,7 @@
 /**
  *
  */
-class CRM_Core_Permission_Drupal8 extends CRM_Core_Permission_DrupalBase{
+class CRM_Core_Permission_Drupal8 extends CRM_Core_Permission_DrupalBase {
   /**
    * Given a permission string, check for access requirements
    *
index b431eb30b5ec9a65ddd3bfcdbbd724e438ea18fc..8430d009dd0aa6ad5d1d6535dfbb73730e05ea4b 100644 (file)
@@ -333,7 +333,7 @@ class CRM_Core_Resources {
    * Variable substitutions can happen from client-side
    *
    * Note: this function rarely needs to be called directly and is mostly for internal use.
-   * @see CRM_Core_Resources::addScriptFile which automatically adds translated strings from js files
+   * See CRM_Core_Resources::addScriptFile which automatically adds translated strings from js files
    *
    * Simple example:
    * // From php:
index 79d41a1b5b757902d877a077a9acb812fedc6620..e4079d38ccb6377ac27b55411e39db49ca4a9820 100644 (file)
@@ -28,4 +28,5 @@
 /**
  * Class CRM_Custom_Import_Field
  */
-class CRM_Custom_Import_Field extends CRM_Contact_Import_Field{}
+class CRM_Custom_Import_Field extends CRM_Contact_Import_Field {
+}
index c2506d53b27cb7c4fb0734347f103800e96f6bf3..b6c0c0b4c1c6607d5b3121144cdc224c022565df 100644 (file)
@@ -882,7 +882,7 @@ class CRM_Event_Form_Participant extends CRM_Contribute_Form_AbstractEditPayment
       CRM_Event_BAO_Participant::deleteParticipant($this->_id);
       CRM_Core_Session::setStatus(ts('Selected participant was deleted successfully.'), ts('Record Deleted'), 'success');
       if (!empty($participantLinks)) {
-        $status = ts('The following participants no longer have an event fee recorded. You can edit their registration and record a replacement contribution by clicking the links below:') . '<br>' . $participantLinks;
+        $status = ts('The following participants no longer have an event fee recorded. You can edit their registration and record a replacement contribution by clicking the links below:') . '<br/>' . $participantLinks;
         CRM_Core_Session::setStatus($status, ts('Group Payment Deleted'));
       }
       return;
index d02c88692f2f0c4af007c39243283b6f5933cafd..37997cc45cbaf8ba5eb677edfb4c1c3ef5a76729 100644 (file)
@@ -409,7 +409,7 @@ class CRM_Event_Form_Registration_Confirm extends CRM_Event_Form_Registration {
     }
 
     if (!empty($errors)) {
-      $soldOutOptions = implode("<br>", $priceSetErrors['soldOutOptions']);
+      $soldOutOptions = implode("<br/>", $priceSetErrors['soldOutOptions']);
       CRM_Core_Session::setStatus(ts('You have been returned to the start of the registration process and any sold out events have been removed from your selections. You will not be able to continue until you review your booking and select different events if you wish. The following events were sold out:'), ts('Unfortunately some of your options have now sold out for one or more participants.'), 'error');
       CRM_Core_Session::setStatus(ts("{$soldOutOptions}"), ts('Sold out:'), 'error');
       CRM_Utils_System::redirect(CRM_Utils_System::url('civicrm/event/register', "_qf_Register_display=true&qfKey=" . $fields['qfKey']));
index 66681f472199b44f526c3d998cfdb33b27fa4d6e..32b5c0be3057de43eb6fd1038e6e0c2c0d56e9e0 100644 (file)
@@ -349,8 +349,16 @@ class CRM_Event_Form_Registration_Register extends CRM_Event_Form_Registration {
         // Hardcode maximum number of additional participants here for now. May need to make this configurable per event.
         // Label is value + 1, since the code sees this is ADDITIONAL participants (in addition to "self")
         $additionalOptions = array(
-          '' => '1', 1 => '2', 2 => '3', 3 => '4', 4 => '5',
-          5 => '6', 6 => '7', 7 => '8', 8 => '9', 9 => '10',
+          '' => '1',
+          1 => '2',
+          2 => '3',
+          3 => '4',
+          4 => '5',
+          5 => '6',
+          6 => '7',
+          7 => '8',
+          8 => '9',
+          9 => '10',
         );
         $element = $this->add('select', 'additional_participants',
           ts('How many people are you registering?'),
index 12f19c12c1ca804b30abb9e376a96f55a4f57fcb..e52e6c5dafba353ef478e70a1f4977222d444d53 100644 (file)
@@ -125,7 +125,7 @@ class CRM_Event_Form_Task_Delete extends CRM_Event_Form_Task {
 
     $status = array(ts('Participant(s) Deleted: %1 (Total Selected: %2)', array(1 => $deletedParticipants, 2 => count($this->_participantIds))));
     if (!empty($participantLinks)) {
-      $status[] = ts('The following participants no longer have an event fee recorded. You can edit their registration and record a replacement contribution by clicking the links below:') . '<br>' . $participantLinks;
+      $status[] = ts('The following participants no longer have an event fee recorded. You can edit their registration and record a replacement contribution by clicking the links below:') . '<br/>' . $participantLinks;
     }
     foreach ($status as $text) {
       CRM_Core_Session::setStatus($text, '', 'info');
index d6ff5b470532aaf90f68fc059152ceb728fceff2..37f9fd085e321ce8f54012f39dcfa3b63f77eee5 100644 (file)
@@ -102,7 +102,7 @@ class CRM_Event_Page_EventInfo extends CRM_Core_Page {
       );
 
       //CRM-10434
-      $discountId= CRM_Core_BAO_Discount::findSet($this->_id, 'civicrm_event');
+      $discountId = CRM_Core_BAO_Discount::findSet($this->_id, 'civicrm_event');
       if ($discountId) {
         $priceSetId = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_Discount', $discountId, 'price_set_id');
       }
index 77e75cafa73175a5feca36b8adf7aaf42c3b15d6..0ad4266f6832734e1b27eb95e31ba0a5acea1ed7 100644 (file)
@@ -1250,7 +1250,7 @@ INSERT INTO {$componentTable} SELECT distinct gc.contact_id FROM civicrm_group_c
     if ($parserClass[0] == 'CRM' &&
       count($parserClass) >= 3
     ) {
-      require_once(str_replace('_', DIRECTORY_SEPARATOR, $parserName) . ".php");
+      require_once str_replace('_', DIRECTORY_SEPARATOR, $parserName) . ".php";
       // ensure the functions exists
       if (method_exists($parserName, 'errorFileName') &&
         method_exists($parserName, 'saveFileName')
@@ -1279,10 +1279,10 @@ INSERT INTO {$componentTable} SELECT distinct gc.contact_id FROM civicrm_group_c
   public static function exportCustom($customSearchClass, $formValues, $order) {
     $ext = CRM_Extension_System::singleton()->getMapper();
     if (!$ext->isExtensionClass($customSearchClass)) {
-      require_once(str_replace('_', DIRECTORY_SEPARATOR, $customSearchClass) . '.php');
+      require_once str_replace('_', DIRECTORY_SEPARATOR, $customSearchClass) . '.php';
     }
     else {
-      require_once($ext->classToPath($customSearchClass));
+      require_once $ext->classToPath($customSearchClass);
     }
     $search = new $customSearchClass($formValues);
 
index 7908545f287abf556d20c6ef1c91a5be1f1a3866..adb740cb33910371ee3bccc0a8a055a31e7ff740 100644 (file)
@@ -36,8 +36,7 @@
 /**
  * This class contains payment processor related functions.
  */
-class CRM_Financial_BAO_PaymentProcessor extends CRM_Financial_DAO_PaymentProcessor
-{
+class CRM_Financial_BAO_PaymentProcessor extends CRM_Financial_DAO_PaymentProcessor {
   /**
    * Static holder for the default payment processor
    */
index 1335d0be69e52e17ae54ef5e1572d670c1284867..0108f5e5c97e714261bcfd1d77ca861939c4b6e5 100644 (file)
@@ -196,7 +196,7 @@ WHERE pp.payment_processor_type_id = ppt.id AND ppt.id = %1";
     $paymentProcessorType = new CRM_Financial_DAO_PaymentProcessorType();
     $paymentProcessorType->id = $paymentProcessorTypeId;
     if ($paymentProcessorType->delete()) {
-      CRM_Core_Session::setStatus(ts('Selected Payment Processor type has been deleted.<br>'), '', 'success');
+      CRM_Core_Session::setStatus(ts('Selected Payment Processor type has been deleted.<br/>'), '', 'success');
       return TRUE;
     }
   }
index 506944d823a9b0721aab4e77381689b2519c7429..ec75c1dccd04f7861f11bb93ca342eb6508f36e1 100644 (file)
@@ -348,8 +348,7 @@ class CRM_Member_Page_Tab extends CRM_Core_Page {
     if ($this->_action & CRM_Core_Action::VIEW) {
       $this->view();
     }
-    elseif ($this->_action & (CRM_Core_Action::UPDATE | CRM_Core_Action::ADD | CRM_Core_Action::DELETE
- | CRM_Core_Action::RENEW)) {
+    elseif ($this->_action & (CRM_Core_Action::UPDATE | CRM_Core_Action::ADD | CRM_Core_Action::DELETE | CRM_Core_Action::RENEW)) {
       self::setContext($this);
       $this->edit();
     }
index 8b9ba4dd28027b28d3c371abf971c41499b6a62b..374f1cbc50d15c4f844c6f8de7f81d0401e620f9 100644 (file)
@@ -842,7 +842,7 @@ class CRM_Report_Form extends CRM_Core_Form {
   /**
    * Setter for $_limitValue
    *
-   * @param number $_limitValue
+   * @param int $_limitValue
    */
   public function setLimitValue($_limitValue) {
     $this->_limitValue = $_limitValue;
@@ -851,7 +851,7 @@ class CRM_Report_Form extends CRM_Core_Form {
   /**
    * Setter for $_offsetValue
    *
-   * @param number $_offsetValue
+   * @param int $_offsetValue
    */
   public function setOffsetValue($_offsetValue) {
     $this->_offsetValue = $_offsetValue;
@@ -2752,9 +2752,7 @@ WHERE cg.extends IN ('" . implode("','", $this->_customGroupExtends) . "') AND
               if (in_array($op, array('bw', 'nbw')) && ($min || $max)) {
                 $value = "{$pair[$op]} $min " . ts('and') . " $max";
               }
-              elseif ($val && CRM_Utils_Array::value('operatorType', $field) &
-                self::OP_ENTITYREF
-              ) {
+              elseif ($val && CRM_Utils_Array::value('operatorType', $field) & self::OP_ENTITYREF) {
                 $this->setEntityRefDefaults($field, $tableName);
                 $result = civicrm_api3($field['attributes']['entity'], 'getlist',
                   array('id' => $val) +
index 9ad338b290fd205bbd4aae84117e097d0af59f00..c41c9fc4bd41d85d85a8a6e82fd0dda15ac89403 100644 (file)
@@ -509,7 +509,7 @@ LEFT JOIN civicrm_temp_civireport_repeat2 {$this->_aliases['civicrm_contribution
         }
       }
       if (!empty($tempErrors)) {
-        $errors['fields'] = implode("<br>", $tempErrors);
+        $errors['fields'] = implode("<br/>", $tempErrors);
       }
     }
 
index 734652ea5aad9af83b7e1cdc6e5a43b8d670ab97..d8a3f16e9d8d162742c0d7bb5893af6fec3a2ec6 100644 (file)
@@ -33,8 +33,7 @@
  *
  */
 
-class CRM_SMS_Page_Callback
-{
+class CRM_SMS_Page_Callback {
 
   public function run() {
     $provider = CRM_SMS_Provider::singleton($_REQUEST);
index 84030a707a3cc46bbbbd85d9718ff738db3b33ca..0d91df745b6208a74bde69144b03a4921e7e78a9 100644 (file)
@@ -115,8 +115,7 @@ class CRM_Utils_Check {
    * plugin status page or the Drupal admin/reports/status path.
    *
    * @return array of messages
-   * @see Drupal's hook_requirements() -
-   * https://api.drupal.org/api/drupal/modules%21system%21system.api.php/function/hook_requirements
+   * @link https://api.drupal.org/api/drupal/modules%21system%21system.api.php/function/hook_requirements
    */
   public function checkAll() {
     $checks = array();
index 15ac43d4b40dfed5837aff2a0c24c6c49d5ffb79..f4e01c39dd5343cfb4095f02f9419f1ab35788d5 100644 (file)
@@ -476,7 +476,7 @@ class CRM_Utils_REST {
       die ("SECURITY FATAL: the url can't contain '..'. Please report the issue on the forum at civicrm.org");
     }
 
-    $request = split('/', $request);
+    $request = explode('/', $request);
     $entity = _civicrm_api_get_camel_name($request[2]);
     $tplfile = _civicrm_api_get_camel_name($request[3]);
 
index 2499aec9fbf84ad1b920b8da106fed7e7c12999c..c445ce69033e9a28f3250e8c00b524b4bb61a592 100644 (file)
@@ -61,7 +61,8 @@ class CRM_Utils_Zip {
         else {
           return FALSE;
         }
-      }  elseif (0 != substr_compare($base, $filename, 0, $baselen)) {
+      }
+      elseif (0 != substr_compare($base, $filename, 0, $baselen)) {
         return FALSE;
       }
     }