This commit is contained in:
shim
2023-04-17 11:06:08 +09:00
parent d0b393aa97
commit 76264e09ad
4686 changed files with 552713 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
#rb-dashboard .panel dl {
margin-bottom: 0;
}
#rb-dashboard dt,
#rb-dashboard dd {
line-height: 2;
}

View File

@@ -0,0 +1,15 @@
<div class="panel-body">
<dl class="dl-horizontal">
<dt>Web Server</dt>
<dd><?php echo $_SERVER['SERVER_SOFTWARE']?></dd>
<dt>PHP Version</dt>
<dd><?php echo phpversion()?></dd>
<dt>MySQL Version</dt>
<dd><?php echo db_info()?> (<?php echo $DB['type']?>)</dd>
<dt>GD Version</dt>
<dd><?php $_gd = gd_info();echo $_gd['GD Version']?></dd>
<dt>KimsQ Rb Version</dt>
<dd><?php echo $d['admin']['version']?></dd>
</dl>
</div>

View File

@@ -0,0 +1 @@
System Environment

View File

@@ -0,0 +1,5 @@
<?php
$d['admdash']['title'] = 'System Environment'; //타이틀
$d['admdash']['col'] = '6'; // 가로폭 100% = 12 , 50% = 6
$d['admdash']['more'] = $g['s'].'/?r='.$r.'&amp;m=admin&amp;module=admin'; // 더보기 링크
?>