Revision #82 has been created by rackycz on Sep 20, 2019, 3:30:49 PM with the memo:
edit
« previous (#81) next (#83) »
Changes
Title
unchanged
Yii v2 for beginners
Category
unchanged
Tutorials
Yii version
unchanged
2.0
Tags
unchanged
tutorial,beginner,yii2
Content
changed
[...]
The setLang action looks like this:
```php
public function actionSetLang($langID = "") {
$allowedLanguages = Yii::$app->params["allowedLanguages"];
if ($langID && trim($langID) !== "" && in_array
_key_exists(trim($langID
), $allowedLanguages)) {
Yii::$app->session->set('langID', $langID);
}
return $this->redirect(['site/index']);
}
```[...]