You are here

function signaturefield_theme in SignatureField 1.x

Same name and namespace in other branches
  1. 6 modules/system.inc \signaturefield_theme()
  2. 7.2 includes/system.inc \signaturefield_theme()
  3. 7 includes/system.inc \signaturefield_theme()

Implements hook_theme().

File

./signaturefield.module, line 11
Main module file.

Code

function signaturefield_theme($existing, $type, $theme, $path) {
  return [
    'signature_canvas' => [
      'variables' => [
        'id' => NULL,
        'width' => NULL,
        'height' => NULL,
      ],
    ],
  ];
}