It looks like you're new here. If you want to get involved, click one of these buttons!
// test if Applicant Email Verification is installed
if (array_key_exists('APPLICANT_EMAIL_VERIFICATION_VERSION', $Configuration)) {
//Applicant Email Verification Dictionary entries
$Context->Dictionary['EmailVerification'] = 'Email Validation';
$Context->Dictionary['EmailVerification_ForMembership'] = 'You should soon receive an email from '.$Context->Configuration['SUPPORT_EMAIL'].'. Follow the instructions it describes to activate your membership. If you cannot find this email in your mailbox, check your "junk mail" or "spam trap" folder.';
$Context->Dictionary['EmailVerification_ForApplicationReview'] = 'You should soon receive an email from '.GetEmail($Context->Configuration['SUPPORT_EMAIL']).'. Please follow the instructions it describes to validate your email address. If you cannot find this email in your mailbox, check your "junk mail" or "spam trap" folder).<br />
Once your email address has been verified, your membership application will be reviewed by an administrator. If your application is accepted, you will be contacted via email.';
$Context->Dictionary['EmailVerificationDonePendingApproval'] = 'Your membership application will be reviewed by an administrator. If your application is accepted, you will be contacted via email.';
$Context->Dictionary['EmailVerificationRegister'] = 'Your application for membership has been accepted.';
$Context->Dictionary['EmailVerificationPendingApproval'] = 'Email address verified. Registration pending administrative approval.';
$Context->Dictionary['EmailVerificationOption'] = 'Activation by email';
$Context->Dictionary['EmailVerificationOptionNote'] = 'With this option on, the new user need to answer to one of our mail to get his role assigned (if you select "applicant" as default role you still have to approve his membership).';
$Context->Dictionary['EmailVerification_EmailValidated'] = 'email validated';
$Context->Dictionary['EmailVerification_EmailNotValidated'] = 'email not validated';
$Context->Dictionary['EmailVerification_ErrNoUser'] = 'Your membership application cannot be found.';
$Context->Dictionary['EmailVerification_ErrWrongKey'] = 'Wrong Verification Key!';
$Context->Dictionary['EmailVerification_ErrAlreadyValidated'] = 'Your membership application has already been accepted.';
$Context->Dictionary['EmailVerification_ErrNoKeyInDB'] = 'Your key has been already validated.';
} //end of the test, if Applicant Email Verification is installed, these entry are added $Context->Dictionary['EmailVerification'] = 'Email Validation';
$Context->Dictionary['EmailVerification_ForMembership'] = 'You should soon receive an email from '.$Context->Configuration['SUPPORT_EMAIL'].'. Follow the instructions it describes to activate your membership. If you cannot find this email in your mailbox, check your "junk mail" or "spam trap" folder.';
$Context->Dictionary['EmailVerification_ForApplicationReview'] = 'You should soon receive an email from '.GetEmail($Context->Configuration['SUPPORT_EMAIL']).'. Please follow the instructions it describes to validate your email address. If you cannot find this email in your mailbox, check your "junk mail" or "spam trap" folder).<br />
Once your email address has been verified, your membership application will be reviewed by an administrator. If your application is accepted, you will be contacted via email.';
$Context->Dictionary['EmailVerificationDonePendingApproval'] = 'Your membership application will be reviewed by an administrator. If your application is accepted, you will be contacted via email.';
$Context->Dictionary['EmailVerificationRegister'] = 'Your application for membership has been accepted.';
$Context->Dictionary['EmailVerificationPendingApproval'] = 'Email address verified. Registration pending administrative approval.';
$Context->Dictionary['EmailVerificationOption'] = 'Activation by email';
$Context->Dictionary['EmailVerificationOptionNote'] = 'With this option on, the new user need to answer to one of our mail to get his role assigned (if you select "applicant" as default role you still have to approve his membership).';
$Context->Dictionary['EmailVerification_EmailValidated'] = 'email validated';
$Context->Dictionary['EmailVerification_EmailNotValidated'] = 'email not validated';
$Context->Dictionary['EmailVerification_ErrNoUser'] = 'Your membership application cannot be found.';
$Context->Dictionary['EmailVerification_ErrWrongKey'] = 'Wrong Verification Key!';
$Context->Dictionary['EmailVerification_ErrAlreadyValidated'] = 'Your membership application has already been accepted.';
$Context->Dictionary['EmailVerification_ErrNoKeyInDB'] = 'Your key has been already validated.';
Comments