You are here

function commerce_node_checkout_expire_field_widget_info in Commerce Node Checkout 7

Implements hook_field_widget_info().

File

commerce_node_checkout_expire/commerce_node_checkout_expire.module, line 74
Provides core hooks and the like for the module.

Code

function commerce_node_checkout_expire_field_widget_info() {
  return array(
    'commerce_node_checkout_expire_notification' => array(
      'label' => t('Option'),
      'field types' => array(
        'commerce_node_checkout_expire_notification',
      ),
    ),
  );
}