Blame | Letzte Änderung | Log anzeigen | RSS feed
<?php/** This file is part of the symfony package.* (c) Fabien Potencier <fabien.potencier@symfony-project.com>** For the full copyright and license information, please view the LICENSE* file that was distributed with this source code.*//*** sfWidgetFormInput represents an HTML text input tag.** @package symfony* @subpackage widget* @author Fabien Potencier <fabien.potencier@symfony-project.com>* @version SVN: $Id: sfWidgetFormInputText.class.php 30762 2010-08-25 12:33:33Z fabien $*/class sfWidgetFormInputText extends sfWidgetFormInput{/*** Configures the current widget.** @param array $options An array of options* @param array $attributes An array of default HTML attributes** @see sfWidgetForm*/protected function configure($options = array(), $attributes = array()){parent::configure($options, $attributes);$this->setOption('type', 'text');}}