1. Go to this page and download the library: Download klisl/yii2-languages library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
klisl / yii2-languages example snippets
'sourceLanguage' => 'ru', // использовать в качестве ключей переводов
'modules' => [
'languages' => [
'class' => 'klisl\languages\Module',
//Языки используемые в приложении
'languages' => [
'English' => 'en',
'Русский' => 'ru',
'Українська' => 'uk',
],
'default_language' => 'ru', //основной язык (по-умолчанию)
'show_default' => false, //true - показывать в URL основной язык, false - нет
],
],
public function actionStat()
{
$language = Yii::$app->language; //текущий язык
//выводим вид соответствующий текущему языку
return $this->render('statPages/stat-'.$language);
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.