mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 02:31:40 +09:00
도로명 주소쳬계에 맞추어 krzip extravar와 회원가입 사용자정의 필드 개선
This commit is contained in:
parent
4f4c63ed3d
commit
797070a1a2
3 changed files with 4 additions and 161 deletions
|
|
@ -473,25 +473,8 @@ class ExtraItem
|
|||
break;
|
||||
// address
|
||||
case "kr_zip" :
|
||||
// krzip address javascript plugin load
|
||||
Context::loadJavascriptPlugin('ui.krzip');
|
||||
|
||||
$buff .=
|
||||
'<div id="addr_searched_' . $column_name . '" style="display:' . ($value[0] ? 'block' : 'none') . ';">' .
|
||||
'<input type="text" readonly="readonly" name="' . $column_name . '[]" value="' . $value[0] . '" class="address" />' .
|
||||
'<a href="#" onclick="doShowKrZipSearch(this, \'' . $column_name . '\'); return false;" class="button red"><span>' . Context::getLang('cmd_cancel') . '</span></a>' .
|
||||
'</div>' .
|
||||
'<div id="addr_list_' . $column_name . '" style="display:none;">' .
|
||||
'<select name="addr_list_' . $column_name . '"></select>' .
|
||||
'<a href="#" onclick="doSelectKrZip(this, \'' . $column_name . '\'); return false;" class="button blue"><span>' . Context::getLang('cmd_select') . '</span></a>' .
|
||||
'<a href="#" onclick="doHideKrZipList(this, \'' . $column_name . '\'); return false;" class="button red"><span>' . Context::getLang('cmd_cancel') . '</span></a>' .
|
||||
'</div>' .
|
||||
'<div id="addr_search_' . $column_name . '" style="display:' . ($value[0] ? 'none' : 'block') . '">' .
|
||||
'<input type="text" name="addr_search_' . $column_name . '" class="address" value="" />' .
|
||||
'<a href="#" onclick="doSearchKrZip(this, \'' . $column_name . '\'); return false;" class="button green"><span>' . Context::getLang('cmd_search') . '</span></a>' .
|
||||
'</div>' .
|
||||
'<input type="text" name="' . $column_name . '[]" value="' . htmlspecialchars($value[1]) . '" class="address" />' .
|
||||
'';
|
||||
$krzipModel = &getModel('krzip');
|
||||
$buff .= $krzipModel->getKrzipCodeSearchHtml($column_name, $value);
|
||||
break;
|
||||
// General text
|
||||
default :
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue