Add password (hidden text) extravar type

This commit is contained in:
Kijin Sung 2016-04-24 23:17:43 +09:00
parent 2d833e5668
commit 447ba08a2c
11 changed files with 22 additions and 3 deletions

View file

@ -561,6 +561,10 @@ class memberAdminView extends member
{
$template = '<textarea name="%column_name%" id="%column_name%" rows="4" cols="42">%value%</textarea>';
}
else if($extendForm->column_type == 'password')
{
$template = '<input type="password" name="%column_name%" id="%column_name%" value="%value%" />';
}
else if($extendForm->column_type == 'checkbox')
{
$template = '';