fix space
This commit is contained in:
parent
a46f04efc7
commit
6bdd0d94ec
73
drives/DiskStatus.class.php
Normal file
73
drives/DiskStatus.class.php
Normal file
@ -0,0 +1,73 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Disk Status Class
|
||||
*
|
||||
* http://pmav.eu/stuff/php-disk-status/
|
||||
*
|
||||
* v1.0 - 17/Oct/2008
|
||||
* v1.1 - 22/Ago/2009 (Exceptions added.)
|
||||
*/
|
||||
|
||||
class DiskStatus {
|
||||
|
||||
const RAW_OUTPUT = true;
|
||||
|
||||
private $diskPath;
|
||||
|
||||
|
||||
function __construct($diskPath) {
|
||||
$this->diskPath = $diskPath;
|
||||
}
|
||||
|
||||
|
||||
public function totalSpace($rawOutput = false) {
|
||||
$diskTotalSpace = @disk_total_space($this->diskPath);
|
||||
|
||||
if ($diskTotalSpace === FALSE) {
|
||||
throw new Exception('totalSpace(): Invalid disk path.');
|
||||
}
|
||||
|
||||
return $rawOutput ? $diskTotalSpace : $this->addUnits($diskTotalSpace);
|
||||
}
|
||||
|
||||
|
||||
public function freeSpace($rawOutput = false) {
|
||||
$diskFreeSpace = @disk_free_space($this->diskPath);
|
||||
|
||||
if ($diskFreeSpace === FALSE) {
|
||||
throw new Exception('freeSpace(): Invalid disk path.');
|
||||
}
|
||||
|
||||
return $rawOutput ? $diskFreeSpace : $this->addUnits($diskFreeSpace);
|
||||
}
|
||||
|
||||
|
||||
public function usedSpace($precision = 1) {
|
||||
try {
|
||||
return round((100 - ($this->freeSpace(self::RAW_OUTPUT) / $this->totalSpace(self::RAW_OUTPUT)) * 100), $precision);
|
||||
} catch (Exception $e) {
|
||||
throw $e;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
public function getDiskPath() {
|
||||
return $this->diskPath;
|
||||
}
|
||||
|
||||
|
||||
private function addUnits($bytes) {
|
||||
$units = array( 'B', 'KB', 'MB', 'GB', 'TB' );
|
||||
|
||||
for($i = 0; $bytes >= 1024 && $i < count($units) - 1; $i++ ) {
|
||||
$bytes /= 1024;
|
||||
}
|
||||
|
||||
return round($bytes, 1).' '.$units[$i];
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
|
92
drives/drive1.php
Normal file
92
drives/drive1.php
Normal file
@ -0,0 +1,92 @@
|
||||
<!--Force IE6 into quirks mode with this comment tag-->
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
|
||||
<head>
|
||||
<link rel="stylesheet" type="text/css" href="css/white.css" />
|
||||
<link rel="alternate stylesheet" type="text/css" media="screen" title="black" href="css/black.css" />
|
||||
<link rel="alternate stylesheet" type="text/css" media="screen" title="white" href="css/white.css" />
|
||||
<link rel="alternate stylesheet" type="text/css" media="screen" title="blue" href="css/blue.css" />
|
||||
|
||||
<!--This script should appear below your LINK stylesheet tags -->
|
||||
|
||||
<script src="styleswitch.js" type="text/javascript">
|
||||
|
||||
/***********************************************
|
||||
* Style Sheet Switcher v1.1- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
|
||||
* This notice MUST stay intact for legal use
|
||||
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for this script and 100s more
|
||||
***********************************************/
|
||||
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
window.onload=function(){
|
||||
var formref=document.getElementById("switchform")
|
||||
indicateSelected(formref.switchcontrol)
|
||||
}
|
||||
</script>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.js" type="text/javascript"></script>
|
||||
<style>
|
||||
.hiddenRow { display: none; }
|
||||
</style>
|
||||
<script>
|
||||
function toggleNextRow(row) {
|
||||
var nextRow = $(row).next();
|
||||
nextRow.toggle();
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<?php include '../config.php';?>
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Disk Status Class - Example
|
||||
*
|
||||
* http://pmav.eu/stuff/php-disk-status/
|
||||
*
|
||||
* 22/Aug/2009
|
||||
*/
|
||||
|
||||
require_once 'DiskStatus.class.php';
|
||||
|
||||
try {
|
||||
$diskStatusC = new DiskStatus("$drive1");
|
||||
|
||||
$freeSpaceC = $diskStatusC->freeSpace();
|
||||
$totalSpaceC = $diskStatusC->totalSpace();
|
||||
$barWidthC = ($diskStatusC->usedSpace()/100) * 150;
|
||||
|
||||
} catch (Exception $e) {
|
||||
echo 'Error ('.$e->getMessage().')';
|
||||
exit();
|
||||
}
|
||||
|
||||
|
||||
catch (Exception $e) {
|
||||
echo 'Error ('.$e->getMessage().')';
|
||||
exit();
|
||||
}
|
||||
|
||||
?>
|
||||
<body>
|
||||
<table width='190' border='0' cellspacing='0' cellpadding='0'>
|
||||
<tr onclick="toggleNextRow(this)" BGCOLOR='#FFFFFF'>
|
||||
<th style='text-align: left;'><font color='black'><?php echo $drive1;?>\<?= $freeSpaceC ?> (of <?= $totalSpaceC ?>)</font></th>
|
||||
</tr>
|
||||
<tr class="hiddenRow">
|
||||
<td bgcolor='#FFFFFF'>
|
||||
<div class="disk">
|
||||
<div class="used" style="width: <?= $barWidthC ?>px"><?= $diskStatusC->usedSpace() ?>% </div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</form>
|
||||
</td>
|
||||
</table>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
93
drives/drive2.php
Normal file
93
drives/drive2.php
Normal file
@ -0,0 +1,93 @@
|
||||
<!--Force IE6 into quirks mode with this comment tag-->
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
|
||||
<head>
|
||||
<link rel="stylesheet" type="text/css" href="css/white.css" />
|
||||
<link rel="alternate stylesheet" type="text/css" media="screen" title="black" href="css/black.css" />
|
||||
<link rel="alternate stylesheet" type="text/css" media="screen" title="white" href="css/white.css" />
|
||||
<link rel="alternate stylesheet" type="text/css" media="screen" title="blue" href="css/blue.css" />
|
||||
|
||||
<!--This script should appear below your LINK stylesheet tags -->
|
||||
|
||||
<script src="styleswitch.js" type="text/javascript">
|
||||
|
||||
/***********************************************
|
||||
* Style Sheet Switcher v1.1- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
|
||||
* This notice MUST stay intact for legal use
|
||||
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for this script and 100s more
|
||||
***********************************************/
|
||||
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
window.onload=function(){
|
||||
var formref=document.getElementById("switchform")
|
||||
indicateSelected(formref.switchcontrol)
|
||||
}
|
||||
</script>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.js" type="text/javascript"></script>
|
||||
<style>
|
||||
.hiddenRow { display: none; }
|
||||
</style>
|
||||
<script>
|
||||
function toggleNextRow(row) {
|
||||
var nextRow = $(row).next();
|
||||
nextRow.toggle();
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<?php include '../config.php';?>
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Disk Status Class - Example
|
||||
*
|
||||
* http://pmav.eu/stuff/php-disk-status/
|
||||
*
|
||||
* 22/Aug/2009
|
||||
*/
|
||||
|
||||
require_once 'DiskStatus.class.php';
|
||||
|
||||
try {
|
||||
$diskStatusC = new DiskStatus("$drive2");
|
||||
|
||||
$freeSpaceC = $diskStatusC->freeSpace();
|
||||
$totalSpaceC = $diskStatusC->totalSpace();
|
||||
$barWidthC = ($diskStatusC->usedSpace()/100) * 150;
|
||||
|
||||
} catch (Exception $e) {
|
||||
echo 'Error ('.$e->getMessage().')';
|
||||
exit();
|
||||
}
|
||||
|
||||
|
||||
catch (Exception $e) {
|
||||
echo 'Error ('.$e->getMessage().')';
|
||||
exit();
|
||||
}
|
||||
|
||||
?>
|
||||
<body>
|
||||
<table width='190' border='0' cellspacing='0' cellpadding='0'>
|
||||
<tr onclick="toggleNextRow(this)" BGCOLOR='#FFFFFF'>
|
||||
<th style='text-align: left;'><font color='black'><?php echo $drive2;?>\<?= $freeSpaceC ?> (of <?= $totalSpaceC ?>)</font></th>
|
||||
</tr>
|
||||
</tr>
|
||||
<tr class="hiddenRow">
|
||||
<td bgcolor='#FFFFFF'>
|
||||
<div class="disk">
|
||||
<div class="used" style="width: <?= $barWidthC ?>px"><?= $diskStatusC->usedSpace() ?>% </div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</form>
|
||||
</td>
|
||||
</table>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
93
drives/drive3.php
Normal file
93
drives/drive3.php
Normal file
@ -0,0 +1,93 @@
|
||||
<!--Force IE6 into quirks mode with this comment tag-->
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
|
||||
<head>
|
||||
<link rel="stylesheet" type="text/css" href="css/white.css" />
|
||||
<link rel="alternate stylesheet" type="text/css" media="screen" title="black" href="css/black.css" />
|
||||
<link rel="alternate stylesheet" type="text/css" media="screen" title="white" href="css/white.css" />
|
||||
<link rel="alternate stylesheet" type="text/css" media="screen" title="blue" href="css/blue.css" />
|
||||
|
||||
<!--This script should appear below your LINK stylesheet tags -->
|
||||
|
||||
<script src="styleswitch.js" type="text/javascript">
|
||||
|
||||
/***********************************************
|
||||
* Style Sheet Switcher v1.1- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
|
||||
* This notice MUST stay intact for legal use
|
||||
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for this script and 100s more
|
||||
***********************************************/
|
||||
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
window.onload=function(){
|
||||
var formref=document.getElementById("switchform")
|
||||
indicateSelected(formref.switchcontrol)
|
||||
}
|
||||
</script>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.js" type="text/javascript"></script>
|
||||
<style>
|
||||
.hiddenRow { display: none; }
|
||||
</style>
|
||||
<script>
|
||||
function toggleNextRow(row) {
|
||||
var nextRow = $(row).next();
|
||||
nextRow.toggle();
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<?php include '../config.php';?>
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Disk Status Class - Example
|
||||
*
|
||||
* http://pmav.eu/stuff/php-disk-status/
|
||||
*
|
||||
* 22/Aug/2009
|
||||
*/
|
||||
|
||||
require_once 'DiskStatus.class.php';
|
||||
|
||||
try {
|
||||
$diskStatusC = new DiskStatus("$drive3");
|
||||
|
||||
$freeSpaceC = $diskStatusC->freeSpace();
|
||||
$totalSpaceC = $diskStatusC->totalSpace();
|
||||
$barWidthC = ($diskStatusC->usedSpace()/100) * 150;
|
||||
|
||||
} catch (Exception $e) {
|
||||
echo 'Error ('.$e->getMessage().')';
|
||||
exit();
|
||||
}
|
||||
|
||||
|
||||
catch (Exception $e) {
|
||||
echo 'Error ('.$e->getMessage().')';
|
||||
exit();
|
||||
}
|
||||
|
||||
?>
|
||||
<body>
|
||||
<table width='190' border='0' cellspacing='0' cellpadding='0'>
|
||||
<tr onclick="toggleNextRow(this)" BGCOLOR='#FFFFFF'>
|
||||
<th style='text-align: left;'><font color='black'><?php echo $drive3;?>\<?= $freeSpaceC ?> (of <?= $totalSpaceC ?>)</font></th>
|
||||
</tr>
|
||||
</tr>
|
||||
<tr class="hiddenRow">
|
||||
<td bgcolor='#FFFFFF'>
|
||||
<div class="disk">
|
||||
<div class="used" style="width: <?= $barWidthC ?>px"><?= $diskStatusC->usedSpace() ?>% </div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</form>
|
||||
</td>
|
||||
</table>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
92
drives/drive4.php
Normal file
92
drives/drive4.php
Normal file
@ -0,0 +1,92 @@
|
||||
<!--Force IE6 into quirks mode with this comment tag-->
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
|
||||
<head>
|
||||
<link rel="stylesheet" type="text/css" href="css/white.css" />
|
||||
<link rel="alternate stylesheet" type="text/css" media="screen" title="black" href="css/black.css" />
|
||||
<link rel="alternate stylesheet" type="text/css" media="screen" title="white" href="css/white.css" />
|
||||
<link rel="alternate stylesheet" type="text/css" media="screen" title="blue" href="css/blue.css" />
|
||||
|
||||
<!--This script should appear below your LINK stylesheet tags -->
|
||||
|
||||
<script src="styleswitch.js" type="text/javascript">
|
||||
|
||||
/***********************************************
|
||||
* Style Sheet Switcher v1.1- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
|
||||
* This notice MUST stay intact for legal use
|
||||
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for this script and 100s more
|
||||
***********************************************/
|
||||
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
window.onload=function(){
|
||||
var formref=document.getElementById("switchform")
|
||||
indicateSelected(formref.switchcontrol)
|
||||
}
|
||||
</script>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.js" type="text/javascript"></script>
|
||||
<style>
|
||||
.hiddenRow { display: none; }
|
||||
</style>
|
||||
<script>
|
||||
function toggleNextRow(row) {
|
||||
var nextRow = $(row).next();
|
||||
nextRow.toggle();
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<?php include '../config.php';?>
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Disk Status Class - Example
|
||||
*
|
||||
* http://pmav.eu/stuff/php-disk-status/
|
||||
*
|
||||
* 22/Aug/2009
|
||||
*/
|
||||
|
||||
require_once 'DiskStatus.class.php';
|
||||
|
||||
try {
|
||||
$diskStatusC = new DiskStatus("$drive4");
|
||||
|
||||
$freeSpaceC = $diskStatusC->freeSpace();
|
||||
$totalSpaceC = $diskStatusC->totalSpace();
|
||||
$barWidthC = ($diskStatusC->usedSpace()/100) * 150;
|
||||
|
||||
} catch (Exception $e) {
|
||||
echo 'Error ('.$e->getMessage().')';
|
||||
exit();
|
||||
}
|
||||
|
||||
|
||||
catch (Exception $e) {
|
||||
echo 'Error ('.$e->getMessage().')';
|
||||
exit();
|
||||
}
|
||||
|
||||
?>
|
||||
<body>
|
||||
<table width='190' border='0' cellspacing='0' cellpadding='0'>
|
||||
<tr onclick="toggleNextRow(this)" BGCOLOR='#FFFFFF'>
|
||||
<th style='text-align: left;'><font color='black'><?php echo $drive4;?>\<?= $freeSpaceC ?> (of <?= $totalSpaceC ?>)</font></th>
|
||||
</tr>
|
||||
<tr class="hiddenRow">
|
||||
<td bgcolor='#FFFFFF'>
|
||||
<div class="disk">
|
||||
<div class="used" style="width: <?= $barWidthC ?>px"><?= $diskStatusC->usedSpace() ?>% </div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</form>
|
||||
</td>
|
||||
</table>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
92
drives/drive5.php
Normal file
92
drives/drive5.php
Normal file
@ -0,0 +1,92 @@
|
||||
<!--Force IE6 into quirks mode with this comment tag-->
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
|
||||
<head>
|
||||
<link rel="stylesheet" type="text/css" href="css/white.css" />
|
||||
<link rel="alternate stylesheet" type="text/css" media="screen" title="black" href="css/black.css" />
|
||||
<link rel="alternate stylesheet" type="text/css" media="screen" title="white" href="css/white.css" />
|
||||
<link rel="alternate stylesheet" type="text/css" media="screen" title="blue" href="css/blue.css" />
|
||||
|
||||
<!--This script should appear below your LINK stylesheet tags -->
|
||||
|
||||
<script src="styleswitch.js" type="text/javascript">
|
||||
|
||||
/***********************************************
|
||||
* Style Sheet Switcher v1.1- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
|
||||
* This notice MUST stay intact for legal use
|
||||
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for this script and 100s more
|
||||
***********************************************/
|
||||
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
window.onload=function(){
|
||||
var formref=document.getElementById("switchform")
|
||||
indicateSelected(formref.switchcontrol)
|
||||
}
|
||||
</script>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.js" type="text/javascript"></script>
|
||||
<style>
|
||||
.hiddenRow { display: none; }
|
||||
</style>
|
||||
<script>
|
||||
function toggleNextRow(row) {
|
||||
var nextRow = $(row).next();
|
||||
nextRow.toggle();
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<?php include '../config.php';?>
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Disk Status Class - Example
|
||||
*
|
||||
* http://pmav.eu/stuff/php-disk-status/
|
||||
*
|
||||
* 22/Aug/2009
|
||||
*/
|
||||
|
||||
require_once 'DiskStatus.class.php';
|
||||
|
||||
try {
|
||||
$diskStatusC = new DiskStatus("$drive5");
|
||||
|
||||
$freeSpaceC = $diskStatusC->freeSpace();
|
||||
$totalSpaceC = $diskStatusC->totalSpace();
|
||||
$barWidthC = ($diskStatusC->usedSpace()/100) * 150;
|
||||
|
||||
} catch (Exception $e) {
|
||||
echo 'Error ('.$e->getMessage().')';
|
||||
exit();
|
||||
}
|
||||
|
||||
|
||||
catch (Exception $e) {
|
||||
echo 'Error ('.$e->getMessage().')';
|
||||
exit();
|
||||
}
|
||||
|
||||
?>
|
||||
<body>
|
||||
<table width='190' border='0' cellspacing='0' cellpadding='0'>
|
||||
<tr onclick="toggleNextRow(this)" BGCOLOR='#FFFFFF'>
|
||||
<th style='text-align: left;'><font color='black'><?php echo $drive5;?>\<?= $freeSpaceC ?> (of <?= $totalSpaceC ?>)</font></th>
|
||||
</tr>
|
||||
<tr class="hiddenRow">
|
||||
<td bgcolor='#FFFFFF'>
|
||||
<div class="disk">
|
||||
<div class="used" style="width: <?= $barWidthC ?>px"><?= $diskStatusC->usedSpace() ?>% </div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</form>
|
||||
</td>
|
||||
</table>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
92
drives/drive6.php
Normal file
92
drives/drive6.php
Normal file
@ -0,0 +1,92 @@
|
||||
<!--Force IE6 into quirks mode with this comment tag-->
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
|
||||
<head>
|
||||
<link rel="stylesheet" type="text/css" href="css/white.css" />
|
||||
<link rel="alternate stylesheet" type="text/css" media="screen" title="black" href="css/black.css" />
|
||||
<link rel="alternate stylesheet" type="text/css" media="screen" title="white" href="css/white.css" />
|
||||
<link rel="alternate stylesheet" type="text/css" media="screen" title="blue" href="css/blue.css" />
|
||||
|
||||
<!--This script should appear below your LINK stylesheet tags -->
|
||||
|
||||
<script src="styleswitch.js" type="text/javascript">
|
||||
|
||||
/***********************************************
|
||||
* Style Sheet Switcher v1.1- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
|
||||
* This notice MUST stay intact for legal use
|
||||
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for this script and 100s more
|
||||
***********************************************/
|
||||
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
window.onload=function(){
|
||||
var formref=document.getElementById("switchform")
|
||||
indicateSelected(formref.switchcontrol)
|
||||
}
|
||||
</script>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.js" type="text/javascript"></script>
|
||||
<style>
|
||||
.hiddenRow { display: none; }
|
||||
</style>
|
||||
<script>
|
||||
function toggleNextRow(row) {
|
||||
var nextRow = $(row).next();
|
||||
nextRow.toggle();
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<?php include '../config.php';?>
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Disk Status Class - Example
|
||||
*
|
||||
* http://pmav.eu/stuff/php-disk-status/
|
||||
*
|
||||
* 22/Aug/2009
|
||||
*/
|
||||
|
||||
require_once 'DiskStatus.class.php';
|
||||
|
||||
try {
|
||||
$diskStatusC = new DiskStatus("$drive6");
|
||||
|
||||
$freeSpaceC = $diskStatusC->freeSpace();
|
||||
$totalSpaceC = $diskStatusC->totalSpace();
|
||||
$barWidthC = ($diskStatusC->usedSpace()/100) * 150;
|
||||
|
||||
} catch (Exception $e) {
|
||||
echo 'Error ('.$e->getMessage().')';
|
||||
exit();
|
||||
}
|
||||
|
||||
|
||||
catch (Exception $e) {
|
||||
echo 'Error ('.$e->getMessage().')';
|
||||
exit();
|
||||
}
|
||||
|
||||
?>
|
||||
<body>
|
||||
<table width='190' border='0' cellspacing='0' cellpadding='0'>
|
||||
<tr onclick="toggleNextRow(this)" BGCOLOR='#FFFFFF'>
|
||||
<th style='text-align: left;'><font color='black'><?php echo $drive6;?>\<?= $freeSpaceC ?> (of <?= $totalSpaceC ?>)</font></th>
|
||||
</tr>
|
||||
<tr class="hiddenRow">
|
||||
<td bgcolor='#FFFFFF'>
|
||||
<div class="disk">
|
||||
<div class="used" style="width: <?= $barWidthC ?>px"><?= $diskStatusC->usedSpace() ?>% </div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</form>
|
||||
</td>
|
||||
</table>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
92
drives/drive7.php
Normal file
92
drives/drive7.php
Normal file
@ -0,0 +1,92 @@
|
||||
<!--Force IE6 into quirks mode with this comment tag-->
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
|
||||
<head>
|
||||
<link rel="stylesheet" type="text/css" href="css/white.css" />
|
||||
<link rel="alternate stylesheet" type="text/css" media="screen" title="black" href="css/black.css" />
|
||||
<link rel="alternate stylesheet" type="text/css" media="screen" title="white" href="css/white.css" />
|
||||
<link rel="alternate stylesheet" type="text/css" media="screen" title="blue" href="css/blue.css" />
|
||||
|
||||
<!--This script should appear below your LINK stylesheet tags -->
|
||||
|
||||
<script src="styleswitch.js" type="text/javascript">
|
||||
|
||||
/***********************************************
|
||||
* Style Sheet Switcher v1.1- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
|
||||
* This notice MUST stay intact for legal use
|
||||
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for this script and 100s more
|
||||
***********************************************/
|
||||
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
window.onload=function(){
|
||||
var formref=document.getElementById("switchform")
|
||||
indicateSelected(formref.switchcontrol)
|
||||
}
|
||||
</script>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.js" type="text/javascript"></script>
|
||||
<style>
|
||||
.hiddenRow { display: none; }
|
||||
</style>
|
||||
<script>
|
||||
function toggleNextRow(row) {
|
||||
var nextRow = $(row).next();
|
||||
nextRow.toggle();
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<?php include '../config.php';?>
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Disk Status Class - Example
|
||||
*
|
||||
* http://pmav.eu/stuff/php-disk-status/
|
||||
*
|
||||
* 22/Aug/2009
|
||||
*/
|
||||
|
||||
require_once 'DiskStatus.class.php';
|
||||
|
||||
try {
|
||||
$diskStatusC = new DiskStatus("$drive7");
|
||||
|
||||
$freeSpaceC = $diskStatusC->freeSpace();
|
||||
$totalSpaceC = $diskStatusC->totalSpace();
|
||||
$barWidthC = ($diskStatusC->usedSpace()/100) * 150;
|
||||
|
||||
} catch (Exception $e) {
|
||||
echo 'Error ('.$e->getMessage().')';
|
||||
exit();
|
||||
}
|
||||
|
||||
|
||||
catch (Exception $e) {
|
||||
echo 'Error ('.$e->getMessage().')';
|
||||
exit();
|
||||
}
|
||||
|
||||
?>
|
||||
<body>
|
||||
<table width='190' border='0' cellspacing='0' cellpadding='0'>
|
||||
<tr onclick="toggleNextRow(this)" BGCOLOR='#FFFFFF'>
|
||||
<th style='text-align: left;'><font color='black'><?php echo $drive7;?>\<?= $freeSpaceC ?> (of <?= $totalSpaceC ?>)</font></th>
|
||||
</tr>
|
||||
<tr class="hiddenRow">
|
||||
<td bgcolor='#FFFFFF'>
|
||||
<div class="disk">
|
||||
<div class="used" style="width: <?= $barWidthC ?>px"><?= $diskStatusC->usedSpace() ?>% </div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</form>
|
||||
</td>
|
||||
</table>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
207
space_old.php
Normal file
207
space_old.php
Normal file
@ -0,0 +1,207 @@
|
||||
<!--Force IE6 into quirks mode with this comment tag-->
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
|
||||
<head>
|
||||
<link rel="stylesheet" type="text/css" href="css/white.css" />
|
||||
<link rel="alternate stylesheet" type="text/css" media="screen" title="black" href="css/black.css" />
|
||||
<link rel="alternate stylesheet" type="text/css" media="screen" title="white" href="css/white.css" />
|
||||
<link rel="alternate stylesheet" type="text/css" media="screen" title="blue" href="css/blue.css" />
|
||||
|
||||
<!--This script should appear below your LINK stylesheet tags -->
|
||||
|
||||
<script src="styleswitch.js" type="text/javascript">
|
||||
|
||||
/***********************************************
|
||||
* Style Sheet Switcher v1.1- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
|
||||
* This notice MUST stay intact for legal use
|
||||
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for this script and 100s more
|
||||
***********************************************/
|
||||
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
window.onload=function(){
|
||||
var formref=document.getElementById("switchform")
|
||||
indicateSelected(formref.switchcontrol)
|
||||
}
|
||||
</script>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.js" type="text/javascript"></script>
|
||||
<style>
|
||||
.hiddenRow { display: none; }
|
||||
</style>
|
||||
<script>
|
||||
function toggleNextRow(row) {
|
||||
var nextRow = $(row).next();
|
||||
nextRow.toggle();
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<?php include 'config.php';?>
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Disk Status Class - Example
|
||||
*
|
||||
* http://pmav.eu/stuff/php-disk-status/
|
||||
*
|
||||
* 22/Aug/2009
|
||||
*/
|
||||
|
||||
require_once 'DiskStatus.class.php';
|
||||
|
||||
if ($drive1visible > "0") {
|
||||
try {
|
||||
$diskStatusC = new DiskStatus("$drive1");
|
||||
|
||||
$freeSpaceC = $diskStatusC->freeSpace();
|
||||
$totalSpaceC = $diskStatusC->totalSpace();
|
||||
$barWidthC = ($diskStatusC->usedSpace()/100) * 150;
|
||||
|
||||
} catch (Exception $e) {
|
||||
echo 'Error ('.$e->getMessage().')';
|
||||
exit();
|
||||
}
|
||||
}
|
||||
|
||||
try {
|
||||
$diskStatus1 = new DiskStatus("$drive2");
|
||||
|
||||
$freeSpace1 = $diskStatus1->freeSpace();
|
||||
$totalSpace1 = $diskStatus1->totalSpace();
|
||||
$barWidth1 = ($diskStatus1->usedSpace()/100) * 150;
|
||||
|
||||
} catch (Exception $e) {
|
||||
echo 'Error ('.$e->getMessage().')';
|
||||
exit();
|
||||
}
|
||||
try {
|
||||
$diskStatus2 = new DiskStatus("$drive3");
|
||||
|
||||
$freeSpace2 = $diskStatus2->freeSpace();
|
||||
$totalSpace2 = $diskStatus2->totalSpace();
|
||||
$barWidth2 = ($diskStatus2->usedSpace()/100) * 150;
|
||||
|
||||
} catch (Exception $e) {
|
||||
echo 'Error ('.$e->getMessage().')';
|
||||
exit();
|
||||
}
|
||||
|
||||
try {
|
||||
$diskStatus3 = new DiskStatus("$drive4");
|
||||
|
||||
$freeSpace3 = $diskStatus3->freeSpace();
|
||||
$totalSpace3 = $diskStatus3->totalSpace();
|
||||
$barWidth3 = ($diskStatus3->usedSpace()/100) * 150;
|
||||
|
||||
} catch (Exception $e) {
|
||||
echo 'Error ('.$e->getMessage().')';
|
||||
exit();
|
||||
}
|
||||
|
||||
try {
|
||||
$diskStatus4 = new DiskStatus("$drive5");
|
||||
|
||||
$freeSpace4 = $diskStatus4->freeSpace();
|
||||
$totalSpace4 = $diskStatus4->totalSpace();
|
||||
$barWidth4 = ($diskStatus4->usedSpace()/100) * 150;
|
||||
|
||||
} catch (Exception $e) {
|
||||
echo 'Error ('.$e->getMessage().')';
|
||||
exit();
|
||||
}
|
||||
|
||||
try {
|
||||
$diskStatus5 = new DiskStatus("$drive6");
|
||||
|
||||
$freeSpace5 = $diskStatus5->freeSpace();
|
||||
$totalSpace5 = $diskStatus5->totalSpace();
|
||||
$barWidth5 = ($diskStatus5->usedSpace()/100) * 150;
|
||||
|
||||
} catch (Exception $e) {
|
||||
echo 'Error ('.$e->getMessage().')';
|
||||
exit();
|
||||
}
|
||||
|
||||
try {
|
||||
$diskStatus6 = new DiskStatus("$drive7");
|
||||
|
||||
$freeSpace6 = $diskStatus6->freeSpace();
|
||||
$totalSpace6 = $diskStatus6->totalSpace();
|
||||
$barWidth6 = ($diskStatus6->usedSpace()/100) * 150;
|
||||
|
||||
} catch (Exception $e) {
|
||||
echo 'Error ('.$e->getMessage().')';
|
||||
exit();
|
||||
}
|
||||
|
||||
?>
|
||||
<body>
|
||||
<div id="style">
|
||||
<div class="disktext">
|
||||
</p>
|
||||
<table width='190' border='0' cellspacing='0' cellpadding='1'>
|
||||
<tr><td BGCOLOR='#0066FF'><font color='white'>Disk Space</font></td></tr>
|
||||
<tr onclick="toggleNextRow(this)"><td BGCOLOR='#FFFFFF'><?php echo $drive1;?>\<?= $freeSpaceC ?> (of <?= $totalSpaceC ?>)</td></tr>
|
||||
<tr class="hiddenRow">
|
||||
<td bgcolor='#FFFFFF'>
|
||||
<div class="disk">
|
||||
<div class="used" style="width: <?= $barWidthC ?>px"><?= $diskStatusC->usedSpace() ?>% </div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr onclick="toggleNextRow(this)"><td bgcolor='#FFFFFF'><?php echo $drive2;?>\<?= $freeSpace1 ?> (of <?= $totalSpace1 ?>)</td></tr>
|
||||
<tr class="hiddenRow">
|
||||
<td bgcolor='#FFFFFF'>
|
||||
<div class="disk">
|
||||
<div class="used" style="width: <?= $barWidth1 ?>px"><?= $diskStatus1->usedSpace() ?>% </div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr onclick="toggleNextRow(this)"><td bgcolor='#FFFFFF'><?php echo $drive3;?>\<?= $freeSpace2 ?> (of <?= $totalSpace2 ?>)</td></tr>
|
||||
<tr class="hiddenRow">
|
||||
<td bgcolor='#FFFFFF'>
|
||||
<div class="disk">
|
||||
<div class="used" style="width: <?= $barWidth2 ?>px"><?= $diskStatus2->usedSpace() ?>% </div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr onclick="toggleNextRow(this)"><td bgcolor='#FFFFFF'><?php echo $drive4;?>\<?= $freeSpace3 ?> (of <?= $totalSpace3 ?>)</td></tr>
|
||||
<tr class="hiddenRow">
|
||||
<td bgcolor='#FFFFFF'>
|
||||
<div class="disk">
|
||||
<div class="used" style="width: <?= $barWidth3 ?>px"><?= $diskStatus3->usedSpace() ?>% </div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr onclick="toggleNextRow(this)"><td bgcolor='#FFFFFF'><?php echo $drive5;?>\<?= $freeSpace4 ?> (of <?= $totalSpace4 ?>)</td></tr>
|
||||
<tr class="hiddenRow">
|
||||
<td bgcolor='#FFFFFF'>
|
||||
<div class="disk">
|
||||
<div class="used" style="width: <?= $barWidth4 ?>px"><?= $diskStatus4->usedSpace() ?>% </div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr onclick="toggleNextRow(this)"><td bgcolor='#FFFFFF'><?php echo $drive6;?>\<?= $freeSpace5 ?> (of <?= $totalSpace5 ?>)</td></tr>
|
||||
<tr class="hiddenRow">
|
||||
<td bgcolor='#FFFFFF'>
|
||||
<div class="disk">
|
||||
<div class="used" style="width: <?= $barWidth5 ?>px"><?= $diskStatus5->usedSpace() ?>% </div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr onclick="toggleNextRow(this)"><td bgcolor='#FFFFFF'><?php echo $drive7;?>\<?= $freeSpace6 ?> (of <?= $totalSpace6 ?>)</td></tr>
|
||||
<tr class="hiddenRow">
|
||||
<td bgcolor='#FFFFFF'>
|
||||
<div class="disk">
|
||||
<div class="used" style="width: <?= $barWidth6 ?>px"><?= $diskStatus6->usedSpace() ?>% </div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
Loading…
x
Reference in New Issue
Block a user