You are here

function prepopulate_help in Prepopulate 5

Same name and namespace in other branches
  1. 6.2 prepopulate.module \prepopulate_help()
  2. 6 prepopulate.module \prepopulate_help()
  3. 7.2 prepopulate.module \prepopulate_help()

Implementation of hook_help().

File

./prepopulate.module, line 15
Fill form elements with data from GET.

Code

function prepopulate_help($section) {
  switch ($section) {
    case 'admin/modules#description':
      return t('Pre-populates forms with HTTP GET data');
      break;
  }

  // endswitch $section
}