mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-02 01:52:10 +09:00
쪽지 모듈의 모바일 지원을 향상시켰습니다. 이 PR 이후에 회원 모듈의 모바일 지원을 향상 시키면 XE의 모바일 지원 수준이 한 단계 상승하게 됩니다. 꼭 반영되길 바랍니다! ## 수정 내용 * 커뮤니케이션 애드온의 회원 메뉴 설정 기능을 모듈의 트리거로 처리하여 조금 더 직관적으로 설정하게 됨. * 기본값은 모듈이 동작 하도록 함. * 모듈을 켜고 끌 수 있도록 함. * 모바일에서 친구 추가를 할 수 있게 함. * 스타일 아주 조금 다듬음.
30 lines
1.4 KiB
HTML
30 lines
1.4 KiB
HTML
<load target="./css/mcommunication.css" />
|
|
<load target="./js/communication.js" />
|
|
<div class="hx h2">
|
|
<h2>
|
|
<!--@if($friend_group->friend_group_srl)-->
|
|
{$lang->cmd_rename_friend_group}
|
|
<!--@else-->
|
|
{$lang->cmd_add_friend_group}
|
|
<!--@end-->
|
|
</h2>
|
|
</div>
|
|
<div cond="$XE_VALIDATOR_MESSAGE && $XE_VALIDATOR_ID == 'modules/communication/skins/default/add_friend_group/1'" class="message {$XE_VALIDATOR_MESSAGE_TYPE}">
|
|
<p>{$XE_VALIDATOR_MESSAGE}</p>
|
|
</div>
|
|
<form ruleset="addFriendGroup" action="./" method="post" class="ff">
|
|
<input type="hidden" name="module" value="communication" />
|
|
<input type="hidden" name="act" value="procCommunicationAddFriendGroup" />
|
|
<input type="hidden" name="friend_group_srl" value="{$friend_group->friend_group_srl}" />
|
|
<input type="hidden" name="xe_validator_id" value="modules/communication/skins/default/add_friend_group/1" />
|
|
<ul>
|
|
<li>
|
|
<label for="title" class="control-label">{$lang->msg_insert_group_name}</label>
|
|
<input name="title" id="title" type="text" value="{htmlspecialchars($friend_group->title, ENT_COMPAT | ENT_HTML401, 'UTF-8', false)}"/>
|
|
</li>
|
|
</ul>
|
|
<div class="bna">
|
|
<input cond="$friend_group->friend_group_srl" type="submit" value="{$lang->cmd_modify}" class="btn btn-inverse" />
|
|
<input cond="!$friend_group->friend_group_srl" type="submit" value="{$lang->cmd_insert}" class="btn btn-inverse" />
|
|
</div>
|
|
</form>
|