You are here

function esign_field_formatter_info in E-Sign 7

Implements hook_field_formatter_info().

File

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

Code

function esign_field_formatter_info() {
  return array(
    'esign_formatter' => array(
      'label' => t('E-Signature Formatter'),
      'description' => t('Formats the display of an electronic signature.'),
      'field types' => array(
        'esign_signature',
      ),
    ),
  );
}