You are here

function add_to_head_delete_profile_confirm_submit in Add To Head 7

Same name and namespace in other branches
  1. 6 add_to_head.admin.inc \add_to_head_delete_profile_confirm_submit()

Delete confirm form submit handler for removing a profile.

File

./add_to_head.admin.inc, line 235
This file contains all the admin-related callbacks

Code

function add_to_head_delete_profile_confirm_submit($form, &$form_state) {
  $settings = variable_get('add_to_head_profiles', array());
  unset($settings[$form['#profile']['name']]);
  variable_set('add_to_head_profiles', $settings);
  $form_state['redirect'] = 'admin/config/development/add-to-head';
}