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 * sfWidgetFormInput represents an HTML text input tag.
13 *
14 * @package    symfony
15 * @subpackage widget
16 * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
17 * @version    SVN: $Id$
18 */
19class sfWidgetFormInputText 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 sfWidgetForm
28   */
29  protected function configure($options = array(), $attributes = array())
30  {
31    parent::configure($options, $attributes);
32
33    $this->setOption('type', 'text');
34  }
35}
36