function menu_import_drush_help in Menu Export/Import 7
Implementation of hook_drush_help().
File
- ./
menu_import.drush.inc, line 68 - Menu import module drush integration.
Code
function menu_import_drush_help($section) {
switch ($section) {
case 'drush:menu-import':
return dt('Imports a menu from a text file.');
case 'drush:menu-export':
return dt('Exports menu to a text file.');
}
}