function themekey_admin_delete_rule_confirm_submit in ThemeKey 7.3
Same name and namespace in other branches
- 6.4 themekey_admin.inc \themekey_admin_delete_rule_confirm_submit()
- 6.2 themekey_admin.inc \themekey_admin_delete_rule_confirm_submit()
- 6.3 themekey_admin.inc \themekey_admin_delete_rule_confirm_submit()
- 7 themekey_admin.inc \themekey_admin_delete_rule_confirm_submit()
- 7.2 themekey_admin.inc \themekey_admin_delete_rule_confirm_submit()
Execute ThemeKey rule deletion
File
- ./
themekey_admin.inc, line 1008
Code
function themekey_admin_delete_rule_confirm_submit($form, &$form_state) {
if ($form_state['values']['confirm']) {
themekey_rule_del($form_state['values']['themekey_property_id']);
}
$form_state['redirect'] = 'admin/config/user-interface/themekey/rules';
}