mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
#18898369 게시시글 관리시 문서 미선택시 오류메시지 출력
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7691 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
0660edec65
commit
4168891a34
10 changed files with 15 additions and 11 deletions
|
|
@ -94,4 +94,5 @@
|
|||
);
|
||||
|
||||
$lang->success_trashed = "Successfully moved to trashcan";
|
||||
$lang->msg_not_selected_document = '선택된 문서가 없습니다.';
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -77,4 +77,5 @@
|
|||
$lang->trash_description = 'Description';
|
||||
|
||||
$lang->success_trashed = "Successfully moved to trashcan";
|
||||
$lang->msg_not_selected_document = '선택된 문서가 없습니다.';
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -78,4 +78,5 @@
|
|||
$lang->trash_description = 'Description';
|
||||
|
||||
$lang->success_trashed = "Successfully moved to trashcan";
|
||||
$lang->msg_not_selected_document = '선택된 문서가 없습니다.';
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -96,4 +96,5 @@
|
|||
);
|
||||
|
||||
$lang->success_trashed = "Successfully moved to trashcan";
|
||||
$lang->msg_not_selected_document = '선택된 문서가 없습니다.';
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -96,5 +96,5 @@
|
|||
);
|
||||
|
||||
$lang->success_trashed = '휴지통으로 이동되었습니다.';
|
||||
|
||||
$lang->msg_not_selected_document = '선택된 문서가 없습니다.';
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -100,4 +100,5 @@
|
|||
$lang->success_trashed = 'Удалено в корзину';
|
||||
|
||||
$lang->success_trashed = "Successfully moved to trashcan";
|
||||
$lang->msg_not_selected_document = '선택된 문서가 없습니다.';
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -98,4 +98,5 @@
|
|||
);
|
||||
|
||||
$lang->success_trashed = "Đã chuyển tới thùng rác thành công.";
|
||||
$lang->msg_not_selected_document = '선택된 문서가 없습니다.';
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -96,5 +96,5 @@
|
|||
);
|
||||
|
||||
$lang->success_trashed = '已成功移除到回收箱。';
|
||||
|
||||
$lang->msg_not_selected_document = '선택된 문서가 없습니다.';
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -96,4 +96,5 @@
|
|||
);
|
||||
|
||||
$lang->success_trashed = "成功地移到垃圾桶";
|
||||
$lang->msg_not_selected_document = '선택된 문서가 없습니다.';
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -8,24 +8,24 @@
|
|||
<form action="./" method="get" id="fo_management">
|
||||
<input type="hidden" name="type" value="" />
|
||||
|
||||
<!--@if(count($document_list)==0)-->
|
||||
<div id="popBody">
|
||||
{$lang->msg_not_selected_document}
|
||||
</div>
|
||||
<!--@else-->
|
||||
<div id="popBody">
|
||||
<table cellspacing="0" class="rowTable">
|
||||
<tr>
|
||||
<th scope="row"><div><label for="textfield1">{$lang->checked_count} ({count($document_list)})</label></div></th>
|
||||
<td>
|
||||
<!--@if(count($document_list))-->
|
||||
<input type="checkbox" onclick="XE.checkboxToggleAll()" checked="checked"/> {$lang->cmd_select}
|
||||
<ul class="document_list_box">
|
||||
<!--@foreach($document_list as $key => $document)-->
|
||||
<li class="document_list"><input type="checkbox" checked="checked" name="cart" value="{$document->document_srl}" onclick="doAddDocumentCart(this);"/> <address>{$document->getNickName()}</address> <span class="document_title">{$document->getTitle()}</span></li>
|
||||
<!--@end-->
|
||||
</ul>
|
||||
<!--@else-->
|
||||
|
||||
<!--@end-->
|
||||
</td>
|
||||
</tr>
|
||||
<!--@if(count($document_list))-->
|
||||
<tr>
|
||||
<th scope="row"><div>{$lang->move_target_module}</div></th>
|
||||
<td>
|
||||
|
|
@ -46,21 +46,18 @@
|
|||
<textarea name="message_content" class="inputTypeTextArea w400" cols="45" rows="5"></textarea>
|
||||
</td>
|
||||
</tr>
|
||||
<!--@end-->
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<!--@if(count($document_list))-->
|
||||
<div id="popFooter">
|
||||
<a href="#" onclick="doManageDocument('trash');return false;" class="button red"><span>{$lang->cmd_trash}</span></a>
|
||||
<a href="#" onclick="doManageDocument('delete');return false;" class="button black strong"><span>{$lang->cmd_delete}</span></a>
|
||||
<a href="#" onclick="doManageDocument('move');return false;" class="button blue"><span>{$lang->cmd_move}</span></a>
|
||||
<a href="#" onclick="doManageDocument('copy');return false;" class="button green"><span>{$lang->cmd_copy}</span></a>
|
||||
</div>
|
||||
<!--@end-->
|
||||
|
||||
<script type="text/javascript">
|
||||
jQuery(function() { doGetCategoryFromModule(jQuery('#target_module').get(0)); } );
|
||||
</script>
|
||||
|
||||
<!--@end-->
|
||||
</form>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue