New module 'Administration menu'
This commit is contained in:
parent
e666049d60
commit
89b4aad0f8
17 changed files with 2067 additions and 0 deletions
14
modules/admin_menu/admin_menu.drush.inc
Normal file
14
modules/admin_menu/admin_menu.drush.inc
Normal 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();
|
||||
}
|
||||
}
|
||||
|
Reference in a new issue