|
Revision 9046, 0.9 kB
(checked in by FabianLange, 5 years ago)
|
1.1: fixed @param phpdoc to fit specs in widgets (refs #2991)
|
- Property svn:mime-type set to
text/x-php
- Property svn:eol-style set to
native
- Property svn:keywords set to
Id
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
|
|---|
| 19 |
class sfWidgetFormInputHidden extends sfWidgetFormInput |
|---|
| 20 |
{ |
|---|
| 21 |
|
|---|
| 22 |
* @param array $options An array of options |
|---|
| 23 |
* @param array $attributes An array of default HTML attributes |
|---|
| 24 |
* |
|---|
| 25 |
* @see sfWidgetFormInput |
|---|
| 26 |
*/ |
|---|
| 27 |
protected function configure($options = array(), $attributes = array()) |
|---|
| 28 |
{ |
|---|
| 29 |
parent::configure($options, $attributes); |
|---|
| 30 |
|
|---|
| 31 |
$this->setOption('is_hidden', true); |
|---|
| 32 |
$this->setOption('type', 'hidden'); |
|---|
| 33 |
} |
|---|
| 34 |
} |
|---|
| 35 |
|
|---|