mirror of
https://github.com/unraid/webgui.git
synced 2026-01-14 05:30:07 -06:00
31 lines
1.2 KiB
Plaintext
31 lines
1.2 KiB
Plaintext
Menu="Device New"
|
|
Title="Identity"
|
|
Cond="strpos($disks[$name]['status'],'_NP')===false"
|
|
---
|
|
<?PHP
|
|
/* Copyright 2005-2016, Lime Technology
|
|
* Copyright 2012-2016, Bergware International.
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License version 2,
|
|
* as published by the Free Software Foundation.
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*/
|
|
?>
|
|
<script>
|
|
$(function() {
|
|
$.post("/webGui/include/SmartInfo.php",{cmd:'identify',port:'<?=addslashes(htmlspecialchars(isset($disks[$name]['device'])?$disks[$name]['device']:$name))?>',name:'<?=addslashes(htmlspecialchars($name))?>'}, function(data) {
|
|
$('#disk_identify').html(data);
|
|
});
|
|
});
|
|
</script>
|
|
<table class='share_status small'>
|
|
<thead><td style="width:33%">Title</td><td>Information</td></thead>
|
|
<tbody id="disk_identify"><tr><td colspan='2' style='text-align:center;padding-top:12px'><i class='fa fa-spinner fa-spin'></i> <em>Please wait... retrieving S.M.A.R.T. information!</em></td></tr></tbody>
|
|
</table>
|
|
<input type="button" value="Done" onclick="done()">
|
|
|
|
> This list shows the SMART identity information of this disk
|