-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Route listener now injects language into translator and user. Added m…
…ore documentation
- Loading branch information
Showing
7 changed files
with
203 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,72 @@ | ||
# Language Rotue for Zend Framework 2 and 3 | ||
|
||
Modue that adds a language to the beginning of every route and sets the selected language in the MvcTranslator. | ||
Modue that adds a language to the beginning of every route and sets the selected | ||
language in the MvcTranslator. | ||
|
||
## Installation | ||
|
||
Installation of LanguageRoute uses composer. For composer documentation, please | ||
refer to [getcomposer.org](http://getcomposer.org/). | ||
|
||
```sh | ||
composer require xelax90/zf2-language-route | ||
``` | ||
|
||
Then add `ZF2LanguageRoute` to your `config/application.config.php` | ||
|
||
To display the language switch you will need the | ||
[usrz/bootstrap-languages](https://github.com/usrz/bootstrap-languages) package. | ||
Add the languages.css to your stylesheets and place the languages.png in the | ||
same folder. | ||
|
||
## Configuration | ||
|
||
You can configure which prefix belongs to which language. For this, copy the | ||
config/zf2-language-route.global.php into your config/autoload folder and | ||
edit the array. It should have the same order as your MvcTranslator | ||
configuration to correctly guess the default language. | ||
|
||
You can also change the default route name that is used to switched the language | ||
on a page with no RouteMatch instance (like 404). | ||
|
||
## Usage | ||
|
||
After installation the router will automatically add the language before any | ||
assembled URL. It will also inject the 'locale' parameter into any RouteMatch | ||
instance. To read it you can use the following example code inside any | ||
Controller | ||
|
||
```php | ||
$locale = $this->getEvent()->getRouteMatch()->getParam('locale'); | ||
``` | ||
|
||
The router will also check if the locale parameter is provided when assembling | ||
a route. Use it to force a specific language prefix: | ||
|
||
```php | ||
$this->url()->fromRoute('home', ['locale' => 'de_DE']); // will point to /de | ||
$this->url()->fromRoute('home', ['locale' => 'en_US']); // will point to /en | ||
``` | ||
|
||
### Language Switch | ||
|
||
The languageSwitch ViewHelper is able to render a simple dropdown to change the | ||
current language. It tries to stay on the same page. If a 404 error is generated, | ||
it will link to the `home` route. You can adjust the home route via configuration. | ||
Sample usage: | ||
|
||
```php | ||
echo $this->languageSwitch($renderMode, $currentLocale, $options); | ||
``` | ||
|
||
All arguments are optional. | ||
|
||
The helper has four different rendering modes: | ||
* `LanguageSwitch::RENDER_TYPE_LIST_ITEM` (default): Bootstrap navigation dropdown list item | ||
* `LanguageSwitch::RENDER_TYPE_NAVBAR`: Full Bootstrap navbar list with dropdown list item inside | ||
* `LanguageSwitch::RENDER_TYPE_DIV`: DIV container with div elements for each option | ||
* `LanguageSwitch::RENDER_TYPE_SELECT`: Select form element | ||
* `LanguageSwitch::RENDER_TYPE_PARTIAL`: Custom partial ViewScript | ||
|
||
You can pass options as array to modify classes output classes and other things. | ||
Please check the implementation for details about options. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<?php | ||
use ZF2LanguageRoute\Options\Factory\LanguageRouteOptionsFactory; | ||
|
||
// =========================== | ||
// Do not edit before this line | ||
|
||
|
||
$languageConfig = [ | ||
/** | ||
* Array of languages allowed for language route. The key is the prefix | ||
* which is attached to the url (e.g. en), the value is the associated | ||
* locale (e.g. 'en_US') | ||
*/ | ||
'languages' => [ | ||
'en' => 'en_US', | ||
'de' => 'de_DE' | ||
], | ||
|
||
/** | ||
* This route name will be used if no RouteMatch instance is provided to | ||
* the languageSwitch ViewHelper. This happens for example if a 404 error | ||
* occurs. | ||
* @var string | ||
*/ | ||
'homeRoute' => 'home' | ||
]; | ||
|
||
|
||
// Do not edit below this line | ||
// =========================== | ||
|
||
return [ | ||
LanguageRouteOptionsFactory::CONFIG_KEY => $languageConfig | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters