You are here

function barcode_theme in Barcode 6

Same name and namespace in other branches
  1. 8 barcode.module \barcode_theme()
  2. 6.2 barcode.module \barcode_theme()
  3. 7.2 barcode.module \barcode_theme()

Implementation of hook_theme().

File

./barcode.module, line 8

Code

function barcode_theme() {
  return array(
    'barcode_formatter_plain' => array(
      'arguments' => array(
        'element' => NULL,
      ),
    ),
    'barcode_formatter_default' => array(
      'arguments' => array(
        'element' => NULL,
      ),
    ),
    'barcode_textfield' => array(
      'arguments' => array(
        'element' => NULL,
      ),
    ),
  );
}