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.*//*** sfWidgetFormInputPassword represents a password HTML input tag.** @package symfony* @subpackage widget* @author Fabien Potencier <fabien.potencier@symfony-project.com>* @version SVN: $Id: sfWidgetFormInputPassword.class.php 30762 2010-08-25 12:33:33Z fabien $*/class sfWidgetFormInputPassword extends sfWidgetFormInput{/*** Configures the current widget.** Available options:** * always_render_empty: true if you want the input value to be always empty when rendering (true by default)** @param array $options An array of options* @param array $attributes An array of default HTML attributes** @see sfWidgetFormInput*/protected function configure($options = array(), $attributes = array()){parent::configure($options, $attributes);$this->addOption('always_render_empty', true);$this->setOption('type', 'password');}/*** Renders the widget.** @param string $name The element name* @param string $value The password stored in this widget, will be masked by the browser.* @param array $attributes An array of HTML attributes to be merged with the default HTML attributes* @param array $errors An array of errors for the field** @return string An HTML tag string** @see sfWidgetForm*/public function render($name, $value = null, $attributes = array(), $errors = array()){return parent::render($name, $this->getOption('always_render_empty') ? null : $value, $attributes, $errors);}}