New module 'Administration menu'

This commit is contained in:
Manuel Cillero 2017-07-26 10:54:20 +02:00
parent e666049d60
commit 89b4aad0f8
17 changed files with 2067 additions and 0 deletions

View file

@ -0,0 +1,14 @@
<?php
/**
* Implments hook_drush_exit()
*
* This is necessary because drush skips the normal hook_exit() where
* we build the links.
*/
function admin_menu_drush_exit() {
if (function_exists('admin_menu_exit')) {
admin_menu_exit();
}
}