Difference between #81 and #82 of
Yii v2 snippet guide

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']);
}
```
[...]
7 0
4 followers
Viewed: 254 411 times
Version: 2.0
Category: Tutorials
Written by: rackycz
Last updated by: rackycz
Created on: Sep 19, 2019
Last updated: 5 months ago
Update Article

Revisions

View all history