You are here

function esign_field_info in E-Sign 7

Implements hook_field_info().

File

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

Code

function esign_field_info() {
  return array(
    'esign_signature' => array(
      'label' => t('E-Signature'),
      'description' => t('An electronic signature'),
      'default_widget' => 'esign_signature_widget',
      'default_formatter' => 'esign_formatter',
    ),
  );
}