| 1 |
lars |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
/*
|
|
|
4 |
* This file is part of the symfony package.
|
|
|
5 |
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
|
|
|
6 |
*
|
|
|
7 |
* For the full copyright and license information, please view the LICENSE
|
|
|
8 |
* file that was distributed with this source code.
|
|
|
9 |
*/
|
|
|
10 |
|
|
|
11 |
/**
|
|
|
12 |
* sfWidgetFormInputHidden represents a hidden HTML input tag.
|
|
|
13 |
*
|
|
|
14 |
* @package symfony
|
|
|
15 |
* @subpackage widget
|
|
|
16 |
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
|
|
|
17 |
* @version SVN: $Id: sfWidgetFormInputHidden.class.php 30762 2010-08-25 12:33:33Z fabien $
|
|
|
18 |
*/
|
|
|
19 |
class sfWidgetFormInputHidden extends sfWidgetFormInput
|
|
|
20 |
{
|
|
|
21 |
/**
|
|
|
22 |
* Configures the current widget.
|
|
|
23 |
*
|
|
|
24 |
* @param array $options An array of options
|
|
|
25 |
* @param array $attributes An array of default HTML attributes
|
|
|
26 |
*
|
|
|
27 |
* @see sfWidgetFormInput
|
|
|
28 |
*/
|
|
|
29 |
protected function configure($options = array(), $attributes = array())
|
|
|
30 |
{
|
|
|
31 |
parent::configure($options, $attributes);
|
|
|
32 |
|
|
|
33 |
$this->setOption('is_hidden', true);
|
|
|
34 |
$this->setOption('type', 'hidden');
|
|
|
35 |
}
|
|
|
36 |
}
|