| Package Data | |
|---|---|
| Maintainer Username: | daninoz |
| Maintainer Contact: | me@daninoz.com (Daniel Albornoz) |
| Package Create Date: | 2014-01-21 |
| Package Last Update: | 2014-02-06 |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-11-03 15:24:47 |
| Package Statistics | |
|---|---|
| Total Downloads: | 143 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 1 |
| Total Watchers: | 1 |
| Total Forks: | 0 |
| Total Open Issues: | 0 |
Add functionality to the Auth component on Laravel4 to only login users with an active account.
In the require key of composer.json file add
"daninoz/active-auth": "dev-master"
Run the Composer update comand
$ composer update
In your config/app.php add 'Daninoz\ActiveAuth\ActiveAuthServiceProvider' to the end of the $providers array
'providers' => array(
'Illuminate\Foundation\Providers\ArtisanServiceProvider',
'Illuminate\Auth\AuthServiceProvider',
...
'Daninoz\ActiveAuth\ActiveAuthServiceProvider',
),
Set the propertly values to the config/auth.php.
In your user table you just need and active field. By default, Active Auth will look for a field called active but you can change that.
Run:
$ php artisan config:publish daninoz/active-auth
And a config file is going to be created on app/config/packages/daninoz/active-auth/config.php. Just change the active-field key.
$credentials = [
'email' => Input::get('email'),
'password' => Input::get('password')
];
$response = ActiveAuth::activeAttempt($credentials);
switch ($response) {
case ActiveAuth::INVALID_CREDENTIALS:
case ActiveAuth::INACTIVE_USER:
return Redirect::back()->with('error', Lang::get($response));
case ActiveAuth::SUCCESS:
return Redirect::intended('/');
}
Active Auth is free software distributed under the terms of the MIT license