You are here

function barcode_theme in Barcode 6.2

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

Implementation of hook_theme().

File

./barcode.module, line 39

Code

function barcode_theme() {
  return array(
    'barcode' => array(
      'arguments' => array(
        'element' => NULL,
      ),
    ),
    'barcode_image' => array(
      'arguments' => array(
        'barcode_value' => NULL,
        'encoding' => NULL,
      ),
    ),
  );
}