You are here

function barcode_theme in Barcode 7.2

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

Implements hook_theme().

File

./barcode.module, line 45

Code

function barcode_theme() {
  return array(
    'barcode_formatter_plain' => array(
      'variables' => array(
        'barcode_value' => NULL,
      ),
    ),
    'barcode_image' => array(
      'variables' => array(
        'barcode_value' => NULL,
        'encoding' => NULL,
        'height' => NULL,
        'scale' => NULL,
        'bgcolor' => NULL,
        'barcolor' => NULL,
        'image_format' => NULL,
      ),
    ),
  );
}