class civicrm_api3 {
/**
- * @param array API configuration.
+ * @param array $config API configuration.
*/
function __construct($config = NULL) {
$this->local = TRUE;
* @deprecated as of CiviCRM 4.4.
* It's recommended to use the api getoptions action instead
*
- * @param string Name of a public static method of
+ * @param array $params
+ * Name of a public static method of
* CRM_Core_PseudoConstant: one of
* <ul>
* <li>activityStatus</li>
/**
* Use this API to delete an existing group.
*
- * @param array id of the group to be deleted
+ * @param array $params
*
- * @return Null
- * if success
+ * @return array
*/
function civicrm_api3_custom_group_delete($params) {
-
$values = new CRM_Core_DAO_CustomGroup();
$values->id = $params['id'];
$values->find(TRUE);
/**
* @deprecated api notice
- * @param array entities
+ * @param array $entities
* @return array
* Array of deprecated api entities
*/
*
* This API is used for deleting a membership status
*
- * @param array Params array containing 'id' - Id of the membership status to be deleted
- * {@getfields MembershipStatus_delete}
- *
+ * @param array $params
* @return array
- * i
*/
function civicrm_api3_membership_status_delete($params) {