You are here

function ldap_user_field_widget_info in Lightweight Directory Access Protocol (LDAP) 8.2

Same name and namespace in other branches
  1. 7.2 ldap_user/ldap_user.module \ldap_user_field_widget_info()

Implements hook_field_widget_info(). to provide field type for LDAP fields

File

ldap_user/ldap_user.module, line 1047
Module for the LDAP User Entity

Code

function ldap_user_field_widget_info() {
  return array(
    'ldap_user_hidden' => array(
      'label' => t('Hidden Text Field'),
      'field types' => array(
        'text',
      ),
      'settings' => array(),
    ),
  );
}