fabiang/laminas-language-route
Composer 安装命令:
composer require fabiang/laminas-language-route
包简介
Adds language prefix to every route
README 文档
README
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.
composer require fabiang/laminas-language-route
Then add Fabiang\LaminasLanguageRoute to your config/application.config.php
To display the language switch you will need the 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/laminas-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
$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:
$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:
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 itemLanguageSwitch::RENDER_TYPE_NAVBAR: Full Bootstrap navbar list with dropdown list item insideLanguageSwitch::RENDER_TYPE_DIV: DIV container with div elements for each optionLanguageSwitch::RENDER_TYPE_SELECT: Select form elementLanguageSwitch::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.
Licence
Copyright (C) 2016 schurix, 2022 Fabian Grutschus
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
fabiang/laminas-language-route 适用场景与选型建议
fabiang/laminas-language-route 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1.04k 次下载、GitHub Stars 达 2, 最近一次更新时间为 2022 年 03 月 10 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 fabiang/laminas-language-route 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 fabiang/laminas-language-route 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 1.04k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 4
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: GPL-2.0-only
- 更新时间: 2022-03-10