rkgrep/locales
Composer 安装命令:
composer require rkgrep/locales
包简介
Locale management package for Laravel.
关键字:
README 文档
README
A missing package for locale management.
Installation
You can install Locales using composer. Only *dev-master * version is currently available.
composer require rkgrep/locales:dev-master@dev
Enable the service provider in your application config (app.php)
// ...
rkgrep\Locales\LocaleServiceProvider::class
// ...
Configuration
Basic Locales configuation is located in locales.php config file. You can use artisan vendor:publish command to copy default config to your app config path.
Locales currently supports 3 ways of storing configured locales: config, database and eloquent.
Set the preferred one to driver key.
// ...
'driver' => 'database',
// ...
Config driver
Config driver uses locales.php to list available locales. English locale is configured by default.
Each locale should have an unique key defining its main code type used in your app. E. g. an ISO 639‑1 two-letter code. Other locale codes ay be defined in locales array. Human-readable locale names may be defined in names array, where native and i18n are recommended to be always present.
// ...
'en' => [
'locales' => ['en', 'en_US', 'en-US', 'en-us', 'eng', 'English', 1033],
'names' => [
'native' => 'English',
'i18n' => 'English (US)'
],
],
'ru' => [
'locales' => ['ru', 'ru_RU', 'ru-RU', 'ru-ru', 'rus', 'Russian', 1049],
'names' => [
'native' => 'Русский',
'i18n' => 'Russian'
],
],
// ...
Database driver
Database driver uses a table to store locales and their values.
The table name is configured in locales.php in table key.
// ...
'table' => 'locales',
// ...
You can add a base migration to your application with artisan locales:table command. It uses configured table name, so you don't need to check it. Note that the command does not dump composer autoloads so you should run composer dump-autoload for the migration to work.
The base schema does not use autoincrementable field. Instead it has a code column as a primary key.
Eloquent driver
Eloquent driver returns a locale model instance so it can be further connected to other models via relations and customized as any other model.
Provide model key to your locales.php to change the default model class.
// ...
'model' => \rkgrep\Locales\EloquentLocale::class,
// ...
Usage
The service provider stores a Manager at locales service key in your app. You can get it anywhere by calling app('locales') helper.
Retrieving active locale
The active locale is resolved frop getLocale() method of the application. If the provided key is not available, the manager tries to get a fallback locale.
$locale = app('locales')->active(); // A Locale contract or null is returned.
You can also use rkgrep\Locales\Contracts\Locale typehint to get an active locale via dependency injection
use rkgrep\Locales\Contracts\Locale;
// ...
public function getIndex(Locale $locale)
{
// Your controller
}
Retrieving locale by code
Use retrieveByCode method to get a locale.
$english = app('locales')->retrieveByCode('en');
Retrieving a list of locales
Use getList method to get a lias of codes or names keyed by codes.
$codes = app('locales')->getList(); // ['en' => 'en', 'ru' => 'ru]
$native = app('locales')->getList('names.native'); // ['en' => 'English (US)', 'ru' => 'Русский']
Using a locale
Every driver returns an rkgrep\Locales\Contracts\Locale interface implementation.
License
Locales package is open-sourced package licensed under the MIT license.
rkgrep/locales 适用场景与选型建议
rkgrep/locales 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 497 次下载、GitHub Stars 达 0, 最近一次更新时间为 2015 年 06 月 27 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「laravel」 「languages」 「locales」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 rkgrep/locales 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 rkgrep/locales 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 rkgrep/locales 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Easily switch between sites on any page of your website.
Strongly opinionated MVC framework for rapid development
Translation editor form. Defines a form type to edit localized object translations.
A PHP library providing ISO 639-1 data.
A plugin for Laravel Lang that provides generic term translations for Laravel.
Allows you to add translatable fields in Laravel Nova.
统计信息
- 总下载量: 497
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 27
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-06-27