/var/www/vhosts/nabawater/frontend/controllers
Edit: /var/www/vhosts/nabawater/frontend/controllers/SiteController.php (992B)
[
'class' => CErrorAction::class
]
];
}
public function actionChangeLanguage()
{
$post = Yii::$app->getRequest()->post();
$model = Language::findOne(['language_code' => $post['lang']]);
Com::setSession(APP_LANGUAGE, $post['lang']);
return $this->asJson(['status' => Com::SUCCESS]);
}
public function actionChangeCountry()
{
$post = Yii::$app->getRequest()->post();
Com::setSession(Com::USER_COUNTRY, $post['country']);
return $this->asJson(['status' => Com::SUCCESS]);
}
}