You are here

function serial_theme in Serial Field 7

Same name and namespace in other branches
  1. 8 serial.module \serial_theme()
  2. 6 serial.module \serial_theme()

Implements hook_theme().

File

./serial.module, line 151
The Serial module main file.

Code

function serial_theme() {

  // Register the theme for the default formatter.
  return array(
    'serial_formatter_default' => array(
      'variables' => array(
        'serial_id' => NULL,
      ),
    ),
  );
}