You are here

function _ip_geoloc_plugin_style_remove_association_submit in IP Geolocation Views & Maps 7

Same name and namespace in other branches
  1. 8 src/Plugin/views/style/ip_geoloc_plugin_style.inc \_ip_geoloc_plugin_style_remove_association_submit()

Submit handler for the "Remove" button.

Decrements the counter and forces a form rebuild.

1 string reference to '_ip_geoloc_plugin_style_remove_association_submit'
ip_geoloc_plugin_style_bulk_of_form in views/ip_geoloc_plugin_style.inc
The bulk of the plugin style form.

File

views/ip_geoloc_plugin_style.inc, line 306
ip_geoloc_plugin_style.inc

Code

function _ip_geoloc_plugin_style_remove_association_submit($form, &$form_state) {
  $form_state['num_associations']--;
  $form_state['rebuild'] = TRUE;
}