Version 1.0.0 Created by the Centre for Distance Learning and Innovation (www.cdli.ca)
NOTE: This module is very old (and unmaintained) and so may no longer be fit for purpose. I suggest checking out HtUserRegistration instead.
CdliTwoStageSignup is an extension to ZfcUser which converts the new account registration process into a two-stage process where the prospective new user's email address is verified before they are permitted to create a new account:
Email Address Verification is performed by sending an email with a registration token to the email address provided by the user in Step 1. When the user receives the email and clicks on the registration link, they will be directed to the ZfcUser account registration form to complete the registration process. This ensures that the email address provided by the user is valid and under their control.
Choose one of the two available installation methods:
Add the following line inside the require block of your composer.json file:
"cdli/CdliTwoStageSignup": "dev-master"
Run php composer.phar update
Follow the ZfcUser installation instructions to install that module and it's dependencies.
Clone this project into your ./vendor/
directory
cd vendor;
git clone git://github.com/cdli/CdliTwoStageSignup.git;
application.config.php
file in the following order:
./vendor/CdliTwoStageSignup/data/schema_up.mysql.sql
../vendor/CdliTwoStageSignup/config/cdlitwostagesignup.global.php.dist
to
./config/autoload/cdlitwostagesignup.global.php
../config/autoload/cdlitwostagesignup.global.php
This code is considered proof-of-concept, and has not been vetted or tested for inclusion in a production environment. Use of this code in such environments is at your own risk.
Released under the New BSD license. See file LICENSE included with the source code for this project for a copy of the licensing terms.