00001 <?PHP 00002 00008 class PasswordFormField extends TextFormField { 00011 00022 function PasswordFormField( 00023 $Name, $IsRequired, $Label, $Length, $MaxLength, 00024 $ValidFunc = NULL, $ValidMsgs = NULL) 00025 { 00026 $this->TextFormField( 00027 $Name, $IsRequired, $Label, $Length, $MaxLength, $ValidFunc, $ValidMsgs); 00028 } 00029 00031 } 00032 00033 ?>