domain_theme_reset_form_submit($form, &$form_state)FormsAPI for domain_theme_reset_form.
domain_theme/domain_theme.admin.inc, line 228
<?php
function domain_theme_reset_form_submit($form, &$form_state) {
db_query("DELETE FROM {domain_theme} WHERE domain_id = %d", $form_state['values']['domain_id']);
drupal_set_message(t('Domain theme settings have been reset.'));
$form_state['redirect'] = 'admin/build/domain/theme/'. $form_state['values']['domain_id'];
// Clear the cache.
cache_clear_all();
}
?>