Package Data | |
---|---|
Maintainer Username: | ied3vil |
Maintainer Contact: | ied3vil@gmail.com (Razvan-Cristian Marian) |
Package Create Date: | 2016-07-15 |
Package Last Update: | 2021-08-31 |
Home Page: | http://www.ied3vil.com |
Language: | PHP |
License: | Apache 2.0 |
Last Refreshed: | 2024-11-22 03:10:56 |
Package Statistics | |
---|---|
Total Downloads: | 38,894 |
Monthly Downloads: | 630 |
Daily Downloads: | 26 |
Total Stars: | 45 |
Total Watchers: | 5 |
Total Forks: | 20 |
Total Open Issues: | 4 |
Laravel Language Switcher Package
This package provides an easy to work with language switcher that you can use in your projects with a wide variety of config options. It automatically bootstraps to your Laravel project, sets the locale, and switches the languages when needed.
Configuration provided supports a dynamic array of different options to adjust the functionality of the package to suit your needs, whereas the default provided config will allow you to use the package right after installing, with almost no additional work.
I know it may seem very simple and perhaps over-complicated, but you don't have to waste time and thought process on the simple things.
To install the package, just run composer require ied3vil/language-switcher and follow the instructions. If you want to add it to your composer.json manually, just open composer.json and search for the "autoload" field and add
composer require ied3vil/language-switcher
After the package is installed, you should run the vendor:publish command in the console so the package publishes its config file to your application. The package should work fine without this step, all config options have fall backs - however it may impact future use, so it is recommended not to skip the vendor:publish command.
php artisan vendor:publish
To start using the package,you have to include its service provider and middleware in your application.
To include the service provider, just go to your config/app.php
file, find the providers array and append the language switcher provider at the bottom.
'providers' => [
.
.
.
ied3vil\LanguageSwitcher\Providers\LanguageSwitcherProvider::class,
],
Next, go to app/Http/Kernel.php
and find the middleware array. You have two options:
'web' => [
.
.
.
\ied3vil\LanguageSwitcher\Middleware\LanguageSwitcherMiddleware::class,
],
You are now ready to use the language switcher!
The default language set in your app.locale config value will be set. You can find it in the config/app.php
config file.
Switching the current language can be done in quite a few ways.
LanguageSwitcher::setLanguage($language)
/lang/{language}
route. The config file provides flexibility in changing the actual "lang" route.
This route can be changed using the configuration.When using the provided routes for switching languages, you will be redirected to the '/' route after the new language is set.
You should be all set! You can start writing your content in multiple languages! For more information on how to do this, please consult Laravel's Documentation.
Alternatively, you can set this yourself using your own routes, just set the session value 'language'
to the new locale and redirect.
The package ships with quite a few configuration options:
return [
'switchPath' => 'lang',
'store' => 'session',
'key' => 'language',
'redirect' => 'route', //can be set to route | back
'redirect_route' => '/',
];
The above config options can be used to customize the switcher's functionality, as described below. You are free to use any method to configure the package. Remember to use the publish:vendor command to avoid unexpected issues.
To set options, you can use any of the following methods:
config/languageswitcher.php
, editing the values of the provided keys (recommended)Config::set()
| config()->set()
, with the specification that you use the 'languageswitcher' preffix for the keys (eg. languageswitcher.switchPath
for changing the switch path).languageswitcher.switchPath
lang
This config setting dynamically sets the route created in the package for switching the language.
languageswitcher.store
session
session | cookie
This config setting changes the storage method of the language flag. Default is session, but cookies with forever as expiry date can be used. Initially this was set up as a cookie with a configurable expiry date, but for obvious reasons it was set up to never expire.
languageswitcher.key
language
This config setting decides what key to be used when storing the language flag, to the session or cookie.
languageswitcher.redirect
and languageswitcher.redirect_route
languageswitcher.redirect
: route
route | back
languageswitcher.redirect_route
: /
When the languageswitcher.redirect
config value is set to route, the user is redirected to the specified languageswitcher.redirect_route
after the new language flag is set.
Setting the languageswitcher.redirect
to back
will redirect the user back to the previous page after the new language flag is set.
My preffered way to usage is this: I include the library, create my UI for switching the language, and start translating!
Example HTML:
<ul class="dropdown-menu">
<li><a href="{{ url('lang/en') }}"><img src="/img/flags/en.png" alt="">{{ trans('locale.en') }}</a></li>
<li><a href="{{ url('lang/dk') }}"><img src="/img/flags/dk.png" alt="">{{ trans('locale.dk') }}</a></li>
<li><a href="{{ url('lang/sw') }}"><img src="/img/flags/sw.png" alt="">{{ trans('locale.sw') }}</a></li>
</ul>
If you want to evidentiate the current selection language, you can use App::getLocale() or LanguageSwitcher::getCurrentLanguage().
Feel free to use github for issues and suggesting improvements.