You are here

function barcode_help in Barcode 7.2

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

Implements hook_help().

File

./barcode.module, line 7

Code

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