futuretek / yii2-language
Yii2 language support
Installs: 8 868
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- php: >=5.4.0
- ext-intl: *
- futuretek/yii2-migrations: ^1.0.0
- futuretek/yii2-yii-shared: ^2.0.0
- yiisoft/yii2: ^2.0.0
README
Usage
Data
Database will be populated via migration automatically.
Model
Use model futuretek\language\models\Language
wherever you want
Language selector
Language selector can be used in any view. Language will be automatically switched in Yii application and saved into cookie.
There are two selectors available:
LanguageSelector::dropDown()
- display drop-down with all enabled languagesLanguageSelector::flagList()
- display list of all enabled language flags
Administration
Extension add very simple language list page with activate/deactivate option.
To include the page into your controller you have to add it to actions()
method.
class LanguageController extends Controller
{
public function actions()
{
return [
'index' => 'futuretek\language\IndexAction',
];
}
}
Development
Assets are managed by Compass
- While developing run
compass watch
in extension root directory - To compile assets for final distribution run
compass compile -e production --force
in extension root directory