Varien_Data_Form_Element_Obscure Class Reference

Inheritance diagram for Varien_Data_Form_Element_Obscure:

Varien_Data_Form_Element_Text Varien_Data_Form_Element_Abstract Varien_Data_Form_Abstract Varien_Object

List of all members.

Public Member Functions

 getEscapedValue ($index=null)

Protected Attributes

 $_obscuredValue = '******'


Detailed Description

Definition at line 34 of file Obscure.php.


Member Function Documentation

getEscapedValue ( index = null  ) 

Hide value to make sure it will not show in HTML

Parameters:
string $index
Returns:
string

Reimplemented from Varien_Data_Form_Element_Abstract.

Definition at line 47 of file Obscure.php.

00048     {
00049         $value = parent::getEscapedValue($index);
00050         if (!empty($value)) {
00051             return $this->_obscuredValue;
00052         }
00053         return $value;
00054     }


Member Data Documentation

$_obscuredValue = '******' [protected]

Definition at line 39 of file Obscure.php.


The documentation for this class was generated from the following file:

Generated on Sat Jul 4 17:25:00 2009 for Magento by  doxygen 1.5.8