mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@894 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
e142f5e4a9
commit
48d3f91cc2
4 changed files with 20 additions and 1 deletions
|
|
@ -128,6 +128,14 @@
|
|||
// 추가 가입폼 목록을 받음
|
||||
Context::set('extend_form_list', $oMemberModel->getCombineJoinForm($member_info));
|
||||
|
||||
// 에디터 모듈의 getEditor를 호출하여 서명용으로 세팅
|
||||
if($member_info->member_srl) {
|
||||
$oEditorModel = &getModel('editor');
|
||||
$editor = $oEditorModel->getEditor($member_info->member_srl, false, false);
|
||||
Context::set('editor', $editor);
|
||||
}
|
||||
|
||||
|
||||
// 템플릿 파일 지정
|
||||
$this->setTemplateFile('modify_info');
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,6 +8,7 @@
|
|||
<param name="nick_name" target="nick_name" />
|
||||
<param name="allow_mailing" target="allow_mailing" />
|
||||
<param name="email_address" target="email_address" />
|
||||
<param name="signature" target="content" />
|
||||
</parameter>
|
||||
<response callback_func="completeModify">
|
||||
<tag name="error" />
|
||||
|
|
|
|||
|
|
@ -27,7 +27,12 @@
|
|||
<tr>
|
||||
<th>{$lang->image_mark}</th>
|
||||
<td><img src="{$member_info->image_mark->src}" border="0" alt="image_mark" /></td>
|
||||
</td>
|
||||
</tr>
|
||||
<!--@end-->
|
||||
<!--@if($member_info->signature)-->
|
||||
<tr>
|
||||
<th>{$lang->signature}</th>
|
||||
<td>{$member_info->signature}</td>
|
||||
</tr>
|
||||
<!--@end-->
|
||||
<tr>
|
||||
|
|
|
|||
|
|
@ -15,6 +15,7 @@
|
|||
<input type="hidden" name="act" value="" />
|
||||
<input type="hidden" name="document_srl" value="{$document_srl}" />
|
||||
<input type="hidden" name="member_srl" value="{$member_info->member_srl}" />
|
||||
<input type="hidden" name="content" value="{htmlspecialchars($member_info->signature)}" />
|
||||
<input type="hidden" name="page" value="{$page}" />
|
||||
|
||||
<div>
|
||||
|
|
@ -83,6 +84,10 @@
|
|||
<tr>
|
||||
<td>{$lang->about_allow_mailing}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>{$lang->signature}</th>
|
||||
<td>{$editor}</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<!--@if($extend_form_list)-->
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue