X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=api%2Fv3%2FMailSettings.php;h=686e9acb23fb9d559286d6cf966e11ec66cdc5cd;hb=244bbdd85415317b95f70bf85a3ecb036c4fe840;hp=c6d7ff44c5e0c7438d4628da86aba1e195831514;hpb=c6e262c51134924a9cc023dcb0613238fd1d0451;p=civicrm-core.git diff --git a/api/v3/MailSettings.php b/api/v3/MailSettings.php index c6d7ff44c5..686e9acb23 100644 --- a/api/v3/MailSettings.php +++ b/api/v3/MailSettings.php @@ -1,5 +1,4 @@ value pairs. If $params is set - * as null, all mail_settings will be returned + * 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 + * 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 MailSettings. * * @param array $params - * Array containing id of the group. - * to be deleted + * [id] * * @return array - * api result array - * {@getfields mail_settings_delete} - * @access public + * API result array. */ function civicrm_api3_mail_settings_delete($params) { return _civicrm_api3_basic_delete(_civicrm_api3_get_BAO(__FUNCTION__), $params);