nepada/email-address-input
最新稳定版本:v1.9.2
Composer 安装命令:
composer require nepada/email-address-input
包简介
Email address form input for Nette forms.
README 文档
README
Installation
Via Composer:
$ composer require nepada/email-address-input
Option A: install form container extension method via DI extension
extensions: - Nepada\Bridges\EmailAddressInputDI\EmailAddressInputExtension
It will register extension method addEmailAddress($name, $label, $caseSensitive = false) to Nette\Forms\Container.
Option B: use trait in your base form/container class
You can also use EmailAddressInputMixin trait in your base form/container class to add method addEmailAddress($name, $label, $caseSensitive = false).
Example:
trait FormControls { use Nepada\Bridges\EmailAddressInputForms\EmailAddressInputMixin; public function addContainer($name) { $control = new Container; $control->setCurrentGroup($this->getCurrentGroup()); if ($this->currentGroup !== null) { $this->currentGroup->add($control); } return $this[$name] = $control; } } class Container extends Nette\Forms\Container { use FormControls; } class Form extends Nette\Forms\Form { use FormControls; }
Usage
EmailAddressInput is form control that uses email address value object to represent its value (see nepada/email-address for further details).
It automatically validates the user input and getValue() method always returns EmailAddress instance, or null if the input is not filled.
$emailAddressInput = $form->addEmailAddress('E-mail'); // set value using EmailAddress value object $emailAddressInput->setValue(CaseInsensitiveEmailAddress::fromString('example@example.com')); // set value using string with a valid email address (it is internally converted to EmailAddress value object) $emailAddressInput->setValue('example@example.com'); // Get EmailAddress instance for example@example.com $emailAddressInput->getValue(); // InvalidEmailAddressException is thrown $emailAddressInput->setValue('42');
Case sensitivity
By default the input returns instance of CaseInsensitiveEmailAddress, i.e. the value object that treats the whole email address as case insensitive.
You can change this behaviour by calling EmailAddressInput::setCaseSensitive(true), or by passing $caseSensitive = true when creating the input. With enabled case sensitivity the input's value will be represented as RfcEmailAddress instance.
For further details see the readme of nepada/email-address.
统计信息
- 总下载量: 5.85k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: BSD-3-Clause
- 更新时间: 2018-06-03