├── .gitignore ├── .php_cs ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Component.php ├── LICENCE.md ├── README.md ├── assets ├── images │ ├── flags-large.png │ ├── flags-small.png │ └── flags.png ├── javascripts │ ├── language-picker.js │ └── language-picker.min.js └── stylesheets │ ├── flags-large.css │ ├── flags-large.min.css │ ├── flags-small.css │ ├── flags-small.min.css │ ├── flags.css │ ├── flags.min.css │ ├── language-picker.css │ └── language-picker.min.css ├── bundles ├── LanguageLargeIconsAsset.php ├── LanguagePluginAsset.php └── LanguageSmallIconsAsset.php ├── composer.json └── widgets └── LanguagePicker.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lajax/yii2-language-picker/HEAD/.gitignore -------------------------------------------------------------------------------- /.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lajax/yii2-language-picker/HEAD/.php_cs -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lajax/yii2-language-picker/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lajax/yii2-language-picker/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Component.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lajax/yii2-language-picker/HEAD/Component.php -------------------------------------------------------------------------------- /LICENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lajax/yii2-language-picker/HEAD/LICENCE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lajax/yii2-language-picker/HEAD/README.md -------------------------------------------------------------------------------- /assets/images/flags-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lajax/yii2-language-picker/HEAD/assets/images/flags-large.png -------------------------------------------------------------------------------- /assets/images/flags-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lajax/yii2-language-picker/HEAD/assets/images/flags-small.png -------------------------------------------------------------------------------- /assets/images/flags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lajax/yii2-language-picker/HEAD/assets/images/flags.png -------------------------------------------------------------------------------- /assets/javascripts/language-picker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lajax/yii2-language-picker/HEAD/assets/javascripts/language-picker.js -------------------------------------------------------------------------------- /assets/javascripts/language-picker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lajax/yii2-language-picker/HEAD/assets/javascripts/language-picker.min.js -------------------------------------------------------------------------------- /assets/stylesheets/flags-large.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lajax/yii2-language-picker/HEAD/assets/stylesheets/flags-large.css -------------------------------------------------------------------------------- /assets/stylesheets/flags-large.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lajax/yii2-language-picker/HEAD/assets/stylesheets/flags-large.min.css -------------------------------------------------------------------------------- /assets/stylesheets/flags-small.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lajax/yii2-language-picker/HEAD/assets/stylesheets/flags-small.css -------------------------------------------------------------------------------- /assets/stylesheets/flags-small.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lajax/yii2-language-picker/HEAD/assets/stylesheets/flags-small.min.css -------------------------------------------------------------------------------- /assets/stylesheets/flags.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lajax/yii2-language-picker/HEAD/assets/stylesheets/flags.css -------------------------------------------------------------------------------- /assets/stylesheets/flags.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lajax/yii2-language-picker/HEAD/assets/stylesheets/flags.min.css -------------------------------------------------------------------------------- /assets/stylesheets/language-picker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lajax/yii2-language-picker/HEAD/assets/stylesheets/language-picker.css -------------------------------------------------------------------------------- /assets/stylesheets/language-picker.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lajax/yii2-language-picker/HEAD/assets/stylesheets/language-picker.min.css -------------------------------------------------------------------------------- /bundles/LanguageLargeIconsAsset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lajax/yii2-language-picker/HEAD/bundles/LanguageLargeIconsAsset.php -------------------------------------------------------------------------------- /bundles/LanguagePluginAsset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lajax/yii2-language-picker/HEAD/bundles/LanguagePluginAsset.php -------------------------------------------------------------------------------- /bundles/LanguageSmallIconsAsset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lajax/yii2-language-picker/HEAD/bundles/LanguageSmallIconsAsset.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lajax/yii2-language-picker/HEAD/composer.json -------------------------------------------------------------------------------- /widgets/LanguagePicker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lajax/yii2-language-picker/HEAD/widgets/LanguagePicker.php --------------------------------------------------------------------------------