You are here

function _webform_defaults_esign in E-Sign 7

Implements _webform_defaults_component().

File

esign_webform/esign_webform.module, line 39
Defines all hooks and functions to manage the e-sign field for webforms.

Code

function _webform_defaults_esign() {
  return array(
    'name' => '',
    'form_key' => NULL,
    'pid' => 0,
    'weight' => 0,
    'value' => '',
    'mandatory' => TRUE,
    'extra' => array(
      'title_display' => 0,
      'private' => FALSE,
      'field_prefix' => '',
      'field_suffix' => '',
      'description' => '',
      'hide_name' => FALSE,
      'hide_title' => FALSE,
    ),
  );
}