X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=api%2Fv3%2FMailSettings.php;h=686e9acb23fb9d559286d6cf966e11ec66cdc5cd;hb=244bbdd85415317b95f70bf85a3ecb036c4fe840;hp=5b1c650b1f95897b0c79c90dade5f480c1e677c2;hpb=9c41996008a0cb938cd30d8996cdec462c6a61a7;p=civicrm-core.git diff --git a/api/v3/MailSettings.php b/api/v3/MailSettings.php index 5b1c650b1f..686e9acb23 100644 --- a/api/v3/MailSettings.php +++ b/api/v3/MailSettings.php @@ -1,8 +1,7 @@ value pairs. If $params is set - * as null, all mail_settings will be returned + * @param array $params + * Array of one or more property_name=>value pairs. + * If $params is set as null, all MailSettings will be returned. * - * @return array Array of matching mail_settings - * {@getfields mail_settings_get} - * @access public + * @return array + * 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 + * Delete an existing MailSettings. * - * This method is used to delete any existing mail_settings. id of the group - * to be deleted is required field in $params array + * @param array $params + * [id] * - * @param array $params array containing id of the group - * to be deleted - * - * @return array api result array - * {@getfields mail_settings_delete} - * @access public + * @return array + * API result array. */ function civicrm_api3_mail_settings_delete($params) { return _civicrm_api3_basic_delete(_civicrm_api3_get_BAO(__FUNCTION__), $params); } -