forked from GNUsocial/gnu-social
Added Start/EndRegistrationTry events to Facebook Bridge's user registration
This commit is contained in:
parent
f3d48d2dfe
commit
77eda41030
@ -299,6 +299,10 @@ class FacebookfinishloginAction extends Action
|
|||||||
|
|
||||||
function createNewUser()
|
function createNewUser()
|
||||||
{
|
{
|
||||||
|
if (!Event::handle('StartRegistrationTry', array($this))) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (common_config('site', 'closed')) {
|
if (common_config('site', 'closed')) {
|
||||||
// TRANS: Client error trying to register with registrations not allowed.
|
// TRANS: Client error trying to register with registrations not allowed.
|
||||||
$this->clientError(_m('Registration not allowed.'));
|
$this->clientError(_m('Registration not allowed.'));
|
||||||
@ -389,6 +393,8 @@ class FacebookfinishloginAction extends Action
|
|||||||
__FILE__
|
__FILE__
|
||||||
);
|
);
|
||||||
|
|
||||||
|
Event::handle('EndRegistrationTry', array($this));
|
||||||
|
|
||||||
$this->goHome($user->nickname);
|
$this->goHome($user->nickname);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user