api comment improvements
authorEileen McNaughton <eileen@fuzion.co.nz>
Mon, 2 Feb 2015 07:05:45 +0000 (20:05 +1300)
committerEileen McNaughton <eileen@fuzion.co.nz>
Tue, 3 Feb 2015 00:57:31 +0000 (13:57 +1300)
29 files changed:
api/Exception.php
api/api.php
api/v3/ActivityType.php
api/v3/Address.php
api/v3/Attachment.php
api/v3/Constant.php
api/v3/Contact.php
api/v3/Dashboard.php
api/v3/Extension.php
api/v3/Group.php
api/v3/GroupContact.php
api/v3/GroupNesting.php
api/v3/LineItem.php
api/v3/Mailing.php
api/v3/MailingEventSubscribe.php
api/v3/MailingEventUnsubscribe.php
api/v3/MailingGroup.php
api/v3/MailingJob.php
api/v3/MembershipStatus.php
api/v3/Note.php
api/v3/Participant.php
api/v3/ParticipantPayment.php
api/v3/PaymentProcessorType.php
api/v3/Phone.php
api/v3/Pledge.php
api/v3/PriceSet.php
api/v3/SurveyRespondant.php
api/v3/UFField.php
api/v3/WordReplacement.php

index 8ec7eb3ae6a8212a13e790b1b6fa02d247dae97f..517755bae69980d075cf85b1bcb70c42aaaf3202 100644 (file)
@@ -51,7 +51,8 @@ class API_Exception extends Exception {
   }
 
   /**
-   * custom string representation of object
+   * Custom string representation of object.
+   *
    * @return string
    */
   public function __toString() {
@@ -106,7 +107,8 @@ class CiviCRM_API3_Exception extends Exception {
   }
 
   /**
-   * custom string representation of object
+   * Custom string representation of object.
+   *
    * @return string
    */
   public function __toString() {
@@ -114,6 +116,8 @@ class CiviCRM_API3_Exception extends Exception {
   }
 
   /**
+   * Get error code.
+   *
    * @return mixed
    */
   public function getErrorCode() {
index 5b0a76c1d6122fea47d5e9dd23173210fca36db2..c9b5fbe564dc912928f541d4b0d6e36d8f3be95b 100644 (file)
@@ -107,6 +107,8 @@ function civicrm_error($result) {
 }
 
 /**
+ * Get camel case version of entity or action name.
+ *
  * @param $entity
  *
  * @return string
@@ -116,7 +118,9 @@ function _civicrm_api_get_camel_name($entity) {
 }
 
 /**
- * Swap out any $values vars - ie. the value after $value is swapped for the parent $result
+ * Swap out any $values vars.
+ *
+ * Ie. the value after $value is swapped for the parent $result
  * 'activity_type_id' => '$value.testfield',
  * 'tag_id'  => '$value.api.tag.create.id',
  * 'tag1_id' => '$value.api.entity.create.0.id'
index 6d2b4965a3a09847cb94c708914735e73797f044..5affa0690c6e5b39c5254e5945b8be9524f9801f 100644 (file)
@@ -106,7 +106,7 @@ function _civicrm_api3_activity_type_create_spec(&$params) {
  *
  * @param array $params
  *   Array including id of activity_type to delete.
-
+ *
  * @return array
  *   API result array
  *
index 463490bd189b92427400c7c1822ff1027ee67234..472e85fc0be99600baf24dee0b43355bdeb485ba 100644 (file)
@@ -36,7 +36,7 @@
  */
 
 /**
- *  Add an Address for a contact.
+ * Add an Address for a contact.
  *
  * @param array $params
  *   Array per getfields metadata.
index 70f9d74ae72a57c266f3ae712e6dd812c0b413d4..a77cc1adaf39131334782eb490593ec7479979a9 100644 (file)
@@ -70,7 +70,7 @@
  */
 
 /**
- * Adjust metadata for "create" action
+ * Adjust metadata for "create" action.
  *
  * @param array $spec
  *   List of fields.
@@ -85,9 +85,10 @@ function _civicrm_api3_attachment_create_spec(&$spec) {
 }
 
 /**
- * Create an attachment
+ * Create an attachment.
  *
  * @param array $params
+ *
  * @return array
  *   Array of newly created file property values.
  * @throws API_Exception validation errors
@@ -152,7 +153,7 @@ function civicrm_api3_attachment_create($params) {
 }
 
 /**
- * Adjust metadata for "create" action
+ * Adjust metadata for get action.
  *
  * @param array $spec
  *   List of fields.
@@ -179,6 +180,8 @@ function civicrm_api3_attachment_get($params) {
 }
 
 /**
+ * Adjust metadata for attachment delete action.
+ *
  * @param $spec
  */
 function _civicrm_api3_attachment_delete_spec(&$spec) {
@@ -191,7 +194,10 @@ function _civicrm_api3_attachment_delete_spec(&$spec) {
 }
 
 /**
+ * Delete attachment.
+ *
  * @param array $params
+ *
  * @return array
  * @throws API_Exception
  */
@@ -235,6 +241,8 @@ function civicrm_api3_attachment_delete($params) {
 }
 
 /**
+ * Attachment find helper.
+ *
  * @param array $params
  * @param int|null $id the user-supplied ID of the attachment record
  * @param array $file
@@ -242,6 +250,7 @@ function civicrm_api3_attachment_delete($params) {
  * @param array $entityFile
  *   The user-supplied values of the entity-file (entity_table, entity_id).
  * @param bool $isTrusted
+ *
  * @return CRM_Core_DAO
  * @throws API_Exception
  */
@@ -267,14 +276,14 @@ function __civicrm_api3_attachment_find($params, $id, $file, $entityFile, $isTru
   if ($id) {
     $select->where('cf.id = #id', array('#id' => $id));
   }
-  // recall: $file is filtered by parse_params
+  // Recall: $file is filtered by parse_params.
   foreach ($file as $key => $value) {
     $select->where('cf.!field = @value', array(
       '!field' => $key,
       '@value' => $value,
     ));
   }
-  // recall: $entityFile is filtered by parse_params
+  // Recall: $entityFile is filtered by parse_params.
   foreach ($entityFile as $key => $value) {
     $select->where('cef.!field = @value', array(
       '!field' => $key,
@@ -295,7 +304,10 @@ function __civicrm_api3_attachment_find($params, $id, $file, $entityFile, $isTru
 }
 
 /**
+ * Attachment parsing helper.
+ *
  * @param array $params
+ *
  * @return array (0 => int $id, 1 => array $file, 2 => array $entityFile, 3 => string $name, 4 => string $content,
  *    5 => string $moveFile, 6 => $isTrusted, 7 => bool $returnContent)
  *    - array $file: whitelisted fields that can pass through directly to civicrm_file
@@ -357,6 +369,8 @@ function _civicrm_api3_attachment_parse_params($params) {
 }
 
 /**
+ * Attachment result formatting helper.
+ *
  * @param CRM_Core_DAO_File $fileDao
  *   Maybe "File" or "File JOIN EntityFile".
  * @param CRM_Core_DAO_EntityFile $entityFileDao
@@ -398,6 +412,8 @@ function _civicrm_api3_attachment_format_result($fileDao, $entityFileDao, $retur
 }
 
 /**
+ * Attachment getfields helper.
+ *
  * @return array
  *   list of fields (indexed by name)
  */
index 5e379c7e540e9ac6bad0aae128454d280731b4ff..ac42c16533b6d87845e9d2d7f5ebd3d9ed0a9dc3 100644 (file)
@@ -93,9 +93,8 @@ function _civicrm_api3_constant_deprecation() {
  *    <li>worldRegion</li>
  *    <li>wysiwygEditor</li>
  *  </ul>
+ *
  * @return array
- * @example ConstantGet.php
- *  {@getfields constant_get}
  */
 function civicrm_api3_constant_get($params) {
 
index 4a33a5fe5bc6aeb2e624574f672e32fb3ddfa7f7..38b7b31ad5d09815bab17a78fe0517ca27cc3ac3 100644 (file)
@@ -46,7 +46,6 @@
  *
  * @return array
  *   API Result Array
- *
  */
 function civicrm_api3_contact_create($params) {
 
@@ -417,7 +416,6 @@ function _civicrm_api3_contact_update($params, $contactID = NULL) {
  *   Array per getfields metadata.
  *
  * @throws API_Exception
- *
  */
 function _civicrm_api3_greeting_format_params($params) {
   $greetingParams = array('', '_id', '_custom');
@@ -428,7 +426,7 @@ function _civicrm_api3_greeting_format_params($params) {
     }
 
     $formatParams = FALSE;
-    // unset display value from params.
+    // Unset display value from params.
     if (isset($params["{$key}{$greeting}_display"])) {
       unset($params["{$key}{$greeting}_display"]);
     }
@@ -951,6 +949,8 @@ WHERE     $whereClause
 
 
 /**
+ * Get parameters for getlist function.
+ *
  * @see _civicrm_api3_generic_getlist_params
  *
  * @param array $request
@@ -994,6 +994,8 @@ function _civicrm_api3_contact_getlist_params(&$request) {
 }
 
 /**
+ * Get output for getlist function.
+ *
  * @see _civicrm_api3_generic_getlist_output
  *
  * @param array $result
index 9cc600bcda172a3610cd471a53d7d93cfad80fa0..2b820c68e4452f0a4510c10be3d4c132dd2b299c 100644 (file)
@@ -58,10 +58,13 @@ function civicrm_api3_dashboard_create($params) {
 }
 
 /**
- * Specify Meta data for create. Note that this data is retrievable via the getfields function
+ * Specify Meta data for create.
+ *
+ * Note that this data is retrievable via the getfields function
  * and is used for pre-filling defaults and ensuring mandatory requirements are met.
+ *
  * @param array $params
- *   (reference) array of parameters determined by getfields.
+ *   array of parameters determined by getfields.
  */
 function _civicrm_api3_dashboard_create_spec(&$params) {
   unset($params['version']);
index 6fd4a65a909c29808a7b69807fc885c5c25df9df..80fb704ec3c49de4dd496787893390d4182e1713 100644 (file)
@@ -142,7 +142,7 @@ function civicrm_api3_extension_disable($params) {
 }
 
 /**
- * Uninstall an extension
+ * Uninstall an extension,
  *
  * @param array $params
  *   Input parameters.
index d4fa3c26b3780ef844c75ad4961058b49bbc4f27..0bbc1640419dffb2dc0f76e50c685b57951e67b6 100644 (file)
  */
 
 /**
- * create/update group
- *
- * This API is used to create new group or update any of the existing
- * In case of updating existing group, id of that particular group must
- * be in $params array. Either id or name is required field in the
- * $params array
+ * Create/update group.
  *
  * @param array $params
  *   Associative array of property.
@@ -48,8 +43,6 @@
  *
  * @return array
  *   API result array
- * @example GroupCreate.php
- * {@getfields group_create}
  */
 function civicrm_api3_group_create($params) {
   return _civicrm_api3_basic_create(_civicrm_api3_get_BAO(__FUNCTION__), $params, 'Group');
@@ -69,7 +62,7 @@ function _civicrm_api3_group_create_spec(&$params) {
 }
 
 /**
- * Returns array of groups  matching a set of one or more group properties
+ * Returns array of groups matching a set of one or more group properties.
  *
  * @param array $params
  *   Array of one or more valid.
@@ -78,8 +71,6 @@ function _civicrm_api3_group_create_spec(&$params) {
  *
  * @return array
  *   Array of matching groups
- * @example GroupGet.php
- * {@getfields group_get}
  */
 function civicrm_api3_group_get($params) {
   $options = _civicrm_api3_get_options_from_params($params, TRUE, 'group', 'get');
@@ -95,10 +86,7 @@ function civicrm_api3_group_get($params) {
 }
 
 /**
- * delete an existing group
- *
- * This method is used to delete any existing group. id of the group
- * to be deleted is required field in $params array
+ * Delete an existing group.
  *
  * @param array $params
  *   Array containing id of the group.
@@ -106,9 +94,6 @@ function civicrm_api3_group_get($params) {
  *
  * @return array
  *   API result array
- * @example GroupDelete.php
- * {@getfields group_delete}
- *
  */
 function civicrm_api3_group_delete($params) {
 
index 946df5baf5c807904799af1363219407b2a9aa92..6afb6c26e879a28e6d0a5dcfae74022129370e5f 100644 (file)
  *
  * @copyright CiviCRM LLC (c) 2004-2014
  * @version $Id: GroupContact.php 30171 2010-10-14 09:11:27Z mover $
- *
  */
 
 
 /**
- * This API will give list of the groups for particular contact
- * Particular status can be sent in params array
+ * This API will give list of the groups for particular contact.
+ *
+ * Particular status can be sent in params array.
+ *
  * If no status mentioned in params, by default 'added' will be used
  * to fetch the records
  *
  * @param array $params
  *   Name value pair of contact information.
- * {@getfields GroupContact_get}
  *
  * @return array
  *   list of groups, given contact subsribed to
@@ -70,7 +70,8 @@ function civicrm_api3_group_contact_get($params) {
 }
 
 /**
- * Add contact(s) to group(s)
+ * Add contact(s) to group(s).
+ *
  * @param array $params
  *   Input parameters.
  *
@@ -80,7 +81,6 @@ function civicrm_api3_group_contact_get($params) {
  * "contact_id.1" etc. (optional) : another contact to add<br>
  * "group_id.1" etc. (optional) : additional group to add contact(s) to<br>
  * "status" (optional) : one of "Added", "Pending" or "Removed" (default is "Added")
- * {@example GroupContactCreate.php 0}
  *
  * @return array
  *   Information about operation results
@@ -121,11 +121,12 @@ function civicrm_api3_group_contact_create($params) {
 }
 
 /**
+ * Delete group contact record.
  *
  * @param array $params
  *
  * @return array
- *   <type>
+ *
  * @deprecated
  */
 function civicrm_api3_group_contact_delete($params) {
index 65640adcb4e1e68ac677f832f782ea5ea3f7c702..9897ea4699f438f4dac31942779a3ec7fb1be4e5 100644 (file)
@@ -51,6 +51,7 @@ function civicrm_api3_group_nesting_get($params) {
 
 /**
  * Creates group nesting record for given parent and child id.
+ *
  * Parent and child groups need to exist.
  *
  * @param array $params
index 8e3f152c1ef39d5bf810efcd9b2200e743e06f18..28214af7f5f5b5a48f2ababa5b9819ea59d8a47c 100644 (file)
@@ -27,7 +27,7 @@
 
 
 /**
- * File for the CiviCRM APIv3 group functions
+ * File for the CiviCRM APIv3 line item functions
  *
  * @package CiviCRM_APIv3
  * @subpackage API_LineItem
@@ -35,7 +35,7 @@
  */
 
 /**
- * Create or update a line_item
+ * Create or update a line_item.
  *
  * @param array $params
  *   Associative array of property.
@@ -81,7 +81,7 @@ function civicrm_api3_line_item_get($params) {
 }
 
 /**
- * delete an existing line_item
+ * Delete an existing line_item.
  *
  * This method is used to delete any existing line_item. id of the group
  * to be deleted is required field in $params array
index 432a48dfb6dd3b83d3b1042038360a2f4c4c7577..4d9a89ffefbf3cf5176d86b1b6a54503fe9110f3 100755 (executable)
@@ -39,6 +39,7 @@
  * Handle a create event.
  *
  * @param array $params
+ *
  * @return array API Success Array
  *    API Success Array
  * @throws \API_Exception
@@ -64,7 +65,10 @@ function civicrm_api3_mailing_create($params) {
 }
 
 /**
+ * Get mailing token.
+ *
  * @param array $params
+ *
  * @return array
  * @throws \API_Exception
  */
@@ -131,6 +135,8 @@ function civicrm_api3_mailing_get($params) {
 }
 
 /**
+ * Adjust metadata for mailing submit api function.
+ *
  * @param array $spec
  */
 function _civicrm_api3_mailing_submit_spec(&$spec) {
@@ -144,7 +150,10 @@ function _civicrm_api3_mailing_submit_spec(&$spec) {
 }
 
 /**
+ * Mailing submit.
+ *
  * @param array $params
+ *
  * @return array
  * @throws API_Exception
  */
@@ -210,7 +219,7 @@ function civicrm_api3_mailing_event_bounce($params) {
 }
 
 /**
- * Adjust Metadata for bounce_spec action
+ * Adjust Metadata for bounce_spec action.
  *
  * The metadata is used for setting defaults, documentation & validation.
  *
@@ -229,7 +238,8 @@ function _civicrm_api3_mailing_event_bounce_spec(&$params) {
 }
 
 /**
- * Handle a confirm event
+ * Handle a confirm event.
+ *
  * @deprecated
  *
  * @param array $params
@@ -250,7 +260,7 @@ function _civicrm_api3_mailing_deprecation() {
 }
 
 /**
- * Handle a reply event
+ * Handle a reply event.
  *
  * @param array $params
  *
@@ -277,7 +287,7 @@ function civicrm_api3_mailing_event_reply($params) {
 }
 
 /**
- * Adjust Metadata for event_reply action
+ * Adjust Metadata for event_reply action.
  *
  * The metadata is used for setting defaults, documentation & validation.
  *
@@ -296,7 +306,7 @@ function _civicrm_api3_mailing_event_reply_spec(&$params) {
 }
 
 /**
- * Handle a forward event
+ * Handle a forward event.
  *
  * @param array $params
  *
@@ -320,7 +330,7 @@ function civicrm_api3_mailing_event_forward($params) {
 }
 
 /**
- * Adjust Metadata for event_forward action
+ * Adjust Metadata for event_forward action.
  *
  * The metadata is used for setting defaults, documentation & validation.
  *
@@ -339,7 +349,7 @@ function _civicrm_api3_mailing_event_forward_spec(&$params) {
 }
 
 /**
- * Handle a click event
+ * Handle a click event.
  *
  * @param array $params
  *
@@ -365,7 +375,7 @@ function civicrm_api3_mailing_event_click($params) {
 }
 
 /**
- * Handle an open event
+ * Handle an open event.
  *
  * @param array $params
  *
@@ -390,7 +400,11 @@ function civicrm_api3_mailing_event_open($params) {
 }
 
 /**
+ * Preview mailing.
+ *
  * @param array $params
+ *   Array per getfields metadata.
+ *
  * @return array
  * @throws \API_Exception
  */
@@ -439,6 +453,8 @@ function civicrm_api3_mailing_preview($params) {
 }
 
 /**
+ * Adjust metadata for send test function.
+ *
  * @param array $spec
  */
 function _civicrm_api3_mailing_send_test_spec(&$spec) {
@@ -447,7 +463,10 @@ function _civicrm_api3_mailing_send_test_spec(&$spec) {
 }
 
 /**
+ * Send test mailing.
+ *
  * @param array $params
+ *
  * @return array
  * @throws \API_Exception
  * @throws \CiviCRM_API3_Exception
@@ -536,7 +555,7 @@ function civicrm_api3_mailing_send_test($params) {
 }
 
 /**
- * Adjust Metadata for send_mail action
+ * Adjust Metadata for send_mail action.
  *
  * The metadata is used for setting defaults, documentation & validation.
  *
@@ -549,7 +568,10 @@ function _civicrm_api3_mailing_stats_spec(&$params) {
 }
 
 /**
+ * Function which needs to be explained.
+ *
  * @param array $params
+ *
  * @return array
  * @throws \API_Exception
  */
@@ -608,10 +630,13 @@ function civicrm_api3_mailing_stats($params) {
 }
 
 /**
- * Fix the reset dates on the email record based on when a mail was last delivered
+ * Fix the reset dates on the email record based on when a mail was last delivered.
+ *
  * We only consider mailings that were completed and finished in the last 3 to 7 days
  * Both the min and max days can be set via the params
+ *
  * @param array $params
+ *
  * @return array
  */
 function civicrm_api3_mailing_update_email_resetdate($params) {
index 82cbf2509b8f4d44f4f41735832868b681d4aaa2..ea3c57326d075f85cefff1603d7bfface73a421c 100644 (file)
  * @subpackage API_MailerGroup
  * @copyright CiviCRM LLC (c) 2004-2014
  * $Id$
- *
  */
 
 /**
- * Subscribe from mailing group
+ * Subscribe from mailing group.
  *
  * @param array $params
- *   Associative array of property.
- *                       name/value pairs to insert in new 'survey'
+ *   Array per getfields metadata.
  *
  * @throws API_Exception
  * @return array
  *   api result array
- *   {@getfields mailing_event_subscribe_create}
  */
 function civicrm_api3_mailing_event_subscribe_create($params) {
   $email      = $params['email'];
index 6404877fdc9207d68b8386b45a9b0a3a1386f5ad..1ce29ae3e49a2d216c17b8ee6f77588214b58c05 100644 (file)
  * @subpackage API_MailerGroup
  * @copyright CiviCRM LLC (c) 2004-2014
  * $Id$
- *
  */
 
 /**
- * Unsubscribe from mailing group
+ * Unsubscribe from mailing group.
  *
  * @param array $params
- *   Associative array of property.
- *                       name/value pairs to insert in new 'survey'
+ *   Array per getfields metadata.
  *
- * @return array  api result array {@getfields mailing_event_unsubscribe_create}
+ * @return array
+ *  Api result array
  */
 function civicrm_api3_mailing_event_unsubscribe_create($params) {
 
index 407f0cafd5aa060e2c518e80bd2cbec2fc051909..8eb6673bd91087735dfe0ba9b887e44d5e1ddd08 100644 (file)
  * @subpackage API_MailerGroup
  * @copyright CiviCRM LLC (c) 2004-2014
  * $Id$
- *
  */
 
 /**
+ * Declare deprecated functions.
+ *
  * @deprecated api notice
  * @return string
  *   to indicate this entire api entity is deprecated
@@ -115,7 +116,10 @@ function civicrm_api3_mailing_group_get($params) {
 }
 
 /**
+ * Delete mailing group.
+ *
  * @param array $params
+ *
  * @return array
  * @throws \API_Exception
  */
@@ -125,6 +129,7 @@ function civicrm_api3_mailing_group_delete($params) {
 
 /**
  * @param array $params
+ *
  * @return array
  */
 function civicrm_api3_mailing_group_getfields($params) {
index 617d9339a3c900e53845b54274b5dc81d4a823c0..a8604a3efbad60f0d14ce17c7433a3b88908d6c3 100644 (file)
  * @subpackage API_Mailing
  * @copyright CiviCRM LLC (c) 2004-2014
  * $Id$
- *
  */
 
 /**
  * Handle creation of a Mailing Job for a Mailing.
+ *
  * @param array $params
+ *
  * @return array
  * @throws \API_Exception
  */
@@ -61,14 +62,13 @@ function _civicrm_api3_mailing_job_create_spec(&$params) {
 }
 
 /**
- * Returns array of Mailing Jobs  matching a set of one or more group properties
+ * Returns array of Mailing Jobs matching a set of one or more group properties.
  *
  * @param array $params
  *   Array of one or more valid.
  *
  * @return array
  *   API return Array of matching mailing jobs.
- *   {@getfields mailing_job_get}
  */
 function civicrm_api3_mailing_job_get($params) {
   return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params);
@@ -76,7 +76,9 @@ function civicrm_api3_mailing_job_get($params) {
 
 /**
  * Handle deletion of a Mailing Job for a Mailing.
+ *
  * @param array $params
+ *
  * @return array
  * @throws \API_Exception
  */
index 9be467237db26d8f81ef59e26a935d2cb342849a..3738d41ee46733b733314a960151d7d5e075a883 100644 (file)
@@ -112,11 +112,12 @@ function &civicrm_api3_membership_status_update($params) {
 }
 
 /**
- * Deletes an existing membership status
+ * Deletes an existing membership status.
  *
  * This API is used for deleting a membership status
  *
  * @param array $params
+ *
  * @return array
  */
 function civicrm_api3_membership_status_delete($params) {
@@ -126,7 +127,7 @@ function civicrm_api3_membership_status_delete($params) {
 }
 
 /**
- * Derives the Membership Status of a given Membership Reocrd
+ * Derives the Membership Status of a given Membership Record.
  *
  * This API is used for deriving Membership Status of a given Membership
  * record using the rules encoded in the membership_status table.
@@ -137,7 +138,6 @@ function civicrm_api3_membership_status_delete($params) {
  *
  * @return array
  *   Array of status id and status name
- * @public
  */
 function civicrm_api3_membership_status_calc($membershipParams) {
   if (!($membershipID = CRM_Utils_Array::value('membership_id', $membershipParams))) {
index 20e6cb40e468819ab692d300254adff9df25d91a..0322f11079e8734b9c27741c645a0fd84f9a1086 100644 (file)
@@ -68,15 +68,14 @@ function _civicrm_api3_note_create_spec(&$params) {
 }
 
 /**
- * Deletes an existing note
+ * Deletes an existing note.
  *
  * This API is used for deleting a note
  *
  * @param array $params
  *   Including id of the note to be deleted.
- * {@getfields note_delete}
  *
- * @return null
+ * @return array
  */
 function civicrm_api3_note_delete($params) {
 
@@ -100,7 +99,7 @@ function civicrm_api3_note_get($params) {
 }
 
 /**
- * Adjust Metadata for Get action
+ * Adjust Metadata for Get action.
  *
  * The metadata is used for setting defaults, documentation & validation.
  *
@@ -112,10 +111,10 @@ function _civicrm_api3_note_get_spec(&$params) {
 }
 
 /**
- * Get all descendents of given note
+ * Get all descendants of given note.
  *
  * @param array $params
- *   Associative array; only required 'id' parameter is used.
+ *   array; only required 'id' parameter is used.
  *
  * @return array
  *   Nested associative array beginning with direct children of given note.
index 0556d4f2c4561d035a58bbe023f7e2ae797d9f7f..5a5ec3bf07ce68cae35c66025e21b665ac8430dc 100644 (file)
@@ -68,7 +68,7 @@ function civicrm_api3_participant_create($params) {
 }
 
 /**
- * Create a default participant line item
+ * Create a default participant line item.
  *
  * @todo this should be done in the BAO not the api
  *
index 007254fee11324fc4ee1f418dd117d8f2326f7e3..c2f36f5b281c606b8c1b8956252f8f3845b341b7 100644 (file)
@@ -33,7 +33,6 @@
  *
  * @copyright CiviCRM LLC (c) 2004-2014
  * @version $Id: Participant.php 30486 2010-11-02 16:12:09Z shot $
- *
  */
 
 /**
@@ -76,16 +75,12 @@ function _civicrm_api3_participant_payment_create_spec(&$params) {
 }
 
 /**
- * Deletes an existing Participant Payment
- *
- * This API is used for deleting a Participant Payment
+ * Deletes an existing Participant Payment.
  *
  * @param array $params
  *
  * @return array
  *   API result
- * @example ParticipantPaymentDelete.php
- * {@getfields ParticipantPayment_delete}
  */
 function civicrm_api3_participant_payment_delete($params) {
   $participant = new CRM_Event_BAO_ParticipantPayment();
@@ -93,16 +88,13 @@ function civicrm_api3_participant_payment_delete($params) {
 }
 
 /**
- * Retrieve one / all contribution(s) / participant(s) linked to a
- * contribution.
+ * Retrieve one or more participant payment records.
  *
  * @param array $params
  *   Input parameters.
  *
  * @return array
  *   array of properties, if error an array with an error id and error message
- * @example ParticipantPaymentGet
- * {@getfields ParticipantPayment_get}
  */
 function civicrm_api3_participant_payment_get($params) {
   return _civicrm_api3_basic_get('CRM_Event_DAO_ParticipantPayment', $params);
index 708460ac53198a0a76d3939ab3eb7d83a6c07e37..138c42d457196b53f35c2091fac8869560fe66d8 100644 (file)
  * @subpackage API_Contact
  * @copyright CiviCRM LLC (c) 2004-2014
  * $Id: PaymentProcessorType.php 30415 2010-10-29 12:02:47Z shot $
- *
- */
-
-/**
- * Include common API util functions
  */
 
 /**
- * create payment_processor type
+ * Create payment_processor type.
  *
  * @param array $params
  *   Associative array of property name/value pairs to insert in new payment_processor type.
@@ -90,7 +85,7 @@ function civicrm_api3_payment_processor_type_get($params) {
 }
 
 /**
- * Delete a payment_processor type delete
+ * Delete a payment_processor type delete.
  *
  * @param array $params
  *
index 6939e3cf2ff61682e2a6b19654e5b2a3c3de7734..8e30768cf561d8089c1bc1b8b0478ee92f7f2657 100644 (file)
  */
 
 /**
- *  Add an Phone for a contact
- *
- * Allowed @params array keys are:
- * {@getfields phone_create}
- * @example PhoneCreate.php
+ * Add an Phone for a contact.
  *
  * @param array $params
+ *   Array per getfields metadata.
  *
  * @return array
  *   Array of newly created phone property values.
@@ -67,14 +64,13 @@ function _civicrm_api3_phone_create_spec(&$params) {
 }
 
 /**
- * Deletes an existing Phone
+ * Delete an existing Phone.
  *
  * @param array $params
+ *   Array per getfields metadata.
  *
  * @return array
  *   Api Result
- *   {@getfields phone_delete}
- * @example PhoneDelete.php
  */
 function civicrm_api3_phone_delete($params) {
   return _civicrm_api3_basic_delete(_civicrm_api3_get_BAO(__FUNCTION__), $params);
index f03aec73736d57367e1b61ef4cf851a8330f997d..dcbcf40335cbd12bcc5113350fc803b02b5ea39c 100644 (file)
  */
 
 /**
- * Include utility functions.
- */
-
-/**
- * Creates or updates an Pledge.
+ * Create or updates an Pledge.
  *
  * @return array
  *   Array containing 'is_error' to denote success or failure and details of the created pledge
- *
  */
 function civicrm_api3_pledge_create($params) {
   _civicrm_api3_pledge_format_params($params, TRUE);
@@ -55,15 +50,12 @@ function civicrm_api3_pledge_create($params) {
 }
 
 /**
- * Delete a pledge
+ * Delete a pledge.
  *
  * @param array $params
  *   Array included 'pledge_id' of pledge to delete.
  *
- * @return bool
- *   true if success, else false
- *   {@getfields pledge_delete}
- * @example PledgeDelete.php
+ * @return array
  */
 function civicrm_api3_pledge_delete($params) {
   if (CRM_Pledge_BAO_Pledge::deletePledge($params['id'])) {
@@ -77,6 +69,8 @@ function civicrm_api3_pledge_delete($params) {
 }
 
 /**
+ * Adjust metadata for pledge delete action.
+ *
  * @param array $params
  */
 function _civicrm_api3_pledge_delete_spec(&$params) {
@@ -85,7 +79,8 @@ function _civicrm_api3_pledge_delete_spec(&$params) {
 }
 
 /**
- * return field specification specific to get requests
+ * Adjust field specification specific to get requests.
+ *
  * @param array $params
  */
 function _civicrm_api3_pledge_get_spec(&$params) {
@@ -102,7 +97,8 @@ function _civicrm_api3_pledge_get_spec(&$params) {
 }
 
 /**
- * return field specification specific to get requests
+ * Adjust field specification specific to get requests.
+ *
  * @param array $params
  */
 function _civicrm_api3_pledge_create_spec(&$params) {
@@ -117,7 +113,7 @@ function _civicrm_api3_pledge_create_spec(&$params) {
 }
 
 /**
- * Retrieve a set of pledges, given a set of input params
+ * Retrieve a set of pledges, given a set of input params.
  *
  * @param array $params
  *   Input parameters. Use interrogate for possible fields.
@@ -142,14 +138,16 @@ function civicrm_api3_pledge_get($params) {
 }
 
 /**
- * Set default to not return test params
+ * Set default to not return test params.
  */
 function _civicrm_api3_pledge_get_defaults() {
   return array('pledge_test' => 0);
 }
 
 /**
- * Legacy function - I removed a bunch of stuff no longer required from here but it still needs
+ * Legacy function to format pledge parameters.
+ *
+ * I removed a bunch of stuff no longer required from here but it still needs
  * more culling
  * 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
index 80f75b127e0ea6588022449b8596c553ea72ba06..6a9d356b6fe2e05ac0ab357a99c50f04377242dc 100644 (file)
  */
 
 /**
- * Create or update a price_set
+ * Create or update a price_set.
  *
  * @param array $params
- *   Associative array of property.
+ *   array of property.
  *                       name/value pairs to insert in new 'price_set'
- * @example PriceSetCreate.php Std Create example
  *
  * @return array
  *   api result array
- *   {@getfields price_set_create}
  */
 function civicrm_api3_price_set_create($params) {
   $result = _civicrm_api3_basic_create(_civicrm_api3_get_BAO(__FUNCTION__), $params);
@@ -77,7 +75,7 @@ function _civicrm_api3_price_set_create_spec(&$params) {
 }
 
 /**
- * Returns array of price_sets  matching a set of one or more group properties
+ * Returns array of price_sets 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.
@@ -85,7 +83,6 @@ function _civicrm_api3_price_set_create_spec(&$params) {
  *
  * @return array
  *   Array of matching price_sets
- *   {@getfields price_set_get}
  */
 function civicrm_api3_price_set_get($params) {
   // hack to make getcount work. - not sure the best approach here
@@ -102,7 +99,7 @@ function civicrm_api3_price_set_get($params) {
 }
 
 /**
- * delete an existing price_set
+ * Delete an existing price_set.
  *
  * This method is used to delete any existing price_set. id of the group
  * to be deleted is required field in $params array
@@ -113,7 +110,6 @@ function civicrm_api3_price_set_get($params) {
  *
  * @return array
  *   API result array
- *   {@getfields price_set_delete}
  */
 function civicrm_api3_price_set_delete($params) {
   return _civicrm_api3_basic_delete(_civicrm_api3_get_BAO(__FUNCTION__), $params);
index 86da40035e528eeb974cad4bc1bdfb880e7d2f38..591007c23acd0e7bf3fca90c6d6de15aaab652fc 100644 (file)
@@ -33,6 +33,8 @@
  */
 
 /**
+ * Notify caller of deprecated function.
+ *
  * @deprecated api notice
  * @return string
  *   to indicate this entire api entity is deprecated
@@ -44,8 +46,9 @@ function _civicrm_api3_survey_respondant_deprecation() {
 /**
  * Get the list of signatories
  * @deprecated - api currently not supported
+ *
  * @param array $params
- *   (reference ) input parameters.
+ *   input parameters.
  *
  * @return array
  */
index be1dc78364c802f5faa400bba4ff23ea83ac2388..38790df84138faa1c60a8f20d875843b73302b2f 100644 (file)
@@ -121,7 +121,7 @@ function _civicrm_api3_uf_field_create_spec(&$params) {
 }
 
 /**
- * Returns array of uf groups (profiles)  matching a set of one or more group properties.
+ * Returns array of uf groups (profiles) matching a set of one or more group properties.
  *
  * @param array $params
  *   Array per getfields metadata.
@@ -158,7 +158,8 @@ function civicrm_api3_uf_field_delete($params) {
 }
 
 /**
- * field id accepted for backward compatibility - unset required on id
+ * Field id accepted for backward compatibility - unset required on id.
+ *
  * @param array $params
  */
 function _civicrm_api3_uf_field_delete_spec(&$params) {
index 3a5bb451a7295d04e7d6f658ecc27aa1d24e7aa1..231436139642f0b3b406a9c4bcab25f62dd22211 100644 (file)
@@ -83,7 +83,6 @@ function _civicrm_api3_word_replacement_create_spec(&$params) {
  *
  * @return array
  *   API result array
- *
  */
 function civicrm_api3_word_replacement_delete($params) {
   return _civicrm_api3_basic_delete(_civicrm_api3_get_BAO(__FUNCTION__), $params);