';
//send emails...
echo '
';
echo ' '.__('Send each new user a registration notification email?','amulang').' ';
echo ' ';
echo '
';
//send confirmation email
echo '
';
echo ' '.__('Email me a complete list of new user account details?','amulang').' ';
echo ' ';
echo '
';
//validate emails...
echo '
';
echo ' '.__('Validate entered user_email address format?','amulang').' ('.__('uses WordPress "is_email" validation method','amulang').') ';
echo ' ';
echo '
';
//username strict validation option...
echo '
';
echo ' '.__('Sanitize user_login using Strict method?','amulang').' ('.__('allows only alphanumeric and _, space, ., -, *, and @ characters','amulang').') ';
echo ' ';
echo '
';
////auto-create user names - for version 2.1
// echo '
';
// echo ' Auto-create user_login where empty? (prevents registration failure if user_login is missing) ';
// echo ' ';
// echo '
';
//force fill emails...
echo '
';
echo ' '.__('Force Fill empty user_email addresses?','amulang').' ('.__('not recommended - see bottom of page for details','amulang').') ';
echo ' ';
echo '
';
echo '
';
//set default user role option
echo '';
echo '
';
//set all users to this role
if (get_option('amu_setallroles')) {
$rolesel = get_option('amu_setallroles');
} else {
$rolesel = 'notset';
}
$roles = $wp_roles->get_names();
echo ' '.__('Ignore individual User Role settings and set all new users to this role','amulang').': ';
echo ' ';
echo ' '.__('no, set individually...','amulang').' ';
foreach($roles as $role) {
$thisrole = $role;
echo ''.$thisrole.' ';
}
echo ' ';
echo '
';
//set display name option
if (get_option('amu_dispnamedef')) {
$defaultDispName = get_option('amu_dispnamedef');
} else {
$defaultDispName = 'userlogin';
}
echo '
';
echo ' '.__('Where not provided, set new user Display Name preference as','amulang').': ';
echo ' ';
echo ' '.__('User Login','amulang').' ';
echo ' '.__('First Name','amulang').' ';
echo ' '.__('Last Name','amulang').' ';
echo ' '.__('First then Last Name','amulang').' ';
echo ' '.__('Last then First Name','amulang').' ';
echo ' '.__('Nickname','amulang').' ';
echo ' ';
echo '
';
echo '
';
//set default sorter preference
echo '';
echo '
';
//column ordering preference
$colpref = get_option('amu_colorderpref');
echo ' '.__('Choose which method of column ordering you would like to use','amulang').': ';
echo ' ';
echo ' '.__('Dynamic Sorting on Import','amulang').' ';
echo ' '.__('Predefined Below','amulang').' ';
echo ' '.__('Manual Entry on Import','amulang').' ';
echo ' '.__('Use First Line of CSV','amulang').' ';
echo ' ';
echo '
';
//predefined sort order value
$sortpredef = get_option('amu_colorderpredef');
echo '
';
echo ' '.__('Predefined column order to use when importing CSV data','amulang').' ('.__('no spaces, separate with commas','amulang').') : ';
echo ' ';
amuColumnNamesHint();
echo '
';
echo '
';
//meta data customisation
echo '';
//show additional meta options on blank form
echo '
';
//additional meta fields
$extrameta = get_option('amu_extrameta');
echo '
';
echo ' '.__('Make additional custom meta fields available on Form interface', 'amulang').' ('.__('no spaces, separate with commas', 'amulang').') : ';
echo ' ';
echo '
';
echo '
'.__('Standard and Custom meta options you define here will be available on the Form using the Manual Entry function or when creating a user information form from the Import Email List function.', 'amulang').'
';
echo '
';
echo '';
//customize new user delivered email
echo '
';
$msghead = get_option('amu_useremailhead');
$msgtext = get_option('amu_useremailtext');
$sendemailsto = get_option('amu_defadminemail');
$siteloginurl = get_option('amu_siteloginurl');
echo '
';
echo '
'.__('Use the following settings to modify the notification email that new users receive when added via the plugin.', 'amulang').'
';
echo '
'.__('Please refer to the Information about Settings options at the bottom of this page for more information about these settings.', 'amulang').'
';
echo '
'.__('Valid shortcodes are', 'amulang').': [sitename] [siteurl] [siteloginurl] [username] [password] [useremail] [fromreply]
';
echo '
';
//from email
echo '
';
echo ''.__('From/Reply Address', 'amulang').': ';
echo ' ';
echo '
';
//custom login url
echo '
';
echo ''.__('Site Login URL', 'amulang').': ';
echo ' ';
echo '
';
//message header
echo '
';
echo ''.__('Email Subject', 'amulang').': ';
echo ' ';
echo '
';
//message text
echo '
';
echo ''.__('Email Message (HTML format)', 'amulang').': ';
echo '';
echo '
';
echo '
';
//add dynamic emailer button to customisation box for testing email
echo '
';
echo '
'.__('Test emails will be sent to your administrator email.','amulang').'
';
echo '
';
echo '