-
Notifications
You must be signed in to change notification settings - Fork 0
Git copy of http://www.symfony-project.org/plugins/sfFormI18nNumberPlugin
License
Axinet/sfFormI18nNumberPlugin
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
sfFormI18nNumberPlugin
==============
The `sfFormI18nNumberPlugin` is a symfony plugin that provides an widget and validator for
internationalized numbers.
Installation
------------
* Install the plugin
$ symfony plugin:install sfFormI18nNumberPlugin
* Clear you cache
$ symfony cc
Use of the Validator and Widget
-----------------------
After you create in your schema a number-field with type double, float or decimal,
change your form as follows:
before
[php]
public function configure()
{
// widgets
$this->setWidgets(array(
'number' => new sfWidgetFormInput(),
));
// validators
$this->setValidators(array(
'number' => new sfValidatorNumber(),
));
}
after
[php]
public function configure()
{
// widgets
$this->setWidgets(array(
'number' => new sfWidgetFormI18nNumber(),
));
// validators
$this->setValidators(array(
'number' => new sfValidatorI18nNumber(),
));
}
Configuration
-----------------------
The widget and the validator takes the culture to recognize, convert and display numbers
from the user-session. If this is not possible or you want to use a different culture than
the culture of the user session, you can set a option.
[php]
// widgets
$this->setWidgets(array(
'number' => new sfWidgetFormI18nNumber(array('culture' => 'fr')),
));
// validators
$this->setValidators(array(
'number' => new sfValidatorI18nNumber(array('culture' => 'fr')),
));
TODO
----
* tbd
About
Git copy of http://www.symfony-project.org/plugins/sfFormI18nNumberPlugin
Resources
License
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published