domain_conf_reset_form($domain)
domain_conf/domain_conf.module, line 329
function domain_conf_reset_form($domain) {
$extra['domain_id'] = array('#type' => 'value', '#value' => $domain['domain_id']);
$extra['#redirect'] = 'admin/build/domain/conf/'. $domain['domain_id'];
$form = confirm_form($extra, t('Are you sure you wish to reset the settings for %name?', array('%name' => $domain['sitename'])), 'admin/build/domain/conf/'. $domain_id, t('Submitting this form will restore default settings for this domain.'));
return $form;
}