rhymix/modules/admin/tpl/server_env.html
2021-02-05 20:45:11 +09:00

25 lines
No EOL
666 B
HTML

<config autoescape="on" />
<load target="./js/menu_setup.js" usecdn="true" />
<div class="x_page-header">
<h1>{$lang->server_env}</h1>
</div>
<section class="section">
<div class="server_env">{$str_info}</div>
<div class="server_env">[Tasks]<br /><a href="javascript:apcu_clear_cache()">apcu_clear_cache()</a><br /><a href="javascript:opcache_reset()">opcache_reset()</a></div>
</section>
<script>
function apcu_clear_cache() {
exec_json('admin.procAdminClearApcu', { }, function(data) {
alert(data.message);
});
}
function opcache_reset() {
exec_json('admin.procAdminClearOpcache', { }, function(data) {
alert(data.message);
});
}
</script>