comment fixes
authorEileen McNaughton <eileen@fuzion.co.nz>
Mon, 2 Feb 2015 07:23:29 +0000 (20:23 +1300)
committerEileen McNaughton <eileen@fuzion.co.nz>
Tue, 3 Feb 2015 00:57:32 +0000 (13:57 +1300)
20 files changed:
api/class.api.php
api/v3/ActivityContact.php
api/v3/Contribution.php
api/v3/CustomValue.php
api/v3/LocBlock.php
api/v3/LocationType.php
api/v3/MailSettings.php
api/v3/Mailing.php
api/v3/MailingAB.php
api/v3/MailingComponent.php
api/v3/MailingContact.php
api/v3/Membership.php
api/v3/MembershipPayment.php
api/v3/MembershipType.php
api/v3/MessageTemplate.php
api/v3/PriceFieldValue.php
api/v3/Profile.php
api/v3/Setting.php
api/v3/UFJoin.php
api/v3/Website.php

index c2ae50b8c73dca3c0baa14ed481581a0caccf787..119b7c1f3d3cf95c36cacf15a150d21ede248077 100644 (file)
@@ -269,15 +269,18 @@ class civicrm_api3 {
   }
 
   /**
-   * Initialize
+   * Initialize.
    */
   public function init() {
     CRM_Core_DAO::init($this->cfg->dsn);
   }
 
   /**
+   * Get attribute.
+   *
    * @param $name
    * @param null $value
+   *
    * @return $this
    */
   public function attr($name, $value = NULL) {
@@ -300,6 +303,8 @@ class civicrm_api3 {
   }
 
   /**
+   * Check if var is set.
+   *
    * @param string $name
    * @return bool
    */
@@ -308,7 +313,9 @@ class civicrm_api3 {
   }
 
   /**
-   * @param $name
+   * Get object.
+   *
+   * @param string $name
    * @return $this
    */
   public function __get($name) {
index 991fb91e6653f8aa4316659ee5ab343577a6e1af..c4aecb6cb6eb1b29ee166bffa9423832ee017b2b 100644 (file)
  */
 
 /**
- *  Add a record relating a contact with an activity
- *
- * Allowed @params array keys are:
- *
- * @example ActivityContact.php
+ *  Add a record relating a contact with an activity.
  *
  * @param array $params
  *
  * @return array
- *   Array of newly created activity contact records.
+ *   API result array.
  */
 function civicrm_api3_activity_contact_create($params) {
   return _civicrm_api3_basic_create(_civicrm_api3_get_BAO(__FUNCTION__), $params);
index 5278e6614a75eb477cb08c5be2e4585e45dca481..8b65f55ceacde4a4f7be14a3a2ae80a2286ac833 100644 (file)
@@ -226,8 +226,9 @@ function civicrm_api3_contribution_get($params) {
 }
 
 /**
- * This function is used to format the soft credit for backward compatibility
- * as of v4.4 we support multiple soft credit, so now contribution returns array with 'soft_credit' as key
+ * This function is used to format the soft credit for backward compatibility.
+ *
+ * As of v4.4 we support multiple soft credit, so now contribution returns array with 'soft_credit' as key
  * but we still return first soft credit as a part of contribution array
  * @param $contribution
  */
@@ -239,7 +240,7 @@ function _civicrm_api3_format_soft_credit(&$contribution) {
 }
 
 /**
- * Adjust Metadata for Get action
+ * Adjust Metadata for Get action.
  *
  * The metadata is used for setting defaults, documentation & validation.
  *
@@ -256,8 +257,10 @@ function _civicrm_api3_contribution_get_spec(&$params) {
 }
 
 /**
- * take the input parameter list as specified in the data model and
- * convert it into the same format that we use in QF and BAO object
+ * Legacy handling for contribution parameters.
+ *
+ * Take the input parameter list as specified in the data model and
+ * convert it into the same format that we use in QF and BAO object.
  *
  * @param array $params
  *   property name/value  pairs to insert in new contact.
@@ -273,7 +276,7 @@ function _civicrm_api3_contribute_format_params($params, &$values) {
 }
 
 /**
- * Adjust Metadata for Transact action
+ * Adjust Metadata for Transact action.
  *
  * The metadata is used for setting defaults, documentation & validation.
  *
@@ -290,7 +293,7 @@ function _civicrm_api3_contribution_transact_spec(&$params) {
  * Process a transaction and record it against the contact.
  *
  * @param array $params
- *   (reference ) input parameters.
+ *   Input parameters.
  *
  * @return array
  *   contribution of created or updated record (or a civicrm error)
@@ -330,7 +333,8 @@ function civicrm_api3_contribution_transact($params) {
 }
 
 /**
- * Send a contribution confirmation (receipt or invoice)
+ * Send a contribution confirmation (receipt or invoice).
+ *
  * The appropriate online template will be used (the existence of related objects
  * (e.g. memberships ) will affect this selection
  *
@@ -338,7 +342,6 @@ function civicrm_api3_contribution_transact($params) {
  *   Input parameters.
  *
  * @throws Exception
- *   Api result array.
  */
 function civicrm_api3_contribution_sendconfirmation($params) {
   $contribution = new CRM_Contribute_BAO_Contribution();
@@ -352,7 +355,7 @@ function civicrm_api3_contribution_sendconfirmation($params) {
 }
 
 /**
- * Adjust Metadata for sendconfirmation action
+ * Adjust Metadata for sendconfirmation action.
  *
  * The metadata is used for setting defaults, documentation & validation.
  *
@@ -383,15 +386,16 @@ function _civicrm_api3_contribution_sendconfirmation_spec(&$params) {
 }
 
 /**
- * Complete an existing (pending) transaction, updating related entities (participant, membership, pledge etc)
- * and taking any complete actions from the contribution page (e.g. send receipt)
+ * Complete an existing (pending) transaction.
+ *
+ * This will update related entities (participant, membership, pledge etc)
+ * and take any complete actions from the contribution page (e.g. send receipt).
  *
  * @todo - most of this should live in the BAO layer but as we want it to be an addition
  * to 4.3 which is already stable we should add it to the api layer & re-factor into the BAO layer later
  *
  * @param array $params
  *   Input parameters.
- * {@getfields Contribution_completetransaction}
  *
  * @throws API_Exception
  *   Api result array.
index 464e70d925c1a3d91fb6fd3ea0415d47240f3237..66a5dfb84cd5a371f03efa6e843428a011f9e60f 100644 (file)
@@ -136,8 +136,6 @@ function _civicrm_api3_custom_value_create_spec(&$params) {
  *
  * @throws API_Exception
  * @return array
- *
- *
  */
 function civicrm_api3_custom_value_get($params) {
 
index f360e598dc4eb568a3fa7ce4c98ff301030bec79..fb7c5c1d48b75a697ec0c37704d9609be535bb51 100644 (file)
  */
 
 /**
- * Create or update a loc_block
+ * Create or update a loc_block.
  *
  * @param array $params
  *   Associative array of property.
  *                       name/value pairs to insert in new 'loc_block'
- * @example LocBlockCreate.php Std Create example
  *
  * @return array
- *   api result array
- *   {@getfields loc_block_create}
+ *   API result array.
  */
 function civicrm_api3_loc_block_create($params) {
   $entities = array();
@@ -87,15 +85,14 @@ function civicrm_api3_loc_block_create($params) {
 }
 
 /**
- * Returns array of loc_blocks matching a set of one or more properties
+ * Returns array of loc_blocks matching a set of one or more properties.
  *
  * @param array $params
  *   Array of one or more valid property_name=>value pairs. If $params is set.
  *   as null, all loc_blocks will be returned (default limit is 25)
  *
  * @return array
- *   Array of matching loc_blocks
- *   {@getfields loc_block_get}
+ *   API result array.
  */
 function civicrm_api3_loc_block_get($params) {
   $options = _civicrm_api3_get_options_from_params($params);
@@ -123,17 +120,13 @@ function civicrm_api3_loc_block_get($params) {
 }
 
 /**
- * delete an existing loc_block
- *
- * This method is used to delete any existing loc_block.
- * id of the record to be deleted is required field in $params array
+ * Delete an existing loc_block.
  *
  * @param array $params
  *   Array containing id of the record to be deleted.
  *
  * @return array
- *   API result array
- *   {@getfields loc_block_delete}
+ *   API result array.
  */
 function civicrm_api3_loc_block_delete($params) {
   return _civicrm_api3_basic_delete('CRM_Core_DAO_LocBlock', $params);
index e03f7dbbe40c8d30a5d46d6a368d91836369eeaa..a2f466e93a993ceb0527d95308d231c54ef19530 100644 (file)
  */
 
 /**
- * Add a Location Type
- *
- * Allowed @params array keys are:
- *
- * @example LocationTypeCreate.php Standard Create Example
+ * Add a Location Type.
  *
  * @param array $params
  *
  * @return array
- *   API result array
- *   {@getfields email_create}
+ *   API result array.
  */
 function civicrm_api3_location_type_create($params) {
   //set display_name equal to name if it's not defined
@@ -71,31 +66,25 @@ function _civicrm_api3_location_type_create_spec(&$params) {
 }
 
 /**
- * Deletes an existing Location Type
+ * Deletes an existing Location Type.
  *
  * @param array $params
  *
- * @example LocationTypeDelete.php Standard Delete Example
- *
  * @return array
- *   API result array
- *   {@getfields LocationType_delete}
+ *   API result array.
  */
 function civicrm_api3_location_type_delete($params) {
   return _civicrm_api3_basic_delete(_civicrm_api3_get_BAO(__FUNCTION__), $params);
 }
 
 /**
- * Retrieve one or more Location Types
- *
- * @example LocationTypeGet.php Standard Get Example
+ * Retrieve one or more Location Types.
  *
  * @param array $params
  *   An associative array of name/value pairs.
  *
  * @return array
- *   api result
- *   {@getfields LocationType_get}
+ *   API result array.
  */
 function civicrm_api3_location_type_get($params) {
   return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params);
index b4b2d1784a06ee6b09dc4572699bc39b34e24959..37d46c697bcb44f7865ae89e3dcf3f452cfe7cff 100644 (file)
  */
 
 /**
- * Create or update a mail_settings
+ * Create or update a mail_settings.
  *
  * @param array $params
- *   Associative array of property.
+ *   Array of property.
  *                       name/value pairs to insert in new 'mail_settings'
- * @example mail_settingsCreate.php Std Create example
  *
  * @return array
- *   api result array
- *   {@getfields mail_settings_create}
+ *   API result array.
  */
 function civicrm_api3_mail_settings_create($params) {
   return _civicrm_api3_basic_create(_civicrm_api3_get_BAO(__FUNCTION__), $params);
@@ -62,7 +60,7 @@ function _civicrm_api3_mail_settings_create_spec(&$params) {
 }
 
 /**
- * Returns array of mail_settings  matching a set of one or more group properties
+ * Returns array of mail_settings  matching a set of one or more group properties.
  *
  * @param array $params
  *   Array of one or more valid.
@@ -70,26 +68,21 @@ function _civicrm_api3_mail_settings_create_spec(&$params) {
  *                       as null, all mail_settings will be returned
  *
  * @return array
- *   Array of matching mail_settings
- *   {@getfields mail_settings_get}
+ *   API result array.
  */
 function civicrm_api3_mail_settings_get($params) {
   return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params);
 }
 
 /**
- * delete an existing mail_settings
- *
- * This method is used to delete any existing mail_settings. id of the group
- * to be deleted is required field in $params array
+ * Delete an existing mail_settings.
  *
  * @param array $params
  *   Array containing id of the group.
  *                       to be deleted
  *
  * @return array
- *   api result array
- *   {@getfields mail_settings_delete}
+ *   API result array.
  */
 function civicrm_api3_mail_settings_delete($params) {
   return _civicrm_api3_basic_delete(_civicrm_api3_get_BAO(__FUNCTION__), $params);
index 4d9a89ffefbf3cf5176d86b1b6a54503fe9110f3..02c87b469e6b169dbe7aa260e115df976ab8ab34 100755 (executable)
@@ -40,7 +40,7 @@
  *
  * @param array $params
  *
- * @return array API Success Array
+ * @return array
  *    API Success Array
  * @throws \API_Exception
  * @throws \Civi\API\Exception\UnauthorizedException
index 888f08f764aa137bab30b5d2b4dc7e7310df4cf7..5849011d49dd29f30cee3274eadfbdaddfda2163 100755 (executable)
@@ -36,7 +36,7 @@
  */
 
 /**
- * Handle a create mailing ab testing
+ * Handle a create mailing ab testing.
  *
  * @param array $params
  *
@@ -70,7 +70,7 @@ function civicrm_api3_mailing_a_b_get($params) {
 }
 
 /**
- * Adjust Metadata for submit action
+ * Adjust Metadata for submit action.
  *
  * The metadata is used for setting defaults, documentation & validation.
  *
@@ -92,9 +92,10 @@ function _civicrm_api3_mailing_a_b_submit_spec(&$params) {
 }
 
 /**
- * Send A/B mail to A/B recipients respectively
+ * Send A/B mail to A/B recipients respectively.
  *
  * @param array $params
+ *
  * @return array
  * @throws API_Exception
  */
@@ -161,7 +162,7 @@ function civicrm_api3_mailing_a_b_submit($params) {
 }
 
 /**
- * Adjust Metadata for graph_stats action
+ * Adjust Metadata for graph_stats action.
  *
  * The metadata is used for setting defaults, documentation & validation.
  *
@@ -182,9 +183,10 @@ function _civicrm_api3_mailing_a_b_graph_stats_spec(&$params) {
 }
 
 /**
- * Send graph detail for A/B tests mail
+ * Send graph detail for A/B tests mail.
  *
  * @param array $params
+ *
  * @return array
  * @throws API_Exception
  */
index 48230f808bdc1b36e0fef1d6e2db6b6a6913950f..cf4184226e861085f636bc4c4efee6d9c4a64dfe 100644 (file)
  *
  * @throws API_Exception
  * @return array
- *   Array of newly created mailing_component property values.
+ *   API result array.
  */
 function civicrm_api3_mailing_component_create($params) {
   return _civicrm_api3_basic_create(_civicrm_api3_get_BAO(__FUNCTION__), $params);
 }
 
 /**
- * Get a mailing_component
- *
- * Allowed @params array keys are:
- * {@getfields mailing_component_get}
- * @example mailing_componentCreate.php
+ * Get a mailing_component.
  *
  * @param array $params
  *
  * @return array
- *   Array of retrieved mailing_component property values.
+ *   API result array.
  */
 function civicrm_api3_mailing_component_get($params) {
   return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params);
 }
 
 /**
- * Delete a mailing_component
- *
- * Allowed @params array keys are:
- * {@getfields mailing_component_delete}
- * @example mailing_componentCreate.php
+ * Delete a mailing_component.
  *
  * @param array $params
  *
  * @throws API_Exception
  * @return array
- *   Array of deleted values.
+ *   API result array.
  */
 function civicrm_api3_mailing_component_delete($params) {
   return _civicrm_api3_basic_delete(_civicrm_api3_get_BAO(__FUNCTION__), $params);
index fa73be4eb19d3a40793f525245b01c5b9ba171cb..d259f194b6b9304ba294b3c2aaf6d255df7cb399 100644 (file)
@@ -243,6 +243,8 @@ AND        meb.id IS NULL
 }
 
 /**
+ * Get bounced mailing contact records.
+ *
  * @param int $contactID
  * @param $offset
  * @param $limit
index f65051686b5e54d0f8014ecd0f5b86a377412dd0..0c7621a1d243af4de46f48c8709c755909e356e8 100644 (file)
  */
 
 /**
- * Deletes an existing contact membership
- *
- * This API is used for deleting a contact membership
+ * Deletes an existing contact membership.
  *
  * @param array $params
  *   Array array holding id - Id of the contact membership to be deleted.
  *
  * @return array
- *   api result
- *   {@getfields membership_delete}
+ *   API result array.
  */
 function civicrm_api3_membership_delete($params) {
   return _civicrm_api3_basic_delete(_civicrm_api3_get_BAO(__FUNCTION__), $params);
@@ -59,11 +56,10 @@ function civicrm_api3_membership_delete($params) {
  * Required parameters : membership_type_id and status_id.
  *
  * @param array $params
- *   An associative array of name/value property values of civicrm_membership.
+ *   Array of name/value property values of civicrm_membership.
  *
  * @return array
- *   Array of newly created membership property values.
- *   {@getfields membership_create}
+ *   API result array.
  */
 function civicrm_api3_membership_create($params) {
   // check params for membership id during update
@@ -252,7 +248,7 @@ function _civicrm_api3_membership_get_customv2behaviour(&$params, $membershipTyp
 
 
 /**
- * non-standard behaviour inherited from v2
+ * Non-standard behaviour inherited from v2.
  *
  * @param array $params
  *   Parameters passed into get function.
index 9f1e9a8305bade58b8204b755f5b5f079c4a023d..2f2e8c0f943d2d657b94944734f864485ffb3733 100644 (file)
  */
 
 /**
- * Add or update a link between contribution and membership
+ * Add or update a link between contribution and membership.
  *
  * @param array $params
- *   (reference ) input parameters.
+ *   Input parameters.
  *
  * @return array
- *   (reference )        membership_payment_id of created or updated record
- *   {@getfields MembershipPayment_create}
- * @example MembershipPaymentCreate.php
+ *   API result array.
  */
 function civicrm_api3_membership_payment_create($params) {
   return _civicrm_api3_basic_create(_civicrm_api3_get_BAO(__FUNCTION__), $params);
@@ -64,16 +62,13 @@ function _civicrm_api3_membership_payment_create_spec(&$params) {
 }
 
 /**
- * Retrieve one / all contribution(s) / membership(s) linked to a
- * membership / contrbution.
+ * Retrieve one or more membership payment records.
  *
  * @param array $params
  *   Input parameters.
  *
  * @return array
- *   array of properties, if error an array with an error id and error message
- * @example MembershipPaymentGet
- * {@getfields MembershipPayment_get}
+ *   API result array.
  */
 function civicrm_api3_membership_payment_get($params) {
   return _civicrm_api3_basic_get('CRM_Member_DAO_MembershipPayment', $params);
index b25d6233e0ba3dba7c8a6c013fdbbbdd631357d6..e5f102197f8a4cf2bf7aea9341434c858efff528 100644 (file)
  *
  * @copyright CiviCRM LLC (c) 2004-2014
  * @version $Id: MembershipType.php 30171 2010-10-14 09:11:27Z mover $
- *
  */
 
 /**
- * API to Create or update a Membership Type
+ * API to Create or update a Membership Type.
  *
  * @param array $params
- *   An associative array of name/value property values of civicrm_membership_type.
+ *   Array of name/value property values of civicrm_membership_type.
  *
  * @return array
- *   newly created or updated membership type property values.
+ *   API result array.
  */
 function civicrm_api3_membership_type_create($params) {
   return _civicrm_api3_basic_create(_civicrm_api3_get_BAO(__FUNCTION__), $params, 'Membership_type');
@@ -73,26 +72,22 @@ function _civicrm_api3_membership_type_create_spec(&$params) {
  * This api is used for finding an existing membership type.
  *
  * @param array $params
- *   An associative array of name/value property values of civicrm_membership_type.
- * {getfields MembershipType_get}
+ *   Array of name/value property values of civicrm_membership_type.
  *
  * @return array
- *   Array of all found membership type property values.
+ *   API result array.
  */
 function civicrm_api3_membership_type_get($params) {
   return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params);
 }
 
 /**
- * Deletes an existing membership type
- *
- * This API is used for deleting a membership type
- * Required parameters : id of a membership type
+ * Deletes an existing membership type.
  *
  * @param array $params
  *
- * @return bool
- *   true if success, else false
+ * @return array
+ *   API result array.
  */
 function civicrm_api3_membership_type_delete($params) {
   return _civicrm_api3_basic_delete(_civicrm_api3_get_BAO(__FUNCTION__), $params);
index 4c71eb937045ee99f6cb4c4250e85fa175d717a3..c768645f510d59e8fcc0fa4511fa8d4dbe89bd69 100644 (file)
@@ -70,19 +70,21 @@ function civicrm_api3_message_template_delete($params) {
 }
 
 /**
+ * Adjust metadata for message_template get action.
+ *
  * @param array $params
  */
 function _civicrm_api3_message_template_get_spec(&$params) {
 }
 
 /**
- * Retrieve one or more message_template
+ * Retrieve one or more message_template.
  *
  * @param array $params
- *   An associative array of name/value pairs.
+ *   Array of name/value pairs.
  *
  * @return array
- *   api result array
+ *   API result array.
  */
 function civicrm_api3_message_template_get($params) {
   return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params);
@@ -90,6 +92,7 @@ function civicrm_api3_message_template_get($params) {
 
 /**
  * Sends a template.
+ *
  * @param array $params
  */
 function civicrm_api3_message_template_send($params) {
index c7936d0371ce5fcfdccb04634e59fcdabf9ed2ac..bdf219873e1e671566abb7d91e287090138af7f6 100644 (file)
  */
 
 /**
- * Create or update a price_field_value
+ * Create or update a price_field_value.
  *
  * @param array $params
- *   Associative array of property.
+ *   Array of property.
  *                       name/value pairs to insert in new 'price_field_value'
- * @example PriceFieldValueCreate.php Std Create example
  *
  * @return array
- *   api result array
- *   {@getfields price_field_value_create}
+ *   API result array.
  */
 function civicrm_api3_price_field_value_create($params) {
   $ids = array();
@@ -76,22 +74,21 @@ function _civicrm_api3_price_field_value_create_spec(&$params) {
 }
 
 /**
- * Returns array of price_field_values  matching a set of one or more group properties
+ * Returns array of price_field_values  matching a set of one or more group properties.
  *
  * @param array $params
  *   Array of one or more valid property_name=>value pairs. If $params is set.
  *   as null, all price_field_values will be returned (default limit is 25)
  *
  * @return array
- *   Array of matching price_field_values
- *   {@getfields price_field_value_get}
+ *   API result array.
  */
 function civicrm_api3_price_field_value_get($params) {
   return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params);
 }
 
 /**
- * delete an existing price_field_value
+ * Delete an existing price_field_value.
  *
  * This method is used to delete any existing price_field_value. id of the group
  * to be deleted is required field in $params array
@@ -101,8 +98,7 @@ function civicrm_api3_price_field_value_get($params) {
  *   to be deleted
  *
  * @return array
- *   API result array
- *   {@getfields price_field_value_delete}
+ *   API result array.
  */
 function civicrm_api3_price_field_value_delete($params) {
   return _civicrm_api3_basic_delete(_civicrm_api3_get_BAO(__FUNCTION__), $params);
index 71d7d627ff2c7fe3458527b84ecc1d7a5d6dfdd1..3432a49364c7663c66bc83d1a4c0de52341af2c4 100644 (file)
@@ -150,6 +150,7 @@ function _civicrm_api3_profile_get_spec(&$params) {
 
 /**
  * Submit a set of fields against a profile.
+ *
  * Note choice of submit versus create is discussed CRM-13234 & related to the fact
  * 'profile' is being treated as a data-entry entity
  *
@@ -289,10 +290,13 @@ function civicrm_api3_profile_submit($params) {
 }
 
 /**
+ * Translate field names for BAO.
+ *
  * The api standards expect field names to be lower case but the BAO uses mixed case
  * so we accept 'email-primary' but pass 'email-Primary' to the BAO
  * we could make the BAO handle email-primary but this would alter the fieldname seen by hooks
  * & we would need to consider that change
+ *
  * @param string $fieldName
  *   API field name.
  *
index 19fe574344b21d8d93a1a90599d8836bdc57ef94..22c9e2c9261d9e6f494bb7a297d262ea2a648759 100644 (file)
@@ -78,7 +78,8 @@ function civicrm_api3_setting_getfields($params) {
 }
 
 /**
- * Alter metadata for getfields functions
+ * Alter metadata for getfields functions.
+ *
  * @param array $params
  */
 function _civicrm_api3_setting_getfields_spec(&$params) {
@@ -88,10 +89,14 @@ function _civicrm_api3_setting_getfields_spec(&$params) {
 }
 
 /**
- * Return default values for settings. We will domain key this as it could vary by domain (ie. urls)
+ * Return default values for settings.
+ *
+ * We will domain key this as it could vary by domain (ie. urls)
  * as we will be creating the option for a function rather than an value to be in the defaults
- * Note that is not in place as yet
+ * Note that is not in place as yet.
+ *
  * @param array $params
+ *
  * @return array
  * @throws \CiviCRM_API3_Exception
  * @throws \Exception
@@ -176,8 +181,10 @@ function _civicrm_api3_setting_revert_spec(&$params) {
 }
 
 /**
- * Revert settings to defaults
+ * Revert settings to defaults.
+ *
  * @param array $params
+ *
  * @return array
  * @throws \CiviCRM_API3_Exception
  * @throws \Exception
@@ -211,8 +218,8 @@ function _civicrm_api3_setting_fill_spec(&$params) {
   $params['domain_id'] = array(
     'api.default' => 'current_domain',
     'title' => 'Setting Domain',
-    'description' => 'Defaults may differ by domain - if you do not pass in a domain id this will default to the current domain
-      an array or "all" are acceptable values for multiple domains',
+    'description' => 'Defaults may differ by domain - if you do not pass in a domain id this will default to the '
+     . 'current domain, an array or "all" are acceptable values for multiple domains',
   );
 }
 
@@ -232,7 +239,7 @@ function civicrm_api3_setting_create($params) {
 }
 
 /**
- * Metadata for setting create function
+ * Metadata for setting create function.
  *
  * @param array $params
  *   Parameters as passed to the API.
@@ -265,7 +272,7 @@ function civicrm_api3_setting_get($params) {
   return civicrm_api3_create_success($result, $params, 'setting', 'get');
 }
 /**
- * Metadata for setting create function
+ * Metadata for setting create function.
  *
  * @param array $params
  *   Parameters as passed to the API.
@@ -282,16 +289,17 @@ function _civicrm_api3_setting_get_spec(&$params) {
   );
 }
 /**
- * Returns value for specific parameter. Function requires more fields than 'get' but is intended for
+ * Returns value for specific parameter.
+ *
+ * Function requires more fields than 'get' but is intended for
  * runtime usage & should be quicker
  *
  * @param array $params
- *   (reference) Array of one or more valid.
+ *   Array of one or more valid.
  *                       property_name=>value pairs.
  *
  * @return array
- *   Array of matching settings
- *   {@getfields setting_get}
+ *   API result array.
  */
 function civicrm_api3_setting_getvalue($params) {
   $config = CRM_Core_Config::singleton();
@@ -309,7 +317,7 @@ function civicrm_api3_setting_getvalue($params) {
 }
 
 /**
- * Metadata for setting create function
+ * Metadata for setting create function.
  *
  * @param array $params
  *   Parameters as passed to the API.
@@ -340,13 +348,17 @@ function _civicrm_api3_setting_getvalue_spec(&$params) {
 }
 
 /**
- * Converts domain input into an array. If an array is passed in this is used, if 'all' is passed
+ * Converts domain input into an array.
+ *
+ * If an array is passed in this is used, if 'all' is passed
  * in this is converted to 'all arrays'
  *
  * Really domain_id should always be set but doing an empty check because at the moment
  * using crm-editable will pass an id & default won't be applied
- * we did talk about id being a pseudonym for domain_id in this api so applying it here
+ * we did talk about id being a pseudonym for domain_id in this api so applying it here.
+ *
  * @param array $params
+ *
  * @return array
  * @throws \Exception
  */
index b8fe74dc777ce85256ac6ae85f548ea1c8b6d4dc..1623d0c699f6d0b9ffe0ca1ba7ec0179286bfbb2 100644 (file)
@@ -56,6 +56,7 @@ function civicrm_api3_uf_join_create($params) {
  *
  * @param array $params
  *   Array or parameters determined by getfields.
+ *
  * @todo - suspect module, weight don't need to be required - need to test
  */
 function _civicrm_api3_uf_join_create_spec(&$params) {
@@ -65,13 +66,14 @@ function _civicrm_api3_uf_join_create_spec(&$params) {
 }
 
 /**
- * Get CiviCRM UF_Joins (ie joins between CMS user records & CiviCRM user record
+ * Get CiviCRM UF_Joins (ie joins between CMS user records & CiviCRM user record.
  *
  * @param array $params
- *   (reference) an assoc array of name/value pairs.
+ *   Array of name/value pairs.
  *
  * @return array
- *   CiviCRM Result Array or null
+ *   API result array.
+ *
  * @todo Delete function missing
  */
 function civicrm_api3_uf_join_get($params) {
index 09ded9172a03a0d7bfdcc1860c20b26e5f991257..7cb54a9d87f01f79857d2aaceefd22cc68fcd991 100644 (file)
  */
 
 /**
- *  Add an Website for a contact.
+ * Add an Website for a contact.
  *
  * @param array $params
  *
  * @return array
- *   Array of newly created website property values.
+ *   API result array.
  * @todo convert to using basic create - BAO function non-std
  */
 function civicrm_api3_website_create($params) {