function admin_menu_dropdown_js in Admin Menu Hider 5.2
Same name and namespace in other branches
- 6.2 admin_menu_dropdown.module \admin_menu_dropdown_js()
- 7.2 admin_menu_dropdown.module \admin_menu_dropdown_js()
1 string reference to 'admin_menu_dropdown_js'
- admin_menu_dropdown_menu in ./
admin_menu_dropdown.module - Implementation of hook_menu().
File
- ./
admin_menu_dropdown.module, line 156 - Adds the ability to show/hide the Drupal Administration Menu via a selected behavior
Code
function admin_menu_dropdown_js() {
$_SESSION['amd_status'] = arg(5);
print drupal_json($_SESSION['amd_status']);
exit;
}