daxslab/yii2-poligloturl

Extension to help setup the language of an application based on params specifing the language

Installs: 218

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 3

Forks: 0

Open Issues: 0

Type:yii2-extension

1.0.0 2018-01-09 21:24 UTC

This package is auto-updated.

Last update: 2024-03-23 06:31:36 UTC


README

Extension to help setup the language of an application based on params specifing the language

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist daxslab/yii2-poligloturl "*"

or add

"daxslab/yii2-poligloturl": "*"

to the require section of your composer.json file.

Configuration

Configure the View component into the main configuration file of your application:

'components' => [
    ...
    'urlManager' => [
        'class' => 'daxslab\poligloturl\UrlManager',
        'enablePrettyUrl' => true,
        'showScriptName' => false,
        'rules' => [
            //home
            ['pattern' => '/', 'route' => 'site/index', 'defaults' => ['lang' => 'en-US']],
            ['pattern' => '/es', 'route' => 'site/index', 'defaults' => ['lang' => 'es']],
            ['pattern' => '/de', 'route' => 'site/index', 'defaults' => ['lang' => 'de']],
        ],
    ],
    ...
]

Usage

Once the extension is configured, simply use it in your views by:

<?= Html::a('Spanish version', ['/site/index', 'lang' => 'es']) ?>