X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=api%2Fv3%2FMailSettings.php;h=686e9acb23fb9d559286d6cf966e11ec66cdc5cd;hb=af3775b322b9e4f11d097067367f0ea7763f5f10;hp=c8c34ee073c4625438c933897596cc08f06f4c98;hpb=53310fc2e82a7d5d604380b16e1e795fd9882e21;p=civicrm-core.git diff --git a/api/v3/MailSettings.php b/api/v3/MailSettings.php index c8c34ee073..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);