You are here

function views_help in Views (for Drupal 7) 5

Same name and namespace in other branches
  1. 7.3 views.module \views_help()

Implementation of hook_help()

File

./views.module, line 9

Code

function views_help($section) {
  switch ($section) {
    case 'admin/help#views':
      return t('The views module creates customized views of node lists. You may need to activate the Views UI module to get to the user administration pages.');
  }
}