Files
webgui/emhttp/plugins/dynamix/Share.page
Tom Mortensen f9ec00b488 repo reorg
2023-06-02 12:49:33 -07:00

81 lines
2.4 KiB
Plaintext

Type="xmenu"
---
<?PHP
/* Copyright 2005-2021, Lime Technology
* Copyright 2012-2021, 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.
*/
?>
<?
function clone_list($disk) {
global $pools;
return strpos($disk['status'],'_NP')===false && ($disk['type']=='Data' || in_array($disk['name'],$pools));
}
if ($name) {
$refs = []; $n = $i = 0;
// Natural sorting of share names
uksort($shares,'strnatcasecmp');
foreach ($shares as $ref) {
$sname = $ref['name'];
$refs[] = $sname;
if ($sname==$name) $i = $n;
$n++;
}
$end = count($refs)-1;
if ($end >= 0) {
$prev = urlencode($i>0 ? $refs[$i-1] : $refs[$end]);
$next = urlencode($i<$end ? $refs[$i+1] : $refs[0]);
} else {
$prev = $next = '';
}
} else {
$tabbed = false;
}
?>
<style>
div.clone1{position:absolute;right:10px;margin-top:0}
div.clone2{position:absolute;right:10px;margin-top:48px}
span.input{display:inline-block;width:330px}
<?if ($themes1):?>
span.wrap{display:inline-block;width:128px}
select.clone{min-width:123px;max-width:123px;margin-right:0}
<?else:?>
span.wrap{display:inline-block;width:150px}
select.clone{min-width:145px;max-width:145px;margin-right:0}
<?endif;?>
input.clone{margin-left:8px;margin-right:0}
span.clone{margin-right:4px}
</style>
<script>
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);
}
<?if ($name):?>
var ctrl = '<span class="ctrl1 status <?=$tabbed?'vhshift':'vshift'?>"><a href="/Shares/Share?name=<?=$prev?>" title="_(previous user share)_"><button type="button" style="margin-right:4px"><i class="fa fa-chevron-left fa-fw"></i></button></a><a href="/Shares/Share?name=<?=$next?>" title="_(next user share)_"><button type="button"><i class="fa fa-chevron-right fa-fw"></i></button></a></span>';
$(function() {
<?if ($tabbed):?>
$('.tabs').append(ctrl);
<?else:?>
$('div[class=title]:first').append(ctrl);
<?endif;?>
});
<?endif;?>
</script>