151 lines
6.3 KiB
PHP
151 lines
6.3 KiB
PHP
<?php
|
|
$headerStyle = 'light';
|
|
$rootPath = dirname(dirname(__DIR__));
|
|
include_once($rootPath . '/header.php');
|
|
checkAdmin();
|
|
|
|
// Fetch all trips with booking status
|
|
$trips_query = "
|
|
SELECT
|
|
trip_id, trip_name, location, start_date, end_date,
|
|
vehicle_capacity, places_booked, cost_members, published
|
|
FROM trips
|
|
ORDER BY start_date DESC
|
|
";
|
|
|
|
$result = $conn->query($trips_query);
|
|
$trips = [];
|
|
if ($result && $result->num_rows > 0) {
|
|
while ($row = $result->fetch_assoc()) {
|
|
$trips[] = $row;
|
|
}
|
|
}
|
|
?>
|
|
|
|
<?php
|
|
$pageTitle = 'Manage Trips';
|
|
$breadcrumbs = [['Home' => 'index'], ['Admin' => 'admin'], [$pageTitle => '']];
|
|
require_once($rootPath . '/components/banner.php');
|
|
?>
|
|
|
|
<!-- Trips Management Area start -->
|
|
<section class="trips-management-area py-100 rel z-1">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
<div class="section-title mb-50">
|
|
<h2>Manage Trips</h2>
|
|
<a href="manage_trips" class="theme-btn">
|
|
<i class="far fa-plus"></i> Create New Trip
|
|
</a>
|
|
</div>
|
|
|
|
<div class="table-responsive">
|
|
<table class="table table-striped">
|
|
<thead class="table-dark">
|
|
<tr>
|
|
<th>Trip Name</th>
|
|
<th>Location</th>
|
|
<th>Start Date</th>
|
|
<th>End Date</th>
|
|
<th>Capacity</th>
|
|
<th>Booked</th>
|
|
<th>Cost (Member)</th>
|
|
<th>Status</th>
|
|
<th>Actions</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php if (count($trips) > 0): ?>
|
|
<?php foreach ($trips as $trip): ?>
|
|
<tr>
|
|
<td>
|
|
<strong><?php echo htmlspecialchars($trip['trip_name']); ?></strong>
|
|
</td>
|
|
<td><?php echo htmlspecialchars($trip['location']); ?></td>
|
|
<td><?php echo date('M d, Y', strtotime($trip['start_date'])); ?></td>
|
|
<td><?php echo date('M d, Y', strtotime($trip['end_date'])); ?></td>
|
|
<td><?php echo $trip['vehicle_capacity']; ?></td>
|
|
<td>
|
|
<span class="badge bg-info">
|
|
<?php echo $trip['places_booked'] . ' / ' . $trip['vehicle_capacity']; ?>
|
|
</span>
|
|
</td>
|
|
<td>R <?php echo number_format($trip['cost_members'], 2); ?></td>
|
|
<td>
|
|
<?php if ($trip['published'] == 1): ?>
|
|
<span class="badge bg-success">Published</span>
|
|
<?php else: ?>
|
|
<span class="badge bg-warning">Draft</span>
|
|
<?php endif; ?>
|
|
</td>
|
|
<td>
|
|
<a href="manage_trips?trip_id=<?php echo $trip['trip_id']; ?>"
|
|
class="btn btn-sm btn-primary" title="Edit">
|
|
<i class="far fa-edit"></i>
|
|
</a>
|
|
<button class="btn btn-sm btn-danger delete-trip"
|
|
data-trip-id="<?php echo $trip['trip_id']; ?>"
|
|
title="Delete">
|
|
<i class="far fa-trash"></i>
|
|
</button>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
<?php else: ?>
|
|
<tr>
|
|
<td colspan="9" class="text-center py-4">
|
|
<p class="text-muted">No trips found. <a href="manage_trips">Create one</a></p>
|
|
</td>
|
|
</tr>
|
|
<?php endif; ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<!-- Trips Management Area end -->
|
|
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
|
|
<script>
|
|
$(document).ready(function() {
|
|
$('.delete-trip').on('click', function() {
|
|
if (!confirm('Are you sure you want to delete this trip? This action cannot be undone.')) {
|
|
return false;
|
|
}
|
|
|
|
var tripId = $(this).data('trip-id');
|
|
var button = $(this);
|
|
var row = button.closest('tr');
|
|
|
|
$.ajax({
|
|
url: 'delete_trip',
|
|
type: 'POST',
|
|
data: {
|
|
trip_id: tripId
|
|
},
|
|
dataType: 'json',
|
|
success: function(response) {
|
|
if (response.status === 'success') {
|
|
row.fadeOut(function() {
|
|
$(this).remove();
|
|
if ($('table tbody tr').length === 0) {
|
|
location.reload();
|
|
}
|
|
});
|
|
} else {
|
|
alert('Error: ' + response.message);
|
|
}
|
|
},
|
|
error: function() {
|
|
alert('Error deleting trip');
|
|
}
|
|
});
|
|
});
|
|
});
|
|
</script>
|
|
|
|
<?php include_once($rootPath . '/components/insta_footer.php'); ?>
|