Revision #84 has been created by rackycz on Sep 20, 2019, 3:39:23 PM with the memo:
edit
« previous (#83) next (#85) »
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)
;
if ($langID !== "" && array_key_exists(
trim($langID
), $allowedLanguages)) {
Yii::$app->session->set('langID', $langID);
}
return $this->redirect(['site/index']);
}
```[...]