You are here

function prepopulate_help in Prepopulate 7.2

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

Implements hook_help().

File

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

Code

function prepopulate_help($path, $arg) {
  switch ($path) {
    case 'admin/modules#description':
      return t('Pre-populates forms with HTTP GET or POST data');
  }
}