mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-02 08:42:15 +09:00
Issue 2860 related. Code refactoring.
git-svn-id: http://xe-core.googlecode.com/svn/branches/maserati@12646 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
7406fd1cd9
commit
835d7a8bc0
8 changed files with 17 additions and 17 deletions
|
|
@ -447,7 +447,7 @@ class memberAdminView extends member
|
|||
{
|
||||
$inputTag = sprintf('<input type="hidden" name="__%s_exist" value="false" />', $formInfo->name);
|
||||
}
|
||||
$inputTag .= sprintf('<input type="file" name="%s" id="%s" value="" accept="image/*" /><p class="x_help-block">%s: %dpx, %s: %dpx</p>',
|
||||
$inputTag .= sprintf('<input type="file" name="%s" id="%s" value="" accept="image/*" /><p class="help-block">%s: %dpx, %s: %dpx</p>',
|
||||
$formInfo->name,
|
||||
$formInfo->name,
|
||||
$lang->{$formInfo->name.'_max_width'},
|
||||
|
|
@ -458,7 +458,7 @@ class memberAdminView extends member
|
|||
else if($formInfo->name == 'birthday')
|
||||
{
|
||||
$formTag->type = 'date';
|
||||
$inputTag = sprintf('<input type="hidden" name="birthday" id="date_birthday" value="%s" /><input type="date" placeholder="YYYY-MM-DD" class="inputDate" id="birthday" value="%s" /> <input type="button" value="%s" class="x_btn dateRemover" />',
|
||||
$inputTag = sprintf('<input type="hidden" name="birthday" id="date_birthday" value="%s" /><input type="date" placeholder="YYYY-MM-DD" class="inputDate" id="birthday" value="%s" /> <input type="button" value="%s" class="btn dateRemover" />',
|
||||
$memberInfo['birthday'],
|
||||
zdate($memberInfo['birthday'], 'Y-m-d', false),
|
||||
$lang->cmd_delete);
|
||||
|
|
@ -598,9 +598,9 @@ class memberAdminView extends member
|
|||
<div class="krZip" style="padding-top:5px">
|
||||
<div id="zone_address_search_%column_name%" style="margin-bottom:10px">
|
||||
<label for="krzip_address1_%column_name%">%msg_kr_address%</label>
|
||||
<span class="x_input-append">
|
||||
<span class="input-append">
|
||||
<input type="text" id="krzip_address1_%column_name%" value="%addr_0%" />
|
||||
<button type="button" class="x_btn">%cmd_search%</button>
|
||||
<button type="button" class="btn">%cmd_search%</button>
|
||||
</span>
|
||||
</div>
|
||||
<div id="zone_address_list_%column_name%" hidden style="margin-bottom:10px">
|
||||
|
|
@ -629,7 +629,7 @@ EOD;
|
|||
$inputTag = preg_replace('@%(\w+)%@e', '$replace[$1]', $template);
|
||||
|
||||
if($extendForm->description)
|
||||
$inputTag .= '<p class="x_help-block">'.htmlspecialchars($extendForm->description).'</p>';
|
||||
$inputTag .= '<p class="help-block">'.htmlspecialchars($extendForm->description).'</p>';
|
||||
}
|
||||
$formTag->inputTag = $inputTag;
|
||||
$formTags[] = $formTag;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue