1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- class sfWidgetFormInputHidden extends sfWidgetFormInput
- {
-
- protected function configure($options = array(), $attributes = array())
- {
- parent::configure($options, $attributes);
- $this->setOption('is_hidden', true);
- $this->setOption('type', 'hidden');
- }
- }
|