You are here

barcode.module in Barcode 8

Same filename and directory in other branches
  1. 6.2 barcode.module
  2. 6 barcode.module
  3. 7.2 barcode.module

Primary module hooks for Barcode module.

File

barcode.module
View source
<?php

/**
 * @file
 * Primary module hooks for Barcode module.
 */

/**
 * Implements hook_theme().
 */
function barcode_theme() {
  return [
    'barcode' => [
      'variables' => [
        'barcode' => NULL,
        'data' => NULL,
      ],
    ],
  ];
}

Functions

Namesort descending Description
barcode_theme Implements hook_theme().