function serial_theme in Serial Field 7
Same name and namespace in other branches
- 8 serial.module \serial_theme()
- 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,
      ),
    ),
  );
}