1. sfWidgetFormInputText.class.php
  2. /** * sfWidgetFormInput represents an HTML text input tag. * * @package symfony * @subpackage widget * @author Fabien Potencier * @version SVN: $Id: sfWidgetFormInputText.class.php 20941 2009-08-08 14:11:51Z Kris.Wallsmith $ */
  3. class sfWidgetFormInputText extends sfWidgetFormInput
  4. {
  5. /**
  6. * @param array $options An array of options
  7. * @param array $attributes An array of default HTML attributes
  8. *
  9. * @see sfWidgetForm
  10. */
  11. protected function configure($options = array(), $attributes = array())
  12. {
  13. parent::configure($options, $attributes);
  14. $this->setOption('type', 'text');
  15. }
  16. }

Debug toolbar