function admin_views_help in Administration Views 7
Implements hook_help().
File
- ./
admin_views.module, line 20 - Replaces all system object management pages in Drupal core with real views.
Code
function admin_views_help($path, $arg) {
switch ($path) {
case 'admin/help#admin_views':
return t('This module replaces administrative overview/listing pages with actual views for superior usability. It allows a user to sort through large amounts of data more easily with exposed filters. It is also easier to perform bulk operations.');
}
}