alancole/gins
Composer 安装命令:
composer require alancole/gins
包简介
A PHP library for collecting genders and pronouns for people.
README 文档
README
Gins
Gins (Gender is not sex) is a PHP library that provides you with a host of options for genders and pronouns for your users and customers. Too often I arrive at a site with the form field "Gender" and only "Male/Female" as options. We don't live in that world any more. So this attempts to help developers fix that.
This is by no means comprehensive but hopefully people will help expand it over time and its a marked improvement on the binary way of thinking.
Genders
We provide a comprehensive list of genders to select from.
$genders = new Gins\Genders(); echo "<select name='gender'>"; foreach ($genders as $gender) { echo "<option value='" . $gender->getValue() . "'>"; echo $gender->getTerm(); echo "</option>"; } echo "</select>";
Genders will also allow you to pass in a value, and get its term.
$genders = new Gins\Genders(); try { $gender = $genders->findOrFailByValue("m"); print $gender->getTerm(); // "Male" } catch (GenderNotRegistered $e) { print "We couldn't find that gender" }
or pass a term and get a value.
$genders = new Gins\Genders(); try { $gender = $genders->findOrFailByTerm("Male"); print $gender->getValue(); // "m" } catch (GenderNotRegistered $e) { print "We're sorry but we don't have your gender listed, but we've logged its term and will get it added soon."; }
Some genders will presume a pronoun to save on inputs if you wish but its normally best to ask people how they like to be identified so you should use these assumptions with caution.
$pronoun = $gender->getPronoun(); print $pronoun->getNoun(); // "He"
You may set the pronoun to any valid pronoun object.
$gender->setPronoun($noun);
Pronouns
This is a list of accepted or used pronouns and their derivations. There are 5 standard derivations of pronouns in English. Subject "He/She", Object "Him/Her", Possessive "His/Her", Possessive Pronoun (Plural) "His/Hers", Reflexive "Himself/Herself"
$pronouns = new Gins\Pronouns(); foreach ($pronouns as $noun) { print $pro->getNoun(); # He/She print $noun->getSubject(); # He/She print $noun->getObject(); # Him/Her print $noun->getPossessive(); # His/Her print $noun->getPossessivePlural(); # His/Hers print $noun->getReflexive(); #Himself/Herself }
$noun = new Gins\Pronouns\He();
Expanding
Adding Genders and pronouns is as easy to building new classes which extend the base classes Gender or Pronoun if you'd like to add genders of pronouns you can start a pull request with your own and I'll merge them in.
Once you've added your own genders and pronouns you can pass them into gins either at constrct or by using the add mehtods.
$custom_gender = new My\Custom\Gender(); $custom_gender_two = new My\Custom\GenderTwo(); $custom_pronoun = new My\Custom\Pronoun(); $genders->addGender($custom_gender); $genders->addGender($custom_gender_two); $all_genders = new Gins\Genders([$custom_gender, $custom_gender_two]); # Another way to do it, $pronouns->addNoun($custom_pronoun); $all_pronouns = new Gins\Pronouns([$custom_pronoun]); # Another way to do it.
Whilst we allow you to patch in your own genders, we'd really love it if you can make a pull request with any missing genders instead.
Installing
composer require waxim/gins
Testing
phpunit
alancole/gins 适用场景与选型建议
alancole/gins 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 31 次下载、GitHub Stars 达 18, 最近一次更新时间为 2017 年 03 月 29 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 alancole/gins 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 alancole/gins 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 31
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 18
- 点击次数: 4
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Unknown
- 更新时间: 2017-03-29