Event hook points needed to run Recaptcha on Twitter registration

This commit is contained in:
Brion Vibber 2011-01-20 15:49:57 -08:00
parent 7a9040e360
commit c1e4be6ab9
1 changed files with 8 additions and 0 deletions

View File

@ -382,11 +382,19 @@ class TwitterauthorizationAction extends Action
$this->element('p', null,
_m('Create a new user with this nickname.'));
$this->elementStart('ul', 'form_data');
// Hook point for captcha etc
Event::handle('StartRegistrationFormData', array($this));
$this->elementStart('li');
$this->input('newname', _m('New nickname'),
($this->username) ? $this->username : '',
_m('1-64 lowercase letters or numbers, no punctuation or spaces'));
$this->elementEnd('li');
// Hook point for captcha etc
Event::handle('EndRegistrationFormData', array($this));
$this->elementEnd('ul');
$this->submit('create', _m('Create'));
$this->elementEnd('fieldset');