You are here

function google_analytics_counter_confirm_reset_form_submit in Google Analytics Counter 7.3

Submit handler gets called when form is submitted, so code to be executed upon form submission goes here

File

./google_analytics_counter.module, line 423
Basic functions for this module.

Code

function google_analytics_counter_confirm_reset_form_submit($form, &$form_state) {
  google_analytics_counter_reset();
  drupal_goto('admin/config/system/google_analytics_counter/dashboard');
}