You are here

function signaturefield_elements in SignatureField 6

Implements hook_elements()

File

modules/system.inc, line 36
System module integration.

Code

function signaturefield_elements() {
  $type = array();
  $type['signaturefield'] = array(
    '#input' => TRUE,
    '#after_build' => array(
      'signaturefield_after_build',
    ),
    '#height' => 55,
    '#width' => 200,
    '#color' => '#000',
    '#lineTop' => 35,
  );
  return $type;
}