INFRA-132 - CRM/Custom - 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:06:48 +0000 (15:06 -0800)
12 files changed:
CRM/Custom/Form/ChangeFieldType.php
CRM/Custom/Form/CustomData.php
CRM/Custom/Form/DeleteField.php
CRM/Custom/Form/Field.php
CRM/Custom/Form/Group.php
CRM/Custom/Form/Option.php
CRM/Custom/Import/Form/MapField.php
CRM/Custom/Import/Parser.php
CRM/Custom/Import/Parser/Api.php
CRM/Custom/Page/Field.php
CRM/Custom/Page/Group.php
CRM/Custom/Page/Option.php

index 64edf894c01db9f2b8576082812674795a605771..d6f45443742edf51e8ec79b8d483e4631eb3146f 100644 (file)
@@ -272,7 +272,8 @@ class CRM_Custom_Form_ChangeFieldType extends CRM_Core_Form {
         continue;
       }
       $value = CRM_Core_DAO::VALUE_SEPARATOR . $dao->{$column} . CRM_Core_DAO::VALUE_SEPARATOR;
-      $params = array(1 => array((string)$value, 'String'),
+      $params = array(
+      1 => array((string) $value, 'String'),
         2 => array($dao->id, 'Integer'),
       );
       CRM_Core_DAO::executeQuery($updateSql, $params);
@@ -289,7 +290,8 @@ class CRM_Custom_Form_ChangeFieldType extends CRM_Core_Form {
     $dao       = CRM_Core_DAO::executeQuery($selectSql);
     while ($dao->fetch()) {
       $values = self::explode($dao->{$column});
-      $params = array(1 => array((string)array_shift($values), 'String'),
+      $params = array(
+      1 => array((string) array_shift($values), 'String'),
         2 => array($dao->id, 'Integer'),
       );
       CRM_Core_DAO::executeQuery($updateSql, $params);
index 62738b674932745097e372eb634c0d90f3bc7102..4fbb0f69c39fe1d9820d0f393c1effbf77e1431b 100644 (file)
@@ -43,7 +43,7 @@ class CRM_Custom_Form_CustomData {
    * @param null|string $subName
    * @param null|string $subType
    * @param null|int $groupCount
-   * @param null|String $type
+   * @param string $type
    * @param null|int $entityID
    * @param null $onlySubType
    *
index d7abf160312f37e21ee3aa4a3fbb536c8a29c1f7..b531dc0ddaeaf02910d0bd1344294f1b60db227d 100644 (file)
@@ -63,7 +63,6 @@ class CRM_Custom_Form_DeleteField extends CRM_Core_Form {
   public function preProcess() {
     $this->_id = $this->get('id');
 
-
     $defaults = array();
     $params = array('id' => $this->_id);
     CRM_Core_BAO_CustomField::retrieve($params, $defaults);
index 0af9ef704d943ddbed16be822fe7df5d35ccddc6..b40f7ddb85931b806d8d2de0fd8253a8cad0931d 100644 (file)
@@ -132,18 +132,28 @@ class CRM_Custom_Form_Field extends CRM_Core_Form {
 
     if (self::$_dataToLabels == NULL) {
       self::$_dataToLabels = array(
-        array('Text' => ts('Text'), 'Select' => ts('Select'),
-          'Radio' => ts('Radio'), 'CheckBox' => ts('CheckBox'), 'Multi-Select' => ts('Multi-Select'),
+        array(
+      'Text' => ts('Text'),
+      'Select' => ts('Select'),
+          'Radio' => ts('Radio'),
+      'CheckBox' => ts('CheckBox'),
+      'Multi-Select' => ts('Multi-Select'),
           'AdvMulti-Select' => ts('Adv Multi-Select (obsolete)'),
           'Autocomplete-Select' => ts('Autocomplete-Select'),
         ),
-        array('Text' => ts('Text'), 'Select' => ts('Select'),
+        array(
+      'Text' => ts('Text'),
+      'Select' => ts('Select'),
           'Radio' => ts('Radio'),
         ),
-        array('Text' => ts('Text'), 'Select' => ts('Select'),
+        array(
+      'Text' => ts('Text'),
+      'Select' => ts('Select'),
           'Radio' => ts('Radio'),
         ),
-        array('Text' => ts('Text'), 'Select' => ts('Select'),
+        array(
+      'Text' => ts('Text'),
+      'Select' => ts('Select'),
           'Radio' => ts('Radio'),
         ),
         array('TextArea' => ts('TextArea'), 'RichTextEditor' => ts('Rich Text Editor')),
@@ -322,7 +332,8 @@ class CRM_Custom_Form_Field extends CRM_Core_Form {
       $optionTypes = array('1' => ts('Create a new set of options'));
     }
     else {
-      $optionTypes = array('1' => ts('Create a new set of options'),
+      $optionTypes = array(
+      '1' => ts('Create a new set of options'),
         '2' => ts('Reuse an existing set'),
       );
 
@@ -341,7 +352,6 @@ class CRM_Custom_Form_Field extends CRM_Core_Form {
         'onclick' => "showOptionSelect();"), '<br/>'
     );
 
-
     $contactGroups = CRM_Core_PseudoConstant::group();
     asort($contactGroups);
 
@@ -575,9 +585,10 @@ class CRM_Custom_Form_Field extends CRM_Core_Form {
     $name   = CRM_Utils_String::munge($title, '_', 64);
     $gId    = $self->_gid;  // CRM-7564
     $query  = 'select count(*) from civicrm_custom_field where ( name like %1 OR label like %2 ) and id != %3 and custom_group_id = %4';
-    $fldCnt = CRM_Core_DAO::singleValueQuery($query, array(1 => array($name, 'String'),
+    $fldCnt = CRM_Core_DAO::singleValueQuery($query, array(
+    1 => array($name, 'String'),
         2 => array($title, 'String'),
-        3 => array((int)$self->_id, 'Integer'),
+        3 => array((int) $self->_id, 'Integer'),
         4 => array($gId, 'Integer'),
       ));
     if ($fldCnt) {
index 4153d002c6b888fefc50815ecd60eb9cd88c88a3..a3d623ba10720af1359de691bc9f03358041ebc8 100644 (file)
@@ -124,9 +124,10 @@ class CRM_Custom_Form_Group extends CRM_Core_Form {
     $title  = $fields['title'];
     $name   = CRM_Utils_String::munge($title, '_', 64);
     $query  = 'select count(*) from civicrm_custom_group where ( name like %1 OR title like %2 ) and id != %3';
-    $grpCnt = CRM_Core_DAO::singleValueQuery($query, array(1 => array($name, 'String'),
+    $grpCnt = CRM_Core_DAO::singleValueQuery($query, array(
+    1 => array($name, 'String'),
         2 => array($title, 'String'),
-        3 => array((int)$self->_id, 'Integer'),
+        3 => array((int) $self->_id, 'Integer'),
       ));
     if ($grpCnt) {
       $errors['title'] = ts('Custom group \'%1\' already exists in Database.', array(1 => $title));
@@ -149,7 +150,7 @@ class CRM_Custom_Form_Group extends CRM_Core_Form {
     }
 
     if (!empty($fields['is_multiple'])) {
-        $self->assign('showMultiple', TRUE);
+      $self->assign('showMultiple', TRUE);
     }
 
     if (empty($fields['is_multiple']) && $fields['style'] == 'Tab with table') {
index ad68ce83015b47ec7e4203f6011447a21df00281..30a5d7443bfc80839e7c9f74df90182418c79723 100644 (file)
@@ -218,7 +218,6 @@ class CRM_Custom_Form_Option extends CRM_Core_Form {
         )
       );
 
-
       // if view mode pls freeze it with the done button.
       if ($this->_action & CRM_Core_Action::VIEW) {
         $this->freeze();
index eef135f9413a32db2610c618ccaf5db5476d8cdb..319cac424cb03f21f6f9233d4c6295aa60df39ca 100644 (file)
@@ -52,7 +52,7 @@ class CRM_Custom_Import_Form_MapField extends CRM_Contact_Import_Form_MapField {
   public function buildQuickForm() {
     parent::buildQuickForm();
     $this->addFormRule(array('CRM_Custom_Import_Form_MapField', 'formRule'));
-   }
+  }
 
   /**
    * Global validation rules for the form
index ad9aff845b6315a3ae0a8495a5433c4075efc2b6..e08e3a75205b397b1cd7b63a928ee885ed06290e 100644 (file)
@@ -243,7 +243,6 @@ abstract class CRM_Custom_Import_Parser extends CRM_Contact_Import_Parser {
 
     fclose($fd);
 
-
     if ($mode == self::MODE_PREVIEW || $mode == self::MODE_IMPORT) {
       $customHeaders = $mapper;
 
index 3905d638ac58c80f1df48813cd7280aac2309bae..e638069085b7d5878c326c12fa9aa5c0cbe43082 100644 (file)
@@ -82,43 +82,43 @@ class CRM_Custom_Import_Parser_Api extends CRM_Custom_Import_Parser {
    * @see CRM_Custom_Import_Parser_BaseClass::summary()
    */
   public function summary(&$values) {
-   $erroneousField = NULL;
-   $response      = $this->setActiveFieldValues($values, $erroneousField);
-   $errorRequired = FALSE;
-   $missingField = '';
-   $this->_params = &$this->getActiveFieldParams();
-
-   $formatted = $this->_params;
-   $this->_updateWithId = FALSE;
-   $this->_parseStreetAddress = CRM_Utils_Array::value('street_address_parsing', CRM_Core_BAO_Setting::valueOptions(CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME, 'address_options'), FALSE);
-
-   $this->_params = $this->getActiveFieldParams();
-   foreach ($this->_requiredFields as $requiredField) {
-     if (empty($this->_params[$requiredField])) {
-       $errorRequired = TRUE;
-       $missingField .= ' ' . $requiredField;
-       CRM_Contact_Import_Parser_Contact::addToErrorMsg($this->_entity, $requiredField);
-     }
-   }
-
-   if ($errorRequired) {
-    array_unshift($values, ts('Missing required field(s) :') . $missingField);
-    return CRM_Import_Parser::ERROR;
-   }
-
-   $errorMessage = NULL;
-
-   $contactType = $this->_contactType ? $this->_contactType : 'Organization';
-   CRM_Contact_Import_Parser_Contact::isErrorInCustomData($this->_params , $errorMessage, $contactType, NULL);
-
-   // pseudoconstants
-   if ($errorMessage) {
-     $tempMsg = "Invalid value for field(s) : $errorMessage";
-     array_unshift($values, $tempMsg);
-     $errorMessage = NULL;
-     return CRM_Import_Parser::ERROR;
-   }
-   return CRM_Import_Parser::VALID;
+    $erroneousField = NULL;
+    $response      = $this->setActiveFieldValues($values, $erroneousField);
+    $errorRequired = FALSE;
+    $missingField = '';
+    $this->_params = &$this->getActiveFieldParams();
+
+    $formatted = $this->_params;
+    $this->_updateWithId = FALSE;
+    $this->_parseStreetAddress = CRM_Utils_Array::value('street_address_parsing', CRM_Core_BAO_Setting::valueOptions(CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME, 'address_options'), FALSE);
+
+    $this->_params = $this->getActiveFieldParams();
+    foreach ($this->_requiredFields as $requiredField) {
+      if (empty($this->_params[$requiredField])) {
+        $errorRequired = TRUE;
+        $missingField .= ' ' . $requiredField;
+        CRM_Contact_Import_Parser_Contact::addToErrorMsg($this->_entity, $requiredField);
+      }
+    }
+
+    if ($errorRequired) {
+      array_unshift($values, ts('Missing required field(s) :') . $missingField);
+      return CRM_Import_Parser::ERROR;
+    }
+
+    $errorMessage = NULL;
+
+    $contactType = $this->_contactType ? $this->_contactType : 'Organization';
+    CRM_Contact_Import_Parser_Contact::isErrorInCustomData($this->_params, $errorMessage, $contactType, NULL);
+
+    // pseudoconstants
+    if ($errorMessage) {
+      $tempMsg = "Invalid value for field(s) : $errorMessage";
+      array_unshift($values, $tempMsg);
+      $errorMessage = NULL;
+      return CRM_Import_Parser::ERROR;
+    }
+    return CRM_Import_Parser::VALID;
   }
 
   /**
@@ -155,7 +155,7 @@ class CRM_Custom_Import_Parser_Api extends CRM_Custom_Import_Parser {
     $formatted['id'] = $this->_params['contact_id'];
     $setDateFields = array_intersect_key($this->_params, array_flip($this->_dateFields));
 
-    CRM_Contact_Import_Parser_Contact::formatCommonData($this->_params, $formatted, $formatted) ;
+    CRM_Contact_Import_Parser_Contact::formatCommonData($this->_params, $formatted, $formatted);
     foreach($formatted['custom'] as $key => $val) {
       $this->_params['custom_'.$key] = $val[-1]['value'];
     }
@@ -203,7 +203,8 @@ class CRM_Custom_Import_Parser_Api extends CRM_Custom_Import_Parser {
    *
    * @return void
    */
-  public function fini() {}
+  public function fini() {
+  }
 
   /**
    * Return the field ids and names (with groups) for import purpose.
@@ -215,7 +216,7 @@ class CRM_Custom_Import_Parser_Api extends CRM_Custom_Import_Parser {
    *
    * @static
    */
-   public function getGroupFieldsForImport( $id ) {
+  public function getGroupFieldsForImport($id) {
     $importableFields = array();
     $params = array('custom_group_id' => $id);
     $allFields = civicrm_api3('custom_field', 'get', $params);
index fdd68e57732ea9e270c9244b99886826f40f1601..97af1b2a63d315a29af4c8d9e8c3b6737df0e1fc 100644 (file)
@@ -231,7 +231,6 @@ class CRM_Custom_Page_Field extends CRM_Core_Page {
    */
   public function run() {
 
-
     $id = CRM_Utils_Request::retrieve('id', 'Positive',
       $this, FALSE, 0
     );
index 8a9d732bfaceb2b0de1dbf6d657cbd54dd02a2e9..ed5595d8c2fe290a3bc059f9f99cdc80043b1ea8 100644 (file)
@@ -244,7 +244,7 @@ class CRM_Custom_Page_Group extends CRM_Core_Page {
     $subTypes = array();
 
     $subTypes['Activity'] = CRM_Core_PseudoConstant::activityType(FALSE, TRUE, FALSE, 'label', TRUE);
-        $subTypes['Contribution'] = CRM_Contribute_PseudoConstant::financialType( );
+    $subTypes['Contribution'] = CRM_Contribute_PseudoConstant::financialType( );
     $subTypes['Membership'] = CRM_Member_BAO_MembershipType::getMembershipTypes(FALSE);
     $subTypes['Event'] = CRM_Core_OptionGroup::values('event_type');
     $subTypes['Grant'] = CRM_Core_OptionGroup::values('grant_type');
@@ -257,7 +257,6 @@ class CRM_Custom_Page_Group extends CRM_Core_Page {
     $subTypes['Household'] = CRM_Contact_BAO_ContactType::subTypePairs('Household', FALSE, NULL);
     $subTypes['Organization'] = CRM_Contact_BAO_ContactType::subTypePairs('Organization', FALSE, NULL);
 
-
     $relTypeInd = CRM_Contact_BAO_Relationship::getContactRelationshipType(NULL, 'null', NULL, 'Individual');
     $relTypeOrg = CRM_Contact_BAO_Relationship::getContactRelationshipType(NULL, 'null', NULL, 'Organization');
     $relTypeHou = CRM_Contact_BAO_Relationship::getContactRelationshipType(NULL, 'null', NULL, 'Household');
index 04b4dfa163ec8f8d3b34d881298078ece840b7e7..a12afd0f73db28138387486f5b8df2db42a04a23 100644 (file)
@@ -141,7 +141,8 @@ class CRM_Custom_Page_Option extends CRM_Core_Page {
 SELECT id, label
 FROM   civicrm_custom_field
 WHERE  option_group_id = %1";
-    $params = array(1 => array($optionGroupID, 'Integer'),
+    $params = array(
+    1 => array($optionGroupID, 'Integer'),
       2 => array($this->_fid, 'Integer'),
     );
     $dao = CRM_Core_DAO::executeQuery($query, $params);
@@ -282,7 +283,8 @@ ORDER BY weight, label
     }
 
     //as url contain $gid so append breadcrumb dynamically.
-    $breadcrumb = array(array('title' => ts('Custom Data Fields'),
+    $breadcrumb = array(array(
+    'title' => ts('Custom Data Fields'),
         'url' => CRM_Utils_System::url('civicrm/admin/custom/group/field', 'reset=1&gid=' . $this->_gid),
       ));
     CRM_Utils_System::appendBreadCrumb($breadcrumb);
@@ -308,10 +310,8 @@ ORDER BY weight, label
       $this, FALSE, 0
     );
 
-
     // what action to take ?
-    if (($action &
-        (CRM_Core_Action::UPDATE | CRM_Core_Action::ADD |
+    if (($action & (CRM_Core_Action::UPDATE | CRM_Core_Action::ADD |
           CRM_Core_Action::VIEW | CRM_Core_Action::DELETE
         )
       ) ||