You are here

function admin_menu_dropdown_settings_validate in Admin Menu Hider 6

Same name and namespace in other branches
  1. 5 admin_menu_dropdown.module \admin_menu_dropdown_settings_validate()
1 string reference to 'admin_menu_dropdown_settings_validate'
admin_menu_dropdown_form_alter in ./admin_menu_dropdown.module
Implementation of hook_form_alter().

File

./admin_menu_dropdown.module, line 79
Makes drupal administration menu able to be hidden or shown by pressing key combo

Code

function admin_menu_dropdown_settings_validate($form, &$form_state) {
  if ($form_state['values']['admin_menu_dropdown_visibility_modifier'] == $form_state['values']['admin_menu_dropdown_disable_modifier'] && $form_state['values']['admin_menu_dropdown_visibility_key'] == $form_state['values']['admin_menu_dropdown_disable_key']) {
    form_set_error('', t('Each key combination must be unique.'));
  }
}