mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-15 09:19:57 +09:00
- 모듈 업데이트 후 "success"라고만 뜨는 문제를 수정 - 반드시 필요한 "모듈 업데이트"를 "새 버전 설치"로 오해하여 피하는 일이 없도록 "설정 완료"라는 표현을 사용하고 설명을 추가함 - 새 버전이 있을 경우 현재 버전과 새 버전을 함께 표시하고, 모듈 업데이트와 혼동하지 않도록 "자료실"에 등록된 새 버전 알림이라는 설명을 추가함
82 lines
3.1 KiB
HTML
82 lines
3.1 KiB
HTML
<include target="./_header.html" />
|
|
<load target="./js/excanvas.min.js" targetie="lt IE 9" />
|
|
<load target="./js/jquery.jqplot.min.js" />
|
|
<load target="./js/jqplot.barRenderer.min.js" />
|
|
<load target="./js/jqplot.categoryAxisRenderer.min.js" />
|
|
<load target="./js/jqplot.pointLabels.min.js" />
|
|
<load target="./css/jquery.jqplot.min.css" />
|
|
|
|
<div class="content" id="content">
|
|
<div class="x_page-header">
|
|
<h1>{$lang->control_panel} <a class="x_icon-question-sign" href="./common/manual/admin/index.html#UMAN_dashboard" target="_blank">{$lang->help}</a></h1>
|
|
</div>
|
|
|
|
<div id="checkBrowserMessage" class="message error" style="display:none;">
|
|
<h2>{$lang->checkBrowserIE8}</h2>
|
|
</div>
|
|
|
|
<div cond="$XE_VALIDATOR_MESSAGE && $XE_VALIDATOR_ID == 'modules/admin/tpl/index/1'" class="message {$XE_VALIDATOR_MESSAGE_TYPE}">
|
|
<p>{$XE_VALIDATOR_MESSAGE}</p>
|
|
</div>
|
|
|
|
<div class="message error" cond="$db_info->use_sitelock == 'Y'">
|
|
<h2>{$lang->sitelock_in_use}</h2>
|
|
<p>{$lang->about_sitelock_in_use} <a href="{getUrl('', 'module', 'admin', 'act', 'dispAdminConfigSitelock')}">{$lang->cmd_configure}</a></p>
|
|
</div>
|
|
|
|
<div class="message update" cond="$addTables || $needUpdate">
|
|
<h2>{$lang->need_complete_configuration}</h2>
|
|
<p>{$lang->need_complete_configuration_details}</p>
|
|
<ul>
|
|
<block loop="$module_list => $key,$value">
|
|
<li style="margin:0 0 4px 0" cond="$value->need_install">
|
|
{$value->title} ({$value->module})
|
|
<button type="button" onclick="doInstallModule('{$value->module}')" class="x_btn x_btn-small">{$lang->need_table}</button>
|
|
</li>
|
|
<li style="margin:0 0 4px 0" cond="$value->need_update">
|
|
{$value->title} ({$value->module})
|
|
<button type="button" onclick="doUpdateModule('{$value->module}')" class="x_btn x_btn-small">{$lang->need_update}</button>
|
|
</li>
|
|
</block>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="message update" cond="count($newVersionList)">
|
|
<h2>{$lang->available_new_version}</h2>
|
|
<p>{$lang->available_new_version_details}</p>
|
|
<ul>
|
|
<li loop="$newVersionList => $key, $package" style="margin:0 0 4px 0">
|
|
[{$lang->typename[$package->type]}] {$package->title} ver. {$package->currentVersion} → {$package->version}
|
|
<a href="{$package->url}&return_url={urlencode(getRequestUriByServerEnviroment())}">{$lang->update}</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="dashboard">
|
|
<block cond="$counterAddonActivated">
|
|
<include target="./_dashboard_counter.html" />
|
|
</block>
|
|
<block cond="!$counterAddonActivated">
|
|
<include target="./_dashboard_default.html" />
|
|
</block>
|
|
</div>
|
|
|
|
<div class="message error" cond="version_compare(PHP_VERSION, __XE_MIN_PHP_VERSION__, '<')">
|
|
<h2>{$lang->msg_php_warning_title}</h2>
|
|
<p>{$lang->msg_php_warning_notice}</p>
|
|
<p>{$lang->msg_php_warning_now_version} : <strong>{phpversion()}</strong></p>
|
|
<p><a href="https://secure.php.net/downloads.php" target="_blank">{$lang->msg_php_warning_latest_version_check}</a></p>
|
|
<ul>{$lang->msg_php_warning_notice_explain}</ul>
|
|
</div>
|
|
</div>
|
|
|
|
<!--[if lt IE 9]>
|
|
<script>
|
|
jQuery(function($) {
|
|
$('#checkBrowserMessage').show();
|
|
});
|
|
</script>
|
|
<![endif]-->
|
|
|
|
<include target="./_footer.html" />
|
|
|