Miscellaneous encryption enhancements

This commit is contained in:
bergware
2017-09-08 19:38:44 +02:00
parent de14cd8ae6
commit c8c958007d
7 changed files with 149 additions and 27 deletions

View File

@@ -73,8 +73,8 @@ foreach ($disks as $name => $disk) {
}
switch ($disk['luksState']) {
case 0: $luks = ""; break;
case 1: $luks = "<i class='padlock green-text fa fa-lock' title='All files in share encrypted'></i>"; break;
case 2: $luks = "<i class='padlock orange-text fa fa-lock' title='Some files in share unencrypted'></i>"; break;
case 1: $luks = "<i class='padlock green-text fa fa-unlock-alt' title='All files in share encrypted'></i>"; break;
case 2: $luks = "<i class='padlock orange-text fa fa-unlock-alt' title='Some files in share unencrypted'></i>"; break;
default: $luks = ""; break;
}
echo "<tr>";