function ldap_settings_features_export_options in LDAP integration 6
Implementation of hook_features_export_options. [component_hook]
Return value
array A keyed array of items, suitable for use with a FormAPI select or checkboxes element.
File
- ./
ldapauth.features.inc, line 153 - Feature related functions.
Code
function ldap_settings_features_export_options() {
$info = array(
'ldapauth_login_process' => t('Authentication') . ': ' . t('Authentication mode'),
'ldapauth_login_conflict' => t('Authentication') . ': ' . t('User conflict resolve process'),
'ldapauth_forget_passwords' => t('Authentication') . ': ' . t('Store user passwords'),
'ldapauth_sync_passwords' => t('Authentication') . ': ' . t('Sync passwords'),
'ldapauth_create_users' => t('Authentication') . ': ' . t('Create new users'),
'ldapauth_alter_username_field' => t('Authentication') . ': ' . t('Alter user name field'),
'ldapauth_disable_pass_change' => t('Authentication') . ': ' . t('Remove password fields'),
'ldapauth_alter_email_field' => t('Authentication') . ': ' . t('Alter email field'),
);
ldapauth_submodules("ldap_settings", $info);
return $info;
}