Yii v2 snippet guide

Comparing #61 with #62

Revision #62 was created by rackycz rackycz on Sep 20, 2019, 1:53:38 PM.

i18n

Content

[...]
'New password' => 'Nové heslo',
];
?>
```

Now you can open the page for adding a new user and you will see than so far nothing changed :-)
 
 
- [http://localhost/basic-/web/index.php?r=user%2Fcreate](http://localhost/basic-/web/index.php?r=user%2Fcreate)
 
 
We must change the language ... For now let's do it in a primitive way. Open the userController, find actionCreate() and paste this code:
 
 
```php
 
Yii::$app->language = "cs-CZ"; // use your language
 
```
 
 
Switching languages + session + dropdown in the top menu
---
... text ...

Access rights
---
[...]