You are here

function barcodefield_elements in Barcode 6.2

Implementation of FAPI hook_elements().

File

./barcodefield.module, line 143

Code

function barcodefield_elements() {
  $type['barcode_textfield'] = array(
    '#input' => TRUE,
    '#process' => array(
      'barcodefield_process',
    ),
  );
  return $type;
}