Skip to content

black-lamp/yii2-locale

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

yii2-locale

'components' => [
  ...
    'urlManager' => [
        'class' => 'bl\locale\UrlManager',
        languageProvider' => [
            'class' => 'bl\locale\provider\DbLanguageProvider',
            'db' => 'db2',
            'table' => 'language',
            'localeField' => 'lang_id',
            'languageCondition' => ['active' => true],
        ],
        'lowerCase' => true,
        'useShortSyntax' => true,
        'languageKey' => 'language',
        'showDefault' => false,
      ],
]