INFRA-132 - CRM/Contact - phpcbf
authorTim Otten <totten@civicrm.org>
Tue, 6 Jan 2015 21:09:20 +0000 (13:09 -0800)
committerTim Otten <totten@civicrm.org>
Tue, 6 Jan 2015 23:04:26 +0000 (15:04 -0800)
16 files changed:
CRM/Contact/Import/Form/MapField.php
CRM/Contact/Import/ImportJob.php
CRM/Contact/Import/Parser.php
CRM/Contact/Page/AJAX.php
CRM/Contact/Page/DedupeException.php
CRM/Contact/Page/DedupeFind.php
CRM/Contact/Page/Inline/Address.php
CRM/Contact/Page/Inline/Email.php
CRM/Contact/Page/Inline/Phone.php
CRM/Contact/Page/View.php
CRM/Contact/Page/View/ContactSmartGroup.php
CRM/Contact/Page/View/Relationship.php
CRM/Contact/Page/View/Summary.php
CRM/Contact/Page/View/UserDashBoard.php
CRM/Contact/Selector.php
CRM/Contact/Selector/Custom.php

index 6ede1d1fae8daa8048566f2409ecbc3e104438c6..8f43dd285828926af5119117f8d9775177d7d824 100644 (file)
@@ -699,11 +699,13 @@ class CRM_Contact_Import_Form_MapField extends CRM_Import_Form_MapField {
     );
 
     //set respective mapper params to array.
-    foreach (array_keys($mapperParams) as $mapperParam)$$mapperParam = array();
+    foreach (array_keys($mapperParams) as $mapperParam) { $$mapperParam = array();
+    }
 
     for ($i = 0; $i < $this->_columnCount; $i++) {
       //set respective mapper value to null
-      foreach (array_values($mapperParams) as $mapperParam)$$mapperParam = NULL;
+      foreach (array_values($mapperParams) as $mapperParam) { $$mapperParam = NULL;
+      }
 
       $fldName            = CRM_Utils_Array::value(0, $mapperKeys[$i]);
       $selOne             = CRM_Utils_Array::value(1, $mapperKeys[$i]);
@@ -813,7 +815,7 @@ class CRM_Contact_Import_Form_MapField extends CRM_Import_Form_MapField {
 
       for ($i = 0; $i < $this->_columnCount; $i++) {
         $updateMappingFields = new CRM_Core_DAO_MappingField();
-        $updateMappingFields->id = CRM_Utils_Array::value($i,$mappingFieldsId);
+        $updateMappingFields->id = CRM_Utils_Array::value($i, $mappingFieldsId);
         $updateMappingFields->mapping_id = $params['mappingId'];
         $updateMappingFields->column_number = $i;
 
index ae11294d3a487223feeea915d13d6e2229202489..a9264e1d7c161baad725de2f5e7b0ee93c7187f7 100644 (file)
@@ -118,7 +118,8 @@ class CRM_Contact_Import_ImportJob {
       'mapperRelatedContactImProvider',
       'mapperRelatedContactWebsiteType',
     );
-    foreach ($properties as $property) $this->{"_$property"} = array();
+    foreach ($properties as $property) { $this->{"_$property"} = array();
+    }
   }
 
   /**
@@ -190,7 +191,8 @@ class CRM_Contact_Import_ImportJob {
 
     foreach ($mapper as $key => $value) {
       //set respective mapper value to null.
-      foreach (array_values($mapperPeroperties) as $perpertyVal)$$perpertyVal = NULL;
+      foreach (array_values($mapperPeroperties) as $perpertyVal) { $$perpertyVal = NULL;
+      }
 
       $fldName = CRM_Utils_Array::value(0, $mapper[$key]);
       $header = array($this->_mapFields[$fldName]);
index 7d8651aecab7f36bcf2dfb9195d63715cfb03517..24006dc1964e5385d447f53c2147d8391c33717d 100644 (file)
@@ -238,7 +238,7 @@ abstract class CRM_Contact_Import_Parser extends CRM_Import_Parser {
             $estimatedTime = $estimatedTime - ($estMinutes * 60);
           }
           $timeFormatted .= round($estimatedTime) . ' ' . ts('seconds');
-          $processedPercent = (int )(($this->_rowCount * 100) / $totalRowCount);
+          $processedPercent = (int ) (($this->_rowCount * 100) / $totalRowCount);
           $statusMsg = ts('%1 of %2 records - %3 remaining',
             array(1 => $this->_rowCount, 2 => $totalRowCount, 3 => $timeFormatted)
           );
@@ -248,7 +248,7 @@ abstract class CRM_Contact_Import_Parser extends CRM_Import_Parser {
 </div>
 ";
 
-          $contents = json_encode (array($processedPercent, $status));
+          $contents = json_encode(array($processedPercent, $status));
 
           file_put_contents($statusFile, $contents);
 
@@ -334,7 +334,6 @@ abstract class CRM_Contact_Import_Parser extends CRM_Import_Parser {
             } */
     }
 
-
     if ($mode == self::MODE_PREVIEW || $mode == self::MODE_IMPORT) {
       $customHeaders = $mapper;
 
index 74ec995e98f062fcc644dd85445627c3a73c1749..998f63e84b3ba0ae86a01d41ddb2134a8a397f8a 100644 (file)
@@ -483,7 +483,8 @@ ORDER BY sort_name ";
       else {
         while ($dao->fetch()) {
           if ($json) {
-            $elements[] = array('name' => addslashes($dao->sort_name),
+            $elements[] = array(
+            'name' => addslashes($dao->sort_name),
               'id' => $dao->id,
             );
           }
@@ -561,7 +562,7 @@ ORDER BY sort_name ";
       // make sure recordClass is namespaced (we cant check CRM since extensions can also use this)
       // but it should be at least 3 levels deep
       if (count($recordClass) >= 3) {
-        require_once (str_replace('_', DIRECTORY_SEPARATOR, $recordBAO) . ".php");
+        require_once str_replace('_', DIRECTORY_SEPARATOR, $recordBAO) . ".php";
         $method = 'setIsActive';
 
         if (method_exists($recordBAO, $method)) {
@@ -581,9 +582,9 @@ ORDER BY sort_name ";
   }
 
   /**
-     *  check the CMS username
-     *
-    */
+   *  check the CMS username
+   *
+   */
   static public function checkUserName() {
     $signer = new CRM_Utils_Signer(CRM_Core_Key::privateKey(), array('for', 'ts'));
     if (
@@ -711,11 +712,10 @@ LIMIT {$offset}, {$rowCount}
             CRM_Utils_Array::value('cid', $_GET)
           );
 
-
           $dao = CRM_Core_DAO::executeQuery($query);
 
           while ($dao->fetch()) {
-              //working here
+            //working here
             $result[] = array(
               'text' => '"' . $dao->name . '" <' . $dao->email . '>',
               'id' => (CRM_Utils_Array::value('id', $_GET)) ? "{$dao->id}::{$dao->email}" : '"' . $dao->name . '" <' . $dao->email . '>',
@@ -947,7 +947,6 @@ LIMIT {$offset}, {$rowCount}
     $searchRows       = array();
     $selectorElements = array('src', 'dst', 'weight', 'actions');
 
-
     $join = "LEFT JOIN civicrm_dedupe_exception de ON ( pn.entity_id1 = de.contact_id1 AND
                                                              pn.entity_id2 = de.contact_id2 )";
     $where = "de.id IS NULL";
index 5b9c432769d0128c490b93d20c2cf1692689f188..9ff75ba9bacece95b746da71dc158e0c33c8a4ba 100644 (file)
@@ -57,7 +57,8 @@ class CRM_Contact_Page_DedupeException extends CRM_Core_Page {
       $key = "{$exception->contact_id1}_{$exception->contact_id2}";
       $contactIds[$exception->contact_id1] = $exception->contact_id1;
       $contactIds[$exception->contact_id2] = $exception->contact_id2;
-      $dedupeExceptions[$key] = array('main' => array('id' => $exception->contact_id1),
+      $dedupeExceptions[$key] = array(
+      'main' => array('id' => $exception->contact_id1),
         'other' => array('id' => $exception->contact_id2),
       );
     }
index 74721d1bb50f98ade2b6a094671d2462cd603148..6b77d79f693b3d0fa89db8e6101d12c3f0c4763c 100644 (file)
@@ -52,7 +52,8 @@ class CRM_Contact_Page_DedupeFind extends CRM_Core_Page_Basic {
    *
    * @return array (reference) of action links
    */
-  public function &links() {}
+  public function &links() {
+  }
 
   /**
    * Browse all rule groups
index d325ea8cc25247b3f37820c0e0b1450fbcbdb206..5871f917a3feeb0ef0e6a1f63c17702c55f162ae 100644 (file)
@@ -60,7 +60,7 @@ class CRM_Contact_Page_Inline_Address extends CRM_Core_Page {
       $entityBlock = array('id' => $addressId);
       $address = CRM_Core_BAO_Address::getValues($entityBlock, FALSE, 'id');
       if (!empty($address)) {
-        foreach ($address as $key =>& $value) {
+        foreach ($address as $key => & $value) {
           $value['location_type'] = $locationTypes[$value['location_type_id']];
         }
       }
@@ -98,8 +98,8 @@ class CRM_Contact_Page_Inline_Address extends CRM_Core_Page {
     }
     $contact = new CRM_Contact_BAO_Contact( );
     $contact->id = $contactId;
-    $contact->find(true);
-    $privacy = array( );
+    $contact->find(TRUE);
+    $privacy = array();
     foreach ( CRM_Contact_BAO_Contact::$_commPrefs as $name ) {
       if ( isset( $contact->$name ) ) {
         $privacy[$name] = $contact->$name;
index df793285c87c5b244bb3b6d3ee04a0197136f701..5176525c0d9ac2f3c3b253f812f4bc52d272d612 100644 (file)
@@ -63,8 +63,8 @@ class CRM_Contact_Page_Inline_Email extends CRM_Core_Page {
 
     $contact = new CRM_Contact_BAO_Contact( );
     $contact->id = $contactId;
-    $contact->find(true);
-    $privacy = array( );
+    $contact->find(TRUE);
+    $privacy = array();
     foreach ( CRM_Contact_BAO_Contact::$_commPrefs as $name ) {
       if ( isset( $contact->$name ) ) {
         $privacy[$name] = $contact->$name;
index 60ddf85df8e83df645e586f0ea71c8a5d4cdfdf1..33c436fc0253f1d470a5167de442a8fa6f39d83b 100644 (file)
@@ -65,8 +65,8 @@ class CRM_Contact_Page_Inline_Phone extends CRM_Core_Page {
 
     $contact = new CRM_Contact_BAO_Contact( );
     $contact->id = $contactId;
-    $contact->find(true);
-    $privacy = array( );
+    $contact->find(TRUE);
+    $privacy = array();
     foreach ( CRM_Contact_BAO_Contact::$_commPrefs as $name ) {
       if ( isset( $contact->$name ) ) {
         $privacy[$name] = $contact->$name;
index 494c5f9111d30f10be24dad8fcdba93052d39413..133cb93735041021c386528bd9cc1bd057bd7301 100644 (file)
@@ -152,7 +152,7 @@ class CRM_Contact_Page_View extends CRM_Core_Page {
     $this->assign($navContacts);
 
     $path = CRM_Utils_System::url('civicrm/contact/view', 'reset=1&cid=' . $this->_contactId);
-    CRM_Utils_System::appendBreadCrumb(array(array('title' => ts('View Contact'), 'url' => $path,)));
+    CRM_Utils_System::appendBreadCrumb(array(array('title' => ts('View Contact'), 'url' => $path)));
 
     if ($image_URL = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact', $this->_contactId, 'image_URL')) {
       //CRM-7265 --time being fix.
@@ -348,7 +348,7 @@ class CRM_Contact_Page_View extends CRM_Core_Page {
    * @param int $cid
    */
   public static function addUrls(&$obj, $cid) {
-     $uid = CRM_Core_BAO_UFMatch::getUFId($cid);
+    $uid = CRM_Core_BAO_UFMatch::getUFId($cid);
 
     if ($uid) {
       $userRecordUrl = CRM_Core_Config::singleton()->userSystem->getUserRecordUrl($cid);
index f74d48658c62abcd4643427a16e6519814311597..5d5df074de09928d318512f71627f7b3a274eb2a 100644 (file)
@@ -57,11 +57,11 @@ class CRM_Contact_Page_View_ContactSmartGroup extends CRM_Core_Page {
     }
 
     $allGroup = CRM_Contact_BAO_GroupContactCache::contactGroup($this->_contactId);
-    $this->assign('groupSmart'  , NULL);
+    $this->assign('groupSmart', NULL);
     $this->assign('groupParent', NULL);
 
     if (!empty($allGroup)) {
-      $smart = $parent = array( );
+      $smart = $parent = array();
       foreach ($allGroup['group'] as $group) {
         // delete all smart groups which are also in static groups
         if (isset($staticGroups[$group['id']])) {
index 8f9b8a32349368ec6c82acb9a12b3bf9a38bd0df..354b00e08a4720c24c105c8c154359a328fd37dd 100644 (file)
@@ -101,7 +101,6 @@ class CRM_Contact_Page_View_Relationship extends CRM_Core_Page {
       "action=view&reset=1&id={$viewRelationship[$this->_id]['id']}&cid={$this->_contactId}&context=home"
     );
 
-
     $session = CRM_Core_Session::singleton();
     $recentOther = array();
 
index ea3b02cc6eb615865395fcbd505e4c8332bd25aa..7aa79b1b19a4a3d54f068890221e0027576dd7f8 100644 (file)
@@ -419,8 +419,7 @@ class CRM_Contact_Page_View_Summary extends CRM_Contact_Page_View {
    */
   public function getTemplateFileName() {
     if ($this->_contactId) {
-      $contactSubtypes = $this->get('contactSubtype') ?
-        explode(CRM_Core_DAO::VALUE_SEPARATOR, $this->get('contactSubtype')) : array();
+      $contactSubtypes = $this->get('contactSubtype') ? explode(CRM_Core_DAO::VALUE_SEPARATOR, $this->get('contactSubtype')) : array();
 
       // there could be multiple subtypes. We check templates for each of the subtype, and return the first one found.
       foreach ($contactSubtypes as $csType) {
index a6cab59f111d706aedeeede7580aa28236c2c744..7c3db5361ba56ef2fecc7a1787d03d70c8a2e54c 100644 (file)
@@ -237,7 +237,6 @@ class CRM_Contact_Page_View_UserDashBoard extends CRM_Core_Page {
         ),
       );
 
-
       if (CRM_Core_Permission::check('access CiviCRM')) {
         self::$_links = array_merge(self::$_links, array(
           CRM_Core_Action::DISABLE => array(
index 99ea33017a913060d3ee74bd588570d43a6890f0..11c927f94dadf20ce23b890de79b7b54f4e9195b 100644 (file)
@@ -792,15 +792,13 @@ class CRM_Contact_Selector extends CRM_Core_Selector_Base implements CRM_Core_Se
         // allow components to add more actions
         CRM_Core_Component::searchAction($row, $result->contact_id);
 
-        $row['contact_type'] = CRM_Contact_BAO_Contact_Utils::getImage($result->contact_sub_type ?
-          $result->contact_sub_type : $result->contact_type,
+        $row['contact_type'] = CRM_Contact_BAO_Contact_Utils::getImage($result->contact_sub_type ? $result->contact_sub_type : $result->contact_type,
           FALSE,
           $result->contact_id
         );
 
         $row['contact_type_orig'] = $result->contact_sub_type ? $result->contact_sub_type : $result->contact_type;
-        $row['contact_sub_type']  = $result->contact_sub_type ?
-          CRM_Contact_BAO_ContactType::contactTypePairs(FALSE, $result->contact_sub_type, ', ') : $result->contact_sub_type;
+        $row['contact_sub_type']  = $result->contact_sub_type ? CRM_Contact_BAO_ContactType::contactTypePairs(FALSE, $result->contact_sub_type, ', ') : $result->contact_sub_type;
         $row['contact_id'] = $result->contact_id;
         $row['sort_name'] = $result->sort_name;
         if (array_key_exists('id', $row)) {
@@ -895,7 +893,6 @@ class CRM_Contact_Selector extends CRM_Core_Selector_Base implements CRM_Core_Se
 
     $links = self::links($this->_context, $this->_contextMenu, $this->_key);
 
-
     foreach ($rows as $id => & $row) {
       if (!empty($this->_formValues['deleted_contacts']) && CRM_Core_Permission::check('access deleted contacts')
       ) {
@@ -924,7 +921,7 @@ class CRM_Contact_Selector extends CRM_Core_Selector_Base implements CRM_Core_Se
         }
         $row['action'] = CRM_Core_Action::formLink(
           $links,
-          null,
+          NULL,
           array('id' => $row['contact_id']),
           ts('more'),
           FALSE,
@@ -1080,7 +1077,7 @@ SELECT DISTINCT 'civicrm_contact', contact_a.id, contact_a.id, '$cacheKey', cont
    * language
    *
    * @param array(
-     reference)   $formValues   submitted formValues
+  reference)   $formValues   submitted formValues
    *
    * @return array              $qill         which contains an array of strings
    */
index 4c591d6075898c56edd82a7a51ff311ebb20efd3..1bd4f4c1bc99d3f94f3067553db5afb05be05b50 100644 (file)
@@ -123,14 +123,14 @@ class CRM_Contact_Selector_Custom extends CRM_Contact_Selector {
    */
   function __construct(
     $customSearchClass,
-    $formValues        = NULL,
-    $params            = NULL,
-    $returnProperties  = NULL,
-    $action            = CRM_Core_Action::NONE,
+    $formValues = NULL,
+    $params = NULL,
+    $returnProperties = NULL,
+    $action = CRM_Core_Action::NONE,
     $includeContactIds = FALSE,
     $searchChildGroups = TRUE,
-    $searchContext     = 'search',
-    $contextMenu       = NULL
+    $searchContext = 'search',
+    $contextMenu = NULL
   ) {
     $this->_customSearchClass = $customSearchClass;
     $this->_formValues = $formValues;
@@ -141,10 +141,10 @@ class CRM_Contact_Selector_Custom extends CRM_Contact_Selector {
     if (!$ext->isExtensionKey($customSearchClass)) {
       if ($ext->isExtensionClass($customSearchClass)) {
         $customSearchFile = $ext->classToPath($customSearchClass);
-        require_once ($customSearchFile);
+        require_once $customSearchFile;
       }
       else {
-        require_once (str_replace('_', DIRECTORY_SEPARATOR, $customSearchClass) . '.php');
+        require_once str_replace('_', DIRECTORY_SEPARATOR, $customSearchClass) . '.php';
       }
       $this->_search = new $customSearchClass( $formValues );
     }
@@ -360,8 +360,7 @@ class CRM_Contact_Selector_Custom extends CRM_Contact_Selector {
         }
 
         if ($image) {
-          $row['contact_type'] = CRM_Contact_BAO_Contact_Utils::getImage($dao->contact_sub_type ?
-            $dao->contact_sub_type : $dao->contact_type, FALSE, $contactID
+          $row['contact_type'] = CRM_Contact_BAO_Contact_Utils::getImage($dao->contact_sub_type ? $dao->contact_sub_type : $dao->contact_type, FALSE, $contactID
           );
         }
         $rows[] = $row;
@@ -378,7 +377,7 @@ class CRM_Contact_Selector_Custom extends CRM_Contact_Selector {
    * language
    *
    * @param array(
-     reference)   $formValues   submitted formValues
+  reference)   $formValues   submitted formValues
    *
    * @return array              $qill         which contains an array of strings
    */