mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-06 10:11:38 +09:00
추천 비추천 신고를 채크하는 옵션 추가
This commit is contained in:
parent
b5db271ef1
commit
de432e8e46
3 changed files with 17 additions and 1 deletions
|
|
@ -56,6 +56,7 @@ class documentAdminController extends document
|
|||
$config->view_count_option = Context::get('view_count_option');
|
||||
$config->icons = Context::get('icons');
|
||||
$config->micons = Context::get('micons');
|
||||
$config->examination_vote = Context::get('examination_vote');
|
||||
|
||||
// Insert by creating the module Controller object
|
||||
$oModuleController = getController('module');
|
||||
|
|
|
|||
|
|
@ -5,6 +5,7 @@ $lang->view_count_option_all = '모두 계산';
|
|||
$lang->view_count_option_some = '일부 계산';
|
||||
$lang->view_count_option_once = '중복 금지';
|
||||
$lang->view_count_option_none = '계산 안 함';
|
||||
$lang->cmd_examination_vote = '추천 비추천 신고 검사';
|
||||
$lang->cmd_document_module_config = '기본 설정';
|
||||
$lang->cmd_delete_all_thumbnail = '섬네일 모두 삭제';
|
||||
$lang->cmd_pc_icon_setting = 'PC 아이콘 설정';
|
||||
|
|
@ -19,6 +20,7 @@ $lang->expand = '펼침';
|
|||
$lang->category_group_srls = '그룹 제한';
|
||||
$lang->cmd_make_child = '하위 분류 추가';
|
||||
$lang->cmd_enable_move_category = '분류 위치 변경 (선택 후 위 메뉴를 드래그하세요.)';
|
||||
$lang->about_examination_vote = '사용시 유저가 추천 비추천 신고를 했다는 검사를 좀 더 까다롭게 합니다. 기본값은 사용하지 않음(기존 동작과 일치)이고 사용할 경우 세션, 아이피까지 확인하여 검사합니다.';
|
||||
$lang->about_category_title = '분류 이름을 입력해주세요.';
|
||||
$lang->about_view_count_option = '조회 수 설정에 따라 중복 조회 수 카운트를 할 수 있도록 도와줍니다. 각 옵션에 따라 조회 수를 기록하는 방식이 달라집니다.';
|
||||
$lang->about_expand = '선택하면 늘 펼쳐진 상태로 있게 합니다.';
|
||||
|
|
|
|||
|
|
@ -1,5 +1,9 @@
|
|||
<include target="header.html" />
|
||||
|
||||
<div cond="$XE_VALIDATOR_MESSAGE && $XE_VALIDATOR_ID == 'modules/document/tpl/document_config/1'" class="message {$XE_VALIDATOR_MESSAGE_TYPE}">
|
||||
<p>{$XE_VALIDATOR_MESSAGE}</p>
|
||||
</div>
|
||||
|
||||
<form action="./" method="post" class="x_form-horizontal" method="post">
|
||||
<input type="hidden" name="module" value="document" />
|
||||
<input type="hidden" name="act" value="procDocumentAdminInsertConfig" />
|
||||
|
|
@ -37,7 +41,16 @@
|
|||
<p id="micons_help" class="x_help-block">{$lang->about_cmd_mobile_icon_setting}</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="x_control-group">
|
||||
<label class="x_control-label">{$lang->cmd_examination_vote}</label>
|
||||
<div class="x_controls">
|
||||
<select name="examination_vote">
|
||||
<option value="Y" selected="selected"|cond="$config->examination_vote=='Y'">{$lang->use}</option>
|
||||
<option value="N" selected="selected"|cond="$config->examination_vote!='Y'">{$lang->notuse}</option>
|
||||
</select>
|
||||
<p class="x_help-block">{$lang->about_examination_vote}</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="btnArea x_clearfix">
|
||||
<span class="x_pull-right" style="margin-left:10px;"><input class="btn" type="button" value="{$lang->cmd_delete_all_thumbnail}" onclick="doDeleteAllThumbnail()"/></span>
|
||||
<span class="x_pull-right"><input class="x_btn x_btn-primary" type="submit" value="{$lang->cmd_save}" /></span>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue