You are here

function admin_menu_form_alter_flush_cache_submit in Administration menu 8.3

Same name and namespace in other branches
  1. 7.3 admin_menu.module \admin_menu_form_alter_flush_cache_submit()

Form submission handler to flush Administration menu caches.

1 string reference to 'admin_menu_form_alter_flush_cache_submit'
admin_menu_form_alter in ./admin_menu.module
Implements hook_form_alter().

File

./admin_menu.module, line 843
Render an administrative menu as a dropdown menu at the top of the window.

Code

function admin_menu_form_alter_flush_cache_submit($form, &$form_state) {
  admin_menu_cache_flush($form_state['admin_menu_uid']);
}