You are here

function esign_element_info in E-Sign 7

Implements hook_element_info().

File

./esign.module, line 230
Defines all hooks and functions to manage the e-sign field.

Code

function esign_element_info() {
  return array(
    'esign_signature' => array(
      '#input' => TRUE,
      '#process' => array(
        'esign_form_process',
      ),
      '#tree' => TRUE,
      '#esign_options' => array(),
      '#hide_name' => FALSE,
      '#hide_title' => FALSE,
    ),
  );
}