function views_revert_drush_help in Views (for Drupal 7) 6.2
Implement hook_drush_help().
File
- ./
views_revert.drush.inc, line 10 - views-revert - Drush command to revert views overridden in the system.
Code
function views_revert_drush_help($section) {
switch ($section) {
case 'drush:revert-views':
return dt('Reverts all views in the drupal installation that have been overriden. Careful, use with care.');
}
}