mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-13 16:34:52 +09:00
Add configuration for thumbnail target
- 썸네일 생성 대상 설정과 썸네일 생성 방식 설정을 분리하여 외부이미지 썸네일 생성을 방지할 수 있는 옵션 추가 - 문서 모듈과 관리 모듈에 흩어져 있는 썸네일 관련 언어파일을 관리 모듈로 합침
This commit is contained in:
parent
28d5f12cf1
commit
1a6e84d9cc
22 changed files with 60 additions and 36 deletions
|
|
@ -116,6 +116,23 @@
|
|||
<p class="x_help-block">{$lang->about_use_session_ssl}</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="x_control-group">
|
||||
<label class="x_control-label">{$lang->thumbnail_target}</label>
|
||||
<div class="x_controls">
|
||||
<label for="thumbnail_target_all" class="x_inline">
|
||||
<input type="radio" name="thumbnail_target" id="thumbnail_target_all" value="all" checked="checked"|cond="$thumbnail_target == 'all' || !$thumbnail_target" />
|
||||
{$lang->thumbnail_target_all}
|
||||
</label>
|
||||
<label for="thumbnail_target_attachment" class="x_inline">
|
||||
<input type="radio" name="thumbnail_target" id="thumbnail_target_attachment" value="attachment" checked="checked"|cond="$thumbnail_target == 'attachment'" />
|
||||
{$lang->thumbnail_target_attachment}
|
||||
</label>
|
||||
<label for="thumbnail_target_none" class="x_inline">
|
||||
<input type="radio" name="thumbnail_target" id="thumbnail_target_none" value="none" checked="checked"|cond="$thumbnail_target == 'none'" />
|
||||
{$lang->thumbnail_none}
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="x_control-group">
|
||||
<label class="x_control-label">{$lang->thumbnail_type}</label>
|
||||
<div class="x_controls">
|
||||
|
|
@ -127,10 +144,6 @@
|
|||
<input type="radio" name="thumbnail_type" id="thumbnail_type_ratio" value="ratio" checked="checked"|cond="$thumbnail_type == 'ratio'" />
|
||||
{$lang->thumbnail_ratio}
|
||||
</label>
|
||||
<label for="thumbnail_type_none" class="x_inline">
|
||||
<input type="radio" name="thumbnail_type" id="thumbnail_type_none" value="none" checked="checked"|cond="$thumbnail_type == 'none'" />
|
||||
{$lang->thumbnail_none}
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="x_control-group">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue