mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-08 03:22:29 +09:00
Add password (hidden text) extravar type
This commit is contained in:
parent
2d833e5668
commit
447ba08a2c
11 changed files with 22 additions and 3 deletions
|
|
@ -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 = '';
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@
|
|||
<label class="x_control-label">{$lang->cmd_required}/{$lang->cmd_optional}</label>
|
||||
<div class="x_controls">
|
||||
<label for="radio_required" class="x_inline"><input type="radio" id="radio_required" name="required" value="Y" /> {$lang->cmd_required}</label>
|
||||
<label for="radio_option" class="x_inline"><input type="radio" id="radio_option" name="required" value="N" /> {$lang->cmd_optional}</label>
|
||||
<label for="radio_option" class="x_inline"><input type="radio" id="radio_option" name="required" value="N" checked="checked" /> {$lang->cmd_optional}</label>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue