mirror of
https://github.com/unraid/webgui.git
synced 2026-01-01 06:59:56 -06:00
- Removed the clone_list function from Disk.page, Flash.page, and Share.page. - Added the clone_list function to Helpers.php for better organization and reusability.
54 lines
1.6 KiB
Plaintext
54 lines
1.6 KiB
Plaintext
Type="xmenu"
|
|
---
|
|
<?PHP
|
|
/* Copyright 2005-2023, Lime Technology
|
|
* Copyright 2012-2023, 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.
|
|
*/
|
|
?>
|
|
<?
|
|
if (count($pages)==2) $tabbed = false;
|
|
$refs = []; $n = 0;
|
|
|
|
foreach ($disks as $ref) {
|
|
if ($ref['type']!='Data' && !in_array($ref['name'],$pools)) continue;
|
|
if ($ref['fsColor']=='grey-off') continue;
|
|
$refs[] = $ref['name'];
|
|
if ($ref['name']==$name) $i = $n;
|
|
$n++;
|
|
}
|
|
$end = count($refs)-1;
|
|
$prev = urlencode($i>0 ? $refs[$i-1] : $refs[$end]);
|
|
$next = urlencode($i<$end ? $refs[$i+1] : $refs[0]);
|
|
?>
|
|
<script>
|
|
var ctrl = "<span class='ctrl2 status'><a href='/Shares/Disk?name=<?=$prev?>' title='previous disk share'><button type='button' style='margin-right:4px'><i class='fa fa-chevron-left fa-fw'></i></button></a><a href='/Shares/Disk?name=<?=$next?>' title='next disk share'><button type='button'><i class='fa fa-chevron-right fa-fw'></i></button></a></span>";
|
|
|
|
function toggleButton(button,id) {
|
|
var disabled = true;
|
|
switch (id) {
|
|
case false:
|
|
case true:
|
|
disabled = id;
|
|
break;
|
|
default:
|
|
$('select#'+id+' option').each(function(){if ($(this).prop('selected')==true) disabled = false;});
|
|
}
|
|
$('input#'+button).prop('disabled',disabled);
|
|
}
|
|
|
|
$(function() {
|
|
<?if ($tabbed):?>
|
|
$('.tabs').append(ctrl);
|
|
<?else:?>
|
|
$('div[class=title]:first .right').append(ctrl);
|
|
<?endif;?>
|
|
});
|
|
</script>
|