mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-30 15:52:17 +09:00
Merge pull request #459 from kijin/pr/password-extra-var
#374 숨김 입력칸 확장변수 타입 추가
This commit is contained in:
commit
81b5230c9c
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