function no_autocomplete_drush_help in No Autocomplete 7
Same name and namespace in other branches
- 8 no_autocomplete.drush.inc \no_autocomplete_drush_help()
Implements hook_drush_help().
File
- ./no_autocomplete.drush.inc, line 33 
- Drush commands related to the No Autocomplete module.
Code
function no_autocomplete_drush_help($section) {
  switch ($section) {
    case 'meta:no_autocomplete:title':
      return dt("No Autocomplete commands");
    case 'meta:no_autocomplete:summary':
      return dt("Interacts with the No Autocomplete module's functionalities.");
    case 'drush:na-login':
      return dt('Configures the "autocomplete=off" option on the user login form.');
  }
}