Докидываю файл настроек
This commit is contained in:
parent
03b52d071d
commit
3cf9f24a20
|
@ -107,6 +107,21 @@ $config = [
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
'params' => require __DIR__ . '/params.php',
|
'params' => require __DIR__ . '/params.php',
|
||||||
|
'on beforeAction' => function ($event) {
|
||||||
|
if (
|
||||||
|
!yii::$app->user->isGuest &&
|
||||||
|
(yii::$app->request->getPathInfo() !== 'offer' &&
|
||||||
|
yii::$app->request->getPathInfo() !== 'notification' &&
|
||||||
|
yii::$app->request->getPathInfo() !== 'identification') &&
|
||||||
|
(!isset(yii::$app->user->identity->acpt) ||
|
||||||
|
yii::$app->user->identity->acpt === false)
|
||||||
|
) {
|
||||||
|
// Нет соглашения с офертой
|
||||||
|
|
||||||
|
// Переадресация на оферту
|
||||||
|
yii::$app->response->redirect('/offer')->send();
|
||||||
|
}
|
||||||
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
if (YII_ENV_DEV) {
|
if (YII_ENV_DEV) {
|
||||||
|
|
Reference in New Issue