(NFC) Bring up API folder to style of future coder checker
authorSeamus Lee <seamuslee001@gmail.com>
Sat, 6 Apr 2019 04:50:26 +0000 (15:50 +1100)
committerColeman Watts <coleman@civicrm.org>
Sat, 6 Apr 2019 12:07:31 +0000 (08:07 -0400)
44 files changed:
api/v3/AclRole.php
api/v3/ActionSchedule.php
api/v3/Activity.php
api/v3/Attachment.php
api/v3/Case.php
api/v3/CaseType.php
api/v3/Contact.php
api/v3/Contribution.php
api/v3/CustomField.php
api/v3/CustomValue.php
api/v3/Cxn.php
api/v3/CxnApp.php
api/v3/Dashboard.php
api/v3/Domain.php
api/v3/EntityTag.php
api/v3/Event.php
api/v3/Exception.php
api/v3/Extension.php
api/v3/Generic.php
api/v3/Generic/Setvalue.php
api/v3/GroupOrganization.php
api/v3/Job.php
api/v3/LocBlock.php
api/v3/Logging.php
api/v3/Mailing.php
api/v3/MailingAB.php
api/v3/MailingComponent.php
api/v3/MailingContact.php
api/v3/MailingRecipients.php
api/v3/Membership.php
api/v3/Order.php
api/v3/Participant.php
api/v3/Payment.php
api/v3/PaymentProcessor.php
api/v3/Pcp.php
api/v3/Profile.php
api/v3/Relationship.php
api/v3/ReportTemplate.php
api/v3/SavedSearch.php
api/v3/Setting.php
api/v3/Survey.php
api/v3/System.php
api/v3/WordReplacement.php
api/v3/utils.php

index 5522845e21fa11637dcae0dff554f674d80864b3..0be3488d1dcf6254b6c574f043e5d6e7ec915224 100644 (file)
@@ -43,7 +43,6 @@ function civicrm_api3_acl_role_create($params) {
   return _civicrm_api3_basic_create(_civicrm_api3_get_BAO(__FUNCTION__), $params, 'EntityRole');
 }
 
-
 /**
  * AclRole create metadata.
  *
index d7f6e263f6a827aa7ee981239b1df8fa140b354e..6ad01642316327cc8b32a95b18206f1e20a9070a 100644 (file)
@@ -43,7 +43,6 @@ function civicrm_api3_action_schedule_get($params) {
   return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params, 'ActionSchedule');
 }
 
-
 /**
  * Create a new ActionSchedule.
  *
index 5fa7492538e79da7d6b05bf5552df35b71da1f7e..ff9ac1258c5bdb18d4644c059a356f9bd612988c 100644 (file)
@@ -31,7 +31,6 @@
  * @package CiviCRM_APIv3
  */
 
-
 /**
  * Creates or updates an Activity.
  *
@@ -291,7 +290,7 @@ function _civicrm_api3_activity_get_spec(&$params) {
  * @param array $params
  *   Array per getfields documentation.
  *
- * @return array API result array
+ * @return array
  *   API result array
  *
  * @throws \API_Exception
@@ -592,7 +591,7 @@ function _civicrm_api3_activity_fill_activity_contact_names(&$activities, $param
   $typeMap = [
     $assigneeType => 'assignee',
     $sourceType => 'source',
-    $targetType => 'target'
+    $targetType => 'target',
   ];
 
   $activityContactTypes = [$sourceType];
@@ -609,7 +608,7 @@ function _civicrm_api3_activity_fill_activity_contact_names(&$activities, $param
       'activity_id',
       'record_type_id',
       'contact_id.display_name',
-      'contact_id'
+      'contact_id',
     ],
     'check_permissions' => !empty($params['check_permissions']),
   ];
@@ -631,7 +630,6 @@ function _civicrm_api3_activity_fill_activity_contact_names(&$activities, $param
   }
 }
 
-
 /**
  * Delete a specified Activity.
  *
index ea4c42e4dad74dda30230fc7d59877d9437ea557..3d5f39a3b04ff527cc3f5c1332491b427e704950 100644 (file)
@@ -481,7 +481,8 @@ function _civicrm_api3_attachment_getfields() {
   // Would be hard to securely handle changes.
   $spec['entity_table']['title'] = CRM_Utils_Array::value('title', $spec['entity_table'], 'Entity Table') . ' (write-once)';
   $spec['entity_id'] = $entityFileFields['entity_id'];
-  $spec['entity_id']['title'] = CRM_Utils_Array::value('title', $spec['entity_id'], 'Entity ID') . ' (write-once)'; // would be hard to securely handle changes
+  // would be hard to securely handle changes
+  $spec['entity_id']['title'] = CRM_Utils_Array::value('title', $spec['entity_id'], 'Entity ID') . ' (write-once)';
   $spec['url'] = [
     'title' => 'URL (read-only)',
     'description' => 'URL for downloading the file (not searchable, expire-able)',
index 312c8ba64218df652c6d929e35c9f34c70eec1e0..8603714c7834d13ee21344ca127400ccd9f3dbf7 100644 (file)
@@ -32,7 +32,6 @@
  * @package CiviCRM_APIv3
  */
 
-
 /**
  * Open a new case, add client and manager roles, and standard timeline.
  *
@@ -67,11 +66,10 @@ function civicrm_api3_case_create($params) {
   if (empty($params['id'])) {
     // Creating a new case, so make sure we have the necessary parameters
     civicrm_api3_verify_mandatory($params, NULL, [
-        'contact_id',
-        'subject',
-        ['case_type', 'case_type_id'],
-      ]
-    );
+      'contact_id',
+      'subject',
+      ['case_type', 'case_type_id'],
+    ]);
   }
   else {
     // Update an existing case
@@ -744,7 +742,6 @@ function _civicrm_api3_case_format_params(&$params) {
   }
 }
 
-
 /**
  * It actually works a lot better to use the CaseContact api instead of the Case api
  * for entityRef fields so we can perform the necessary joins,
index 155caba2a58aaa87021c1cc754920ac96e8e4671..79dd471037f79af2c71954049350ba9f5a107f8d 100644 (file)
@@ -52,8 +52,10 @@ function civicrm_api3_case_type_create($params) {
   }
   // This is an existing case-type.
   if (!empty($params['id']) && isset($params['definition'])
-    && !CRM_Case_BAO_CaseType::isForked($params['id']) // which is not yet forked
-    && !CRM_Case_BAO_CaseType::isForkable($params['id']) // for which new forks are prohibited
+    // which is not yet forked
+    && !CRM_Case_BAO_CaseType::isForked($params['id'])
+    // for which new forks are prohibited
+    && !CRM_Case_BAO_CaseType::isForkable($params['id'])
   ) {
     unset($params['definition']);
   }
index 54ce858580f710a24838ed78d082315c34af2017..c493cad4c89d44fc1b0fc1374be5cc58d8da13b2 100644 (file)
@@ -524,7 +524,6 @@ function civicrm_api3_contact_delete($params) {
   }
 }
 
-
 /**
  * Check parameters passed in.
  *
@@ -549,12 +548,11 @@ function _civicrm_api3_contact_check_params(&$params) {
 
     case 'individual':
       civicrm_api3_verify_one_mandatory($params, NULL, [
-          'first_name',
-          'last_name',
-          'email',
-          'display_name',
-        ]
-      );
+        'first_name',
+        'last_name',
+        'email',
+        'display_name',
+      ]);
       break;
   }
 
@@ -1454,7 +1452,6 @@ WHERE     $whereClause
   return civicrm_api3_create_success($contacts, $params, 'Contact', 'get_by_location', $dao);
 }
 
-
 /**
  * Get parameters for getlist function.
  *
index 717c6709befe31a53162e6844ecbeee451c647fd..8366a44528cad7e9f00a223d29d137c53050ffa7 100644 (file)
@@ -672,7 +672,7 @@ function civicrm_api3_contribution_repeattransaction(&$params) {
 
     return _ipn_process_transaction($params, $contribution, $input, $ids, $original_contribution);
   }
-  catch(Exception $e) {
+  catch (Exception $e) {
     throw new API_Exception('failed to load related objects' . $e->getMessage() . "\n" . $e->getTraceAsString());
   }
 }
index 0ac81d5e94518d8d4b013a4f0555b80fff1b018a..322f37104cb803503d1d4fc126a7b596296187bb 100644 (file)
@@ -242,9 +242,8 @@ SELECT count(*)
       break;
   }
 
-  if (in_array($htmlType, [
-    'Select', 'Multi-Select', 'CheckBox', 'Radio']) &&
-    !isset($errors[$fieldName])
+  if (in_array($htmlType, ['Select', 'Multi-Select', 'CheckBox', 'Radio'])
+    && !isset($errors[$fieldName])
   ) {
     $options = CRM_Core_OptionGroup::valuesByID($fieldDetails['option_group_id']);
     if (!is_array($value)) {
index 7ada45ac29c746f90b614791ee8ed717ddd4c2eb..48c3f93b858367cfae24c2a0eb2870ed11916841 100644 (file)
@@ -31,7 +31,6 @@
  * @package CiviCRM_APIv3
  */
 
-
 /**
  * Sets custom values for an entity.
  *
index 6f12beb094c9df85112ebd2cc0d86b73f338349c..66ed809b8be503f15781f55fa2eda4f146695d59 100644 (file)
@@ -317,7 +317,7 @@ function civicrm_api3_cxn_create($params) {
     return civicrm_api3_create_success($result, $params, 'Cxn', 'create');
 
   }
-  catch(Exception $ex){
+  catch (Exception $ex) {
     throw $ex;
   }
 }
index 9e289c8d8af216f69153af35e7e0ce11a1a0c832..0045d3b08f2abf19d5bfcffd49a3a11797496880 100644 (file)
@@ -25,8 +25,8 @@
  +--------------------------------------------------------------------+
  */
 
-use \Civi\Cxn\Rpc\Message\AppMetasMessage;
-use \Civi\Cxn\Rpc\Message\GarbledMessage;
+use Civi\Cxn\Rpc\Message\AppMetasMessage;
+use Civi\Cxn\Rpc\Message\GarbledMessage;
 
 /**
  * The CxnApp API provides a pseudo-entity for exploring the list
index 1cd9bd98f44a1c795d842a82b9f359619a9dd40e..b343429cb792ea03f1a4e348d7cd8a40b1ea4567 100644 (file)
@@ -31,7 +31,6 @@
  * @package CiviCRM_APIv3
  */
 
-
 /**
  * Creates or updates an Dashlet.
  *
  */
 function civicrm_api3_dashboard_create($params) {
   civicrm_api3_verify_one_mandatory($params, NULL, [
-      'name',
-      'label',
-      'url',
-      'fullscreen_url',
-    ]
-  );
+    'name',
+    'label',
+    'url',
+    'fullscreen_url',
+  ]);
   return _civicrm_api3_basic_create(_civicrm_api3_get_BAO(__FUNCTION__), $params, 'Dashboard');
 }
 
index 552121fbe13c51a72498796528ad5a138f80cf2b..971bf86b3b3f86c6173eecf280aac11204e99d25 100644 (file)
@@ -76,16 +76,9 @@ function civicrm_api3_domain_get($params) {
       if (!empty($values['location']['phone'])) {
         $domain['domain_phone'] = [
           'phone_type' => CRM_Core_PseudoConstant::getLabel('CRM_Core_BAO_Phone', 'phone_type_id',
-            CRM_Utils_Array::value(
-              'phone_type_id',
-              $values['location']['phone'][1]
-            )
-          ),
-          'phone' => CRM_Utils_Array::value(
-            'phone',
-            $values['location']['phone'][1]
-          ),
-          ];
+            CRM_Utils_Array::value('phone_type_id', $values['location']['phone'][1])),
+          'phone' => CRM_Utils_Array::value('phone', $values['location']['phone'][1]),
+        ];
       }
 
       if (!empty($values['location']['address'])) {
index 6ed334f78124d9bfb1be27316c4151ed2d8a7fe6..48ccea152cd5d1f07a19ae55c023c70ac8753276 100644 (file)
@@ -190,7 +190,7 @@ function civicrm_api3_entity_tag_replace($params) {
 
     return civicrm_api3_create_success($result, $params, 'EntityTag', 'replace');
   }
-  catch(Exception $e) {
+  catch (Exception $e) {
     $transaction->rollback();
     return civicrm_api3_create_error($e->getMessage());
   }
index dba0f7da4684c5c22a7e0881da468587408fc3b4..5f58ebc6755a8ad7b7e4352172dadd8bddf0b8e1 100644 (file)
@@ -217,7 +217,6 @@ function _civicrm_api3_event_getisfull(&$event, $event_id) {
   $event[$event_id]['is_full'] = $event[$event_id]['available_places'] == 0 ? 1 : 0;
 }
 
-
 /**
  * Get event list parameters.
  *
index 8ed2ada6aca62a28f20d66e950071fc0a388aa34..4275c44a34da779f222f1648304d86fdbd781ae8 100644 (file)
@@ -24,6 +24,7 @@
  | see the CiviCRM license FAQ at http://civicrm.org/licensing        |
  +--------------------------------------------------------------------+
  */
+
 /**
  * Get a Dedupe Exception.
  *
@@ -36,6 +37,7 @@
 function civicrm_api3_exception_get($params) {
   return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params);
 }
+
 /**
  * Create or update an dedupe exception.
  *
index f079acaee7aa273984c0e691756c003483ec9b1d..a08275180192e15fdb7ca515aa3201d890ef800f 100644 (file)
@@ -301,13 +301,15 @@ function civicrm_api3_extension_refresh($params) {
 
   if ($params['local']) {
     $system->getManager()->refresh();
-    $system->getManager()->getStatuses(); // force immediate scan
+    // force immediate scan
+    $system->getManager()->getStatuses();
   }
 
   if ($params['remote']) {
     if ($system->getBrowser()->isEnabled() && empty($system->getBrowser()->checkRequirements)) {
       $system->getBrowser()->refresh();
-      $system->getBrowser()->getExtensions(); // force immediate download
+      // force immediate download
+      $system->getBrowser()->getExtensions();
     }
   }
 
@@ -358,7 +360,8 @@ function civicrm_api3_extension_get($params) {
       continue;
     }
     $info = CRM_Extension_System::createExtendedInfo($obj);
-    $info['id'] = $id++; // backward compatibility with indexing scheme
+    // backward compatibility with indexing scheme
+    $info['id'] = $id++;
     if (!empty($keys)) {
       if (in_array($key, $keys)) {
         $result[] = $info;
@@ -392,7 +395,8 @@ function civicrm_api3_extension_getremote($params) {
   $id = 0;
   foreach ($extensions as $key => $obj) {
     $info = [];
-    $info['id'] = $id++; // backward compatibility with indexing scheme
+    // backward compatibility with indexing scheme
+    $info['id'] = $id++;
     $info = array_merge($info, (array) $obj);
     $result[] = $info;
   }
index bbc58bfbd19c59fa488ab7b4a1d2009523591033..c88419ccb40b0ebd3226d3867079b0bc2795674c 100644 (file)
@@ -130,7 +130,8 @@ function civicrm_api3_generic_getfields($apiRequest, $unique = TRUE) {
           'api.required' => 1,
           'api.aliases' => [$lowercase_entity . '_id'],
           'type' => CRM_Utils_Type::T_INT,
-        ]];
+        ],
+      ];
       break;
 
     // Note: adding setvalue case here instead of in a generic spec function because
index b04b1242e3764e350d224d6af24a712182b4b6ee..3c6f4b1017adbca27356c65cfed06b76dc444fc2 100644 (file)
@@ -57,8 +57,7 @@ function civicrm_api3_generic_setValue($apiRequest) {
   $fields = civicrm_api($entity, 'getFields', [
     'version' => 3,
     'action' => 'create',
-    "sequential"]
-  );
+  ]);
   // getfields error, shouldn't happen.
   if ($fields['is_error']) {
     return $fields;
index 858df4bd97ef53b1d27c18b11b9257b66c110500..481e344337b975805b62eb507f39065f0679ba33 100644 (file)
@@ -31,7 +31,6 @@
  * @package CiviCRM_APIv3
  */
 
-
 /**
  * Get group organization record/s.
  *
index 0c28926fe3006132679a2f7ba0a791c53103a852..86cfa253d27f0c514b90e0bee397023197f34b64 100644 (file)
@@ -228,6 +228,7 @@ function civicrm_api3_job_send_reminder($params) {
     return civicrm_api3_create_error($result['messages']);
   }
 }
+
 /**
  * Adjust metadata for "send_reminder" action.
  *
@@ -244,6 +245,7 @@ function _civicrm_api3_job_send_reminder(&$params) {
     'title' => 'Action Schedule ID',
   ];
 }
+
 /**
  * Execute a specific report instance and send the output via email.
  *
@@ -464,7 +466,6 @@ function civicrm_api3_job_process_participant($params) {
   }
 }
 
-
 /**
  * This api checks and updates the status of all membership records for a given domain.
  *
index 5f9b1ce9e48d9c67a0617f163b6d810dcf2d7592..0e7ef7c6429de7bedd48ab57a25b872dc31a125d 100644 (file)
@@ -86,7 +86,7 @@ function civicrm_api3_loc_block_create($params) {
     _civicrm_api3_object_to_array($dao, $values[$dao->id]);
     return civicrm_api3_create_success($values, $params, 'LocBlock', 'create', $dao);
   }
-  throw New API_Exception('Unable to create LocBlock. Please check your params.');
+  throw new API_Exception('Unable to create LocBlock. Please check your params.');
 }
 
 /**
index 22ebe9bd3927ad977becb325b11c3f00426b0d55..7b1353ad8200ac71571b8ee7fb36c8ea90dad3d2 100644 (file)
@@ -37,7 +37,7 @@
  * @param array $params
  *
  * @return array
- *    API Success Array
+ *   API Success Array
  * @throws \API_Exception
  * @throws \Civi\API\Exception\UnauthorizedException
  */
@@ -88,7 +88,7 @@ function _civicrm_api3_logging_revert_spec(&$params) {
  * @param array $params
  *
  * @return array
- *    API Success Array
+ *   API Success Array
  * @throws \API_Exception
  * @throws \Civi\API\Exception\UnauthorizedException
  */
index 38ebc4161edf3ad51bd28d0f875b6257d135622b..86139b2d2fee7f0531dba33a4ef695fac5acda6d 100644 (file)
@@ -38,7 +38,7 @@
  * @param array $params
  *
  * @return array
- *    API Success Array
+ *   API Success Array
  * @throws \API_Exception
  * @throws \Civi\API\Exception\UnauthorizedException
  */
@@ -440,7 +440,8 @@ function _civicrm_api3_mailing_event_reply_spec(&$params) {
   $params['hash']['api.required'] = 1;
   $params['hash']['title'] = 'Hash';
   $params['replyTo']['api.required'] = 0;
-  $params['replyTo']['title'] = 'Reply To';//doesn't really explain adequately
+  //doesn't really explain adequately
+  $params['replyTo']['title'] = 'Reply To';
 }
 
 /**
@@ -635,17 +636,17 @@ function civicrm_api3_mailing_send_test($params) {
   $testEmailParams['emails'] = array_key_exists('test_email', $testEmailParams) ? explode(',', strtolower($testEmailParams['test_email'])) : NULL;
   if (!empty($params['test_email'])) {
     $query = CRM_Utils_SQL_Select::from('civicrm_email e')
-        ->select(['e.id', 'e.contact_id', 'e.email'])
-        ->join('c', 'INNER JOIN civicrm_contact c ON e.contact_id = c.id')
-        ->where('e.email IN (@emails)', ['@emails' => $testEmailParams['emails']])
-        ->where('e.on_hold = 0')
-        ->where('c.is_opt_out = 0')
-        ->where('c.do_not_email = 0')
-        ->where('c.is_deceased = 0')
-        ->where('c.is_deleted = 0')
-        ->groupBy('e.id')
-        ->orderBy(['e.is_bulkmail DESC', 'e.is_primary DESC'])
-        ->toSQL();
+      ->select(['e.id', 'e.contact_id', 'e.email'])
+      ->join('c', 'INNER JOIN civicrm_contact c ON e.contact_id = c.id')
+      ->where('e.email IN (@emails)', ['@emails' => $testEmailParams['emails']])
+      ->where('e.on_hold = 0')
+      ->where('c.is_opt_out = 0')
+      ->where('c.do_not_email = 0')
+      ->where('c.is_deceased = 0')
+      ->where('c.is_deleted = 0')
+      ->groupBy('e.id')
+      ->orderBy(['e.is_bulkmail DESC', 'e.is_primary DESC'])
+      ->toSQL();
     $dao = CRM_Core_DAO::executeQuery($query);
     $emailDetail = [];
     // fetch contact_id and email id for all existing emails
index 2ef7637d373e19e8714ece9f915b05e2b1f9d569..077b8bf2d44a1aa987c35e7cf327e7920aab3101 100644 (file)
@@ -135,13 +135,13 @@ function civicrm_api3_mailing_a_b_submit($params) {
         throw new API_Exception("Cannot transition to state 'Testing'");
       }
       civicrm_api3('Mailing', 'submit', $submitParams + [
-          'id' => $dao->mailing_id_a,
-          '_skip_evil_bao_auto_recipients_' => 0,
-        ]);
+        'id' => $dao->mailing_id_a,
+        '_skip_evil_bao_auto_recipients_' => 0,
+      ]);
       civicrm_api3('Mailing', 'submit', $submitParams + [
-          'id' => $dao->mailing_id_b,
-          '_skip_evil_bao_auto_recipients_' => 1,
-        ]);
+        'id' => $dao->mailing_id_b,
+        '_skip_evil_bao_auto_recipients_' => 1,
+      ]);
       CRM_Mailing_BAO_MailingAB::distributeRecipients($dao);
       break;
 
@@ -150,9 +150,9 @@ function civicrm_api3_mailing_a_b_submit($params) {
         throw new API_Exception("Cannot transition to state 'Final'");
       }
       civicrm_api3('Mailing', 'submit', $submitParams + [
-          'id' => $dao->mailing_id_c,
-          '_skip_evil_bao_auto_recipients_' => 1,
-        ]);
+        'id' => $dao->mailing_id_c,
+        '_skip_evil_bao_auto_recipients_' => 1,
+      ]);
       break;
 
     default:
index 47d59c8d530af8fba861f03a32eccfd3ff50550b..886dc2321cc28afb4fa9515b44be7bfb820b7c34 100644 (file)
@@ -44,7 +44,6 @@ function civicrm_api3_mailing_component_create($params) {
   return _civicrm_api3_basic_create(_civicrm_api3_get_BAO(__FUNCTION__), $params, 'MailingComponent');
 }
 
-
 /**
  * Adjust Metadata for Create action.
  *
index b4eedb52b14363df34f22fe5b7c6be1bcb021876..e4d693a258a2b149582d8f5ec4c3d16f9e4e43a0 100644 (file)
@@ -83,7 +83,8 @@ function _civicrm_api3_mailing_contact_get_spec(&$params) {
 
   $params['type'] = [
     'api.default' => 'Delivered',
-    'title' => 'Type', // doesn't really explain the field - but not sure I understand it to explain it better
+    // doesn't really explain the field - but not sure I understand it to explain it better
+    'title' => 'Type',
     'type' => CRM_Utils_Type::T_STRING,
     'options' => [
       'Delivered' => 'Delivered',
index 27be1c7cf16a3c018253764181470867b1266b20..ce2a8547e00d97d362a313a9d5251d38c0e08e7f 100644 (file)
@@ -31,7 +31,6 @@
  * @package CiviCRM_APIv3
  */
 
-
 /**
  * Returns array of MailingRecipients.
  *
index 7d9b86ac49e0515f037a2db452df53b2b3d51238..af6ba7a0fcd37708e6846906bdc6b5a2ac0fe3a1 100644 (file)
@@ -280,7 +280,6 @@ function _civicrm_api3_membership_get_customv2behaviour(&$params, $membershipTyp
   return $membershipValues;
 }
 
-
 /**
  * Non-standard behaviour inherited from v2.
  *
index fff662a96a61eb02500bd407626b6df1cf373f8f..e895e0fc1146d5ee3d6afd868f3be97d8b663a49 100644 (file)
@@ -189,7 +189,7 @@ function civicrm_api3_order_cancel($params) {
  */
 function _civicrm_api3_order_cancel_spec(&$params) {
   $params['contribution_id'] = [
-    'api.required' => 1 ,
+    'api.required' => 1,
     'title' => 'Contribution ID',
     'type' => CRM_Utils_Type::T_INT,
   ];
index d9b75b3be00403e64148f573f5edbf9a42ee8a25..368525482511d188ba94baf701c8b7653b9e734b 100644 (file)
@@ -128,7 +128,6 @@ function _civicrm_api3_participant_createlineitem(&$params, $participant) {
   }
 }
 
-
 /**
  * Adjust Metadata for Create action.
  *
index 25e4ae17e9b6c98b6d2bb517effb84ac2fd6106a..69367bf6f0878c6ee49e1b4d0c5a53c80e15c6bd 100644 (file)
@@ -150,12 +150,12 @@ function civicrm_api3_payment_create(&$params) {
 function _civicrm_api3_payment_create_spec(&$params) {
   $params = [
     'contribution_id' => [
-      'api.required' => 1 ,
+      'api.required' => 1,
       'title' => 'Contribution ID',
       'type' => CRM_Utils_Type::T_INT,
     ],
     'total_amount' => [
-      'api.required' => 1 ,
+      'api.required' => 1,
       'title' => 'Total Payment Amount',
       'type' => CRM_Utils_Type::T_FLOAT,
     ],
@@ -209,7 +209,7 @@ function _civicrm_api3_payment_get_spec(&$params) {
 function _civicrm_api3_payment_delete_spec(&$params) {
   $params = [
     'id' => [
-      'api.required' => 1 ,
+      'api.required' => 1,
       'title' => 'Payment ID',
       'type' => CRM_Utils_Type::T_INT,
       'api.aliases' => ['payment_id'],
@@ -228,7 +228,7 @@ function _civicrm_api3_payment_delete_spec(&$params) {
 function _civicrm_api3_payment_cancel_spec(&$params) {
   $params = [
     'id' => [
-      'api.required' => 1 ,
+      'api.required' => 1,
       'title' => 'Payment ID',
       'type' => CRM_Utils_Type::T_INT,
       'api.aliases' => ['payment_id'],
@@ -263,7 +263,8 @@ function civicrm_api3_payment_sendconfirmation($params) {
       'subject' => $result[1],
       'message_txt' => $result[2],
       'message_html' => $result[3],
-  ]]);
+    ],
+  ]);
 }
 
 /**
index 658b51aae3fce929fc8da9b8e898108800941b98..51e401c75e96bfd0f3adfb94859dc3a353c3e2ca 100644 (file)
@@ -93,7 +93,6 @@ function civicrm_api3_payment_processor_get($params) {
   return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params);
 }
 
-
 /**
  * Set default getlist parameters.
  *
index 3380fe242cf58c1df4c1b6a4d25a78c2de843461..71c61e7711f7a043e1853e1acc7070519e02f85e 100644 (file)
@@ -32,6 +32,7 @@
  *
  * @package CiviCRM_APIv3
  */
+
 /**
  * Create or update a survey.
  *
index 6c25483f369b21468478bc8e21d9f688313fe71f..1d6cfe80b95ade26f32ef7d56f5b398d807cfb45 100644 (file)
@@ -446,7 +446,7 @@ function _civicrm_api3_profile_getbillingpseudoprofile(&$params) {
     'api.email.get.1' => ['location_type_id' => 'Billing'],
     'api.email.get.2' => ['is_billing' => TRUE],
     'return' => 'api.email.get, api.address.get, api.address.getoptions, country, state_province, email, first_name, last_name, middle_name, ' . implode($addressFields, ','),
-   ]
+  ]
   );
 
   $values = [
@@ -611,10 +611,10 @@ function _civicrm_api3_buildprofile_submitfields($profileID, $optionsBehaviour =
       }
       /**
        * putting this on hold -this would cause the api to set the default - but could have unexpected behaviour
-      if (isset($result['values'][$realName]['default_value'])) {
-      //this would be the case for a custom field with a configured default
-      $profileFields[$profileID][$entityfield]['api.default'] = $result['values'][$realName]['default_value'];
-      }
+       * if (isset($result['values'][$realName]['default_value'])) {
+       * //this would be the case for a custom field with a configured default
+       * $profileFields[$profileID][$entityfield]['api.default'] = $result['values'][$realName]['default_value'];
+       * }
        */
     }
   }
index 0a7254cc9adcf737e5c21702d363a91a45da90e7..d08889cd896b44e5d697b9027052a946a8e1f326 100644 (file)
@@ -216,6 +216,6 @@ function _civicrm_api3_relationship_getoptions_spec(&$params) {
     'title' => ts('Is Form?'),
     'description' => $relationshipTypePrefix . ts('Formats the options for use'
       . ' in a form if true. The format is &lt;id&gt;_a_b => &lt;label&gt;'),
-    'type' => CRM_Utils_Type::T_BOOLEAN
+    'type' => CRM_Utils_Type::T_BOOLEAN,
   ];
 }
index 87d54afdce2e1370db633ce07bf9dfd6f6d4a25c..5fd747431899a5bbafbfbb1ca0ae916f2b2bd0fe 100644 (file)
@@ -135,7 +135,7 @@ function _civicrm_api3_report_template_getrows($params) {
     'option_group_name' => 'report_template',
     'return' => 'name',
     'value' => $params['report_id'],
-    ]
+  ]
   );
 
   $reportInstance = new $class();
@@ -154,7 +154,7 @@ function _civicrm_api3_report_template_getrows($params) {
   $reportInstance->beginPostProcessCommon();
   $sql = $reportInstance->buildQuery();
   $reportInstance->addToDeveloperTab($sql);
-  $rows = $metadata = $requiredMetadata  = [];
+  $rows = $metadata = $requiredMetadata = [];
   $reportInstance->buildRows($sql, $rows);
   $reportInstance->formatDisplay($rows);
 
@@ -191,6 +191,7 @@ function civicrm_api3_report_template_getstatistics($params) {
   $reportInstance->cleanUpTemporaryTables();
   return civicrm_api3_create_success($stats, $params, 'ReportTemplate', 'getstatistics', CRM_Core_DAO::$_nullObject, $metadata);
 }
+
 /**
  * Adjust metadata for template getrows action.
  *
index 4c6b7a2fd4ad46accce437f02d6d154fd75cc822..c515e890e247d45cd302bf9172b2f0b6dbd9cff2 100644 (file)
@@ -38,7 +38,8 @@
  * @param array $params
  *   Associative array of property name-value pairs to insert in new saved search.
  * @example SavedSearch/Create.php Std create example.
- * @return array api result array
+ * @return array
+ *   api result array
  *   {@getfields saved_search_create}
  * @access public
  */
@@ -72,7 +73,8 @@ function civicrm_api3_saved_search_create($params) {
  *   Associative array of property name-value pairs. $params['id'] should be
  *   the ID of the saved search to be deleted.
  * @example SavedSearch/Delete.php Std delete example.
- * @return array api result array
+ * @return array
+ *   api result array
  *   {@getfields saved_search_delete}
  * @access public
  */
@@ -86,7 +88,8 @@ function civicrm_api3_saved_search_delete($params) {
  * @param array $params
  *   An associative array of name-value pairs.
  * @example SavedSearch/Get.php Std get example.
- * @return array api result array
+ * @return array
+ *   api result array
  *   {@getfields saved_search_get}
  * @access public
  */
index 21a38ed52d6d77357af284786b4135f5d835fc89..e7d2338c254f9859b9130045d5d3a37f1d67b9ee 100644 (file)
@@ -44,12 +44,14 @@ function civicrm_api3_setting_getfields($params) {
       'name' => [
         'title' => 'name of setting field',
         'api.required' => 1,
-        'type' => CRM_Utils_Type::T_STRING],
+        'type' => CRM_Utils_Type::T_STRING,
+      ],
       'group' => [
         'api.required' => 0,
         'title' => 'Setting Group',
         'description' => 'Settings Group. This is required if the setting is not stored in config',
-        'type' => CRM_Utils_Type::T_STRING],
+        'type' => CRM_Utils_Type::T_STRING,
+      ],
     ];
     return civicrm_api3_create_success($result, $params, 'Setting', 'getfields');
   }
@@ -121,6 +123,7 @@ function civicrm_api3_setting_getdefaults(&$params) {
   }
   return civicrm_api3_create_success($defaults, $params, 'Setting', 'getfields');
 }
+
 /**
  * Metadata for Setting create function.
  *
@@ -320,6 +323,7 @@ function civicrm_api3_setting_get($params) {
   $result = CRM_Core_BAO_Setting::getItems($params, $domains, CRM_Utils_Array::value('return', $params, []));
   return civicrm_api3_create_success($result, $params, 'Setting', 'get');
 }
+
 /**
  * Metadata for setting create function.
  *
@@ -337,6 +341,7 @@ function _civicrm_api3_setting_get_spec(&$params) {
     'description' => 'if you know the group defining it will make the api more efficient',
   ];
 }
+
 /**
  * Returns value for specific parameter.
  *
@@ -417,7 +422,7 @@ function _civicrm_api3_setting_getDomainArray(&$params) {
   }
 
   if ($params['domain_id'] == 'current_domain') {
-    $params['domain_id']    = CRM_Core_Config::domainID();
+    $params['domain_id'] = CRM_Core_Config::domainID();
   }
 
   if ($params['domain_id'] == 'all') {
index dbea9f1ec3b3dd6b32dd46282e0c2ac7c5ad3923..3b4605a27d258ef197095d65f9a7560d3b85cd8e 100644 (file)
@@ -35,7 +35,6 @@
  * @package CiviCRM_APIv3
  */
 
-
 /**
  * Create or update a survey.
  *
index baf4fe197bc7d9349d3517d0a3c88440f32731dc..b15a471bbdc8d70649c724cce335e7483db8a836 100644 (file)
@@ -230,8 +230,10 @@ function civicrm_api3_system_get($params) {
   $config = CRM_Core_Config::singleton();
   $returnValues = [
     [
-      'version' => CRM_Utils_System::version(), // deprecated in favor of civi.version
-      'uf' => CIVICRM_UF, // deprecated in favor of cms.type
+      // deprecated in favor of civi.version
+      'version' => CRM_Utils_System::version(),
+      // deprecated in favor of cms.type
+      'uf' => CIVICRM_UF,
       'php' => [
         'version' => phpversion(),
         'time' => time(),
index 25bdbfd321dab156152a8f9b608bd32e22c282c7..b5bc93a19b4f0f01e603b6a9d7e46e236b34aa90 100644 (file)
@@ -46,7 +46,6 @@ function civicrm_api3_word_replacement_get($params) {
   return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params);
 }
 
-
 /**
  * Create a new Word Replacement.
  *
index de3253668a41d886c049b28cdc6494517665d954..bac0826f5cd3db9dc791b891cd3aa6e3ce642b78 100644 (file)
@@ -213,7 +213,7 @@ function civicrm_api3_create_success($values = 1, $params = [], $entity = NULL,
       'option_sort',
       'options',
       'prettyprint',
-      ]);
+    ]);
     if ($undefined) {
       $result['undefined_fields'] = array_merge($undefined);
     }
@@ -432,6 +432,7 @@ function _civicrm_api3_filter_fields_for_bao($entity, &$params, &$values) {
   $fields = $fields['values'];
   _civicrm_api3_store_values($fields, $params, $values);
 }
+
 /**
  * Store values.
  *
@@ -1767,9 +1768,9 @@ function _civicrm_api3_validate_unique_key(&$params, &$fieldName) {
     return;
   }
   $existing = civicrm_api($params['entity'], 'get', [
-      'version' => $params['version'],
-      $fieldName => $fieldValue,
-    ]);
+    'version' => $params['version'],
+    $fieldName => $fieldValue,
+  ]);
   // an entry already exists for this unique field
   if ($existing['count'] == 1) {
     // question - could this ever be a security issue?
@@ -1836,9 +1837,9 @@ function _civicrm_api3_generic_replace($entity, $params) {
     );
     foreach ($staleIDs as $staleID) {
       $delete = civicrm_api($entity, 'delete', [
-          'version' => $params['version'],
-          'id' => $staleID,
-        ]);
+        'version' => $params['version'],
+        'id' => $staleID,
+      ]);
       if (civicrm_error($delete)) {
         $transaction->rollback();
         return $delete;
@@ -1847,11 +1848,11 @@ function _civicrm_api3_generic_replace($entity, $params) {
 
     return civicrm_api3_create_success($creates, $params);
   }
-  catch(PEAR_Exception $e) {
+  catch (PEAR_Exception $e) {
     $transaction->rollback();
     return civicrm_api3_create_error($e->getMessage());
   }
-  catch(Exception $e) {
+  catch (Exception $e) {
     $transaction->rollback();
     return civicrm_api3_create_error($e->getMessage());
   }
@@ -1984,7 +1985,6 @@ function _civicrm_api_get_custom_fields($entity, &$params) {
   return $ret;
 }
 
-
 /**
  * Fill params array with alternate (alias) values where a field has an alias and that is filled & the main field isn't.
  *