You are here

function barcode_help in Barcode 6.2

Same name and namespace in other branches
  1. 7.2 barcode.module \barcode_help()

Implementation of hook_help().

File

./barcode.module, line 6

Code

function barcode_help($path, $arg) {
  switch ($path) {
    case 'admin/help#upload_element':
      $output = '<p>' . t('A module that provides a new FAPI element to handle barcodes.') . '</p>';
      return $output;
  }
}