first
This commit is contained in:
7
modules/dashboard/widgets/system/main.css
Normal file
7
modules/dashboard/widgets/system/main.css
Normal file
@@ -0,0 +1,7 @@
|
||||
#rb-dashboard .panel dl {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
#rb-dashboard dt,
|
||||
#rb-dashboard dd {
|
||||
line-height: 2;
|
||||
}
|
||||
15
modules/dashboard/widgets/system/main.php
Normal file
15
modules/dashboard/widgets/system/main.php
Normal 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>
|
||||
1
modules/dashboard/widgets/system/name.txt
Normal file
1
modules/dashboard/widgets/system/name.txt
Normal file
@@ -0,0 +1 @@
|
||||
System Environment
|
||||
5
modules/dashboard/widgets/system/var.php
Normal file
5
modules/dashboard/widgets/system/var.php
Normal 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.'&m=admin&module=admin'; // 더보기 링크
|
||||
?>
|
||||
Reference in New Issue
Block a user