mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Apply fixes from StyleCI (#12120)
This commit is contained in:
@@ -19,9 +19,7 @@ use LibreNMS\Authentication\LegacyAuth;
|
||||
if (Auth::user()->hasGlobalAdmin()) {
|
||||
if (empty($_POST['token'])) {
|
||||
$_POST['token'] = bin2hex(openssl_random_pseudo_bytes(16));
|
||||
}
|
||||
|
||||
?>
|
||||
} ?>
|
||||
<div class="modal fade" id="confirm-delete" tabindex="-1" role="dialog" aria-labelledby="Delete" aria-hidden="true">
|
||||
<div class="modal-dialog modal-sm">
|
||||
<div class="modal-content">
|
||||
@@ -62,9 +60,7 @@ if (Auth::user()->hasGlobalAdmin()) {
|
||||
<?php
|
||||
foreach ($userlist = User::all() as $user) {
|
||||
echo '<option value="' . $user->user_id . '">' . $user->username . ' (' . $user->auth_type . ')</option>';
|
||||
}
|
||||
|
||||
?>
|
||||
} ?>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
@@ -150,14 +146,14 @@ if (Auth::user()->hasGlobalAdmin()) {
|
||||
$color = $user_details->auth_type == LegacyAuth::getType() ? '' : 'bgcolor="lightgrey"';
|
||||
|
||||
echo '
|
||||
<tr id="'.$api->id.'" ' . $color . '>
|
||||
<td>'.$user_details->username.'</td>
|
||||
<td>'.$user_details->auth_type.'</td>
|
||||
<td>'.$api->token_hash.'</td>
|
||||
<td><button class="btn btn-info btn-xs" data-toggle="modal" data-target="#display-qr" data-token_hash="'.$api->token_hash.'"><i class="fa fa-qrcode" ></i></button></td>
|
||||
<td>'.$api->description.'</td>
|
||||
<td><input type="checkbox" name="token-status" data-token_id="'.$api->id.'" data-off-text="No" data-on-text="Yes" data-on-color="danger" '.$api_disabled.' data-size="mini"></td>
|
||||
<td><button type="button" class="btn btn-danger btn-xs" id="'.$api->id.'" data-token_id="'.$api->id.'" data-toggle="modal" data-target="#confirm-delete">Delete</button></td>
|
||||
<tr id="' . $api->id . '" ' . $color . '>
|
||||
<td>' . $user_details->username . '</td>
|
||||
<td>' . $user_details->auth_type . '</td>
|
||||
<td>' . $api->token_hash . '</td>
|
||||
<td><button class="btn btn-info btn-xs" data-toggle="modal" data-target="#display-qr" data-token_hash="' . $api->token_hash . '"><i class="fa fa-qrcode" ></i></button></td>
|
||||
<td>' . $api->description . '</td>
|
||||
<td><input type="checkbox" name="token-status" data-token_id="' . $api->id . '" data-off-text="No" data-on-text="Yes" data-on-color="danger" ' . $api_disabled . ' data-size="mini"></td>
|
||||
<td><button type="button" class="btn btn-danger btn-xs" id="' . $api->id . '" data-token_id="' . $api->id . '" data-toggle="modal" data-target="#confirm-delete">Delete</button></td>
|
||||
</tr>
|
||||
';
|
||||
}
|
||||
@@ -167,8 +163,7 @@ if (Auth::user()->hasGlobalAdmin()) {
|
||||
<center>
|
||||
<button type="button" class="btn btn-primary btn-sm" data-toggle="modal" data-target="#create-token">Create API access token</button>
|
||||
</center>
|
||||
';
|
||||
?>
|
||||
'; ?>
|
||||
<script>
|
||||
$("[name='token-status']").bootstrapSwitch('offColor','success');
|
||||
$('input[name="token-status"]').on('switchChange.bootstrapSwitch', function(event, state) {
|
||||
@@ -246,5 +241,5 @@ if (Auth::user()->hasGlobalAdmin()) {
|
||||
|
||||
<?php
|
||||
} else {
|
||||
include 'includes/html/error-no-perm.inc.php';
|
||||
}//end if
|
||||
include 'includes/html/error-no-perm.inc.php';
|
||||
}//end if
|
||||
|
Reference in New Issue
Block a user