FRED™  3.0
FRED™: Framework for Rapid and Easy Development
Password.php
Go to the documentation of this file.
1 <?php
2 
4 
5 class Password extends \Rsi\Fred\Controller\View\Html\Widget{
6 
7  protected $_inputType = 'password';
8 
9  public function render($value = null,$raw = false){
10  return parent::render(); //never render with password value
11  }
12 
13 }