Remove test.php and enhance null safety and sorting across components
- Deleted `test.php` as it was no longer in use. - Enhanced null safety checks in `Inventory.php`, `StdOut-detail.php`, `Backups.php`, and `SwitchsSAN.php` to prevent potential warnings. - Refactored `SwitchsSAN.php` to improve sorting logic for ports based on errors, vFabric, and Port ID. - Added seasonal snow effect script in `all.php` with toggle functionality for user engagement. - Updated navigation bar (`navbar.html`) to include a new VIO page link. - Introduced a new `VIO.php` page to display VIO monitoring details with table export and sorting features.
This commit is contained in:
@@ -49,7 +49,7 @@
|
||||
<!-- Display -->
|
||||
<div class="col py-3">
|
||||
<!-- Page Title -->
|
||||
<h1><span class="badge text-bg-secondary font-weight-bold" style="width:100%;">Home Directories with issues <small><small>(<?php echo count($folders); ?> entries) </small></small></span></h1><h6>Updated every day at 07:00:00</h6>
|
||||
<h1><span class="badge text-bg-secondary font-weight-bold" style="width:100%;"><?php echo $ti_8;?></span></h1>
|
||||
|
||||
<!-- Main content -->
|
||||
<div class="container-fluid">
|
||||
@@ -75,15 +75,15 @@
|
||||
<table class='table table-bordered table-hover table-sm' id='t1' data-height="620" data-toggle="table" data-search="true" data-show-columns="true" data-export-types="['xlsx','csv','json']" data-show-export="true" data-sortable="true" data-sort-name="VM">
|
||||
<thead> <!-- Header -->
|
||||
<tr>
|
||||
<th data-field="Server" data-sortable="true">Server</th>
|
||||
<th data-field="Folder" data-sortable="true">Folder</th>
|
||||
<th data-field="Server" data-sortable="true"><?php echo $w_server;?></th>
|
||||
<th data-field="Folder" data-sortable="true"><?php echo $w_folder;?></th>
|
||||
<th data-field="ACL" data-sortable="true">ACL</th>
|
||||
<th data-field="AD" data-sortable="true">in AD</th>
|
||||
<th data-field="Enabled" data-sortable="true">Account Enabled</th>
|
||||
<th data-field="AD" data-sortable="true"><?php echo $w_inAD;?></th>
|
||||
<th data-field="Enabled" data-sortable="true"><?php echo $w_accountEnabled;?></th>
|
||||
<th data-field="o365" data-sortable="true">o365</th>
|
||||
<th data-field="Quota" data-sortable="true">Quota</th>
|
||||
<th data-field="Size" data-sortable="true">Size</th>
|
||||
<th data-field="LastLogon" data-sortable="true">Last Logon</th>
|
||||
<th data-field="Size" data-sortable="true"><?php echo $w_size;?></th>
|
||||
<th data-field="LastLogon" data-sortable="true"><?php echo $w_lastLogon;?></th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
|
||||
@@ -44,7 +44,7 @@
|
||||
<!-- Display -->
|
||||
<div class="col py-3">
|
||||
<!-- Page Title -->
|
||||
<h1><span class="badge text-bg-secondary font-weight-bold" style="width:100%;">Project and Team folders <small><small>(<?php echo count($folders); ?> entries) </small></small></span></h1><h6>Updated every day at 07:00:00</h6>
|
||||
<h1><span class="badge text-bg-secondary font-weight-bold" style="width:100%;"><?php echo $ti_7;?> <small><small>(<?php echo count($folders); ?> <?php echo $entries; ?>) </small></small></span></h1>
|
||||
|
||||
<!-- Main content -->
|
||||
<div class="container-fluid">
|
||||
@@ -70,13 +70,13 @@
|
||||
<table class='table table-bordered table-hover table-sm' id='t1' data-height="620" data-toggle="table" data-search="true" data-show-columns="true" data-export-types="['xlsx','csv','json']" data-show-export="true" data-sortable="true" data-sort-name="VM">
|
||||
<thead> <!-- Header -->
|
||||
<tr>
|
||||
<th data-field="Server" data-sortable="true">Server</th>
|
||||
<th data-field="Folder" data-sortable="true">Folder</th>
|
||||
<th data-field="Server" data-sortable="true"><?php echo $w_server; ?></th>
|
||||
<th data-field="Folder" data-sortable="true"><?php echo $w_folder; ?></th>
|
||||
<th data-field="Type" data-sortable="true">Type</th>
|
||||
<th data-field="ACL" data-sortable="true">ACL</th>
|
||||
<th data-field="Quota" data-sortable="true">Quota</th>
|
||||
<th data-field="Size" data-sortable="true">Size</th>
|
||||
<th data-field="Users" data-sortable="true">Effective Users</th>
|
||||
<th data-field="Size" data-sortable="true"><?php echo $w_size; ?></th>
|
||||
<th data-field="Users" data-sortable="true"><?php echo $w_users; ?></th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user