This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Components/Form/NumberField.php

47 lines
1.2 KiB
PHP
Raw Normal View History

<?php
namespace Symfony\Components\Form;
use Symfony\Components\Form\Renderer\InputTextRenderer;
use Symfony\Components\Form\ValueTransformer\NumberToLocalizedStringTransformer;
/*
* This file is part of the symfony package.
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
* A localized field for entering numbers.
*
* @author Bernhard Schussek <bernhard.schussek@symfony-project.com>
*/
class NumberField extends InputField
{
/**
* {@inheritDoc}
*/
protected function configure()
{
// default precision is locale specific (usually around 3)
$this->addOption('precision');
$this->addOption('grouping', false);
$this->setValueTransformer(new NumberToLocalizedStringTransformer(array(
'precision' => $this->getOption('precision'),
'grouping' => $this->getOption('grouping'),
)));
}
/**
* {@inheritDoc}
*/
public function render(array $attributes = array())
{
return parent::render(array_merge(array(
'type' => 'text',
), $attributes));
}
}