dennis-kashirin / yii2-session-timeout-warning
Users are warned about expiring session.
Installs: 193
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 9
Type:yii2-extension
Requires
- bower-asset/js-cookie: ~2
- mg-code/yii2-assets: *
- mg-code/yii2-helpers: *
- yiisoft/yii2: *
- yiisoft/yii2-bootstrap: *
This package is auto-updated.
Last update: 2025-03-29 01:02:21 UTC
README
Users are warned about expiring session.
Differences with original code
- Added support of Russian and Ukrainian languages
This is simple implementation of session timeout warning. Plugin does not make any ajax calls, otherwise it would not work with many projects. Components like RBAC are using user identity all time and auth session is renewed every request.
This plugin writes and reads cookies.
It supports multiple tabs. Plugin will not work if user is logged out from server side, or sessions are cleared from database.
If user session is expired, page will be reloaded.
Install
Either run
$ php composer.phar require dennis-kashirin/yii2-session-timeout-warning "@dev"
or add
"dennis-kashirin/yii2-session-timeout-warning": "@dev"
to the require
section of your composer.json
file.
Usage
- Register bootstrap class in application config.
[ 'bootstrap' => [ [ 'class' => \mgcode\sessionWarning\components\SessionWarningBootstrap::className(), 'initMessages' => true, ] ], ];
initMesscompoages
property initializes translations.
Currently only English, Latvian, Russian and Ukrainian languages are supported.
Please contribute and add your language.
- Add controller to controllerMap in application config.
[ 'controllerMap' => [ 'session-warning' => [ 'class' => 'mgcode\sessionWarning\controllers\SessionWarningController', ], ], ];
Note: If you are using RBAC, you should allow all visitors to access this controller.
- Insert widget in layout view.
<?= \mgcode\sessionWarning\widgets\SessionWarningWidget::widget([ //... Properties ... ]); ?>
Properties:
logoutUrl
- if is set, logout button will be shown before Continue button. Default: nullextendUrl
- url where ajax request is sent, when continue button is clicked. Default: ['/session-warning/extend']warnBefore
- time in seconds before user is warned about expiring session. Default: 300 (5min)