186 lines
7.8 KiB
PHP
186 lines
7.8 KiB
PHP
|
|
<?php
|
|
session_start();
|
|
require_once 'db/config.php';
|
|
|
|
if (!isset($_SESSION['user_id'])) {
|
|
header('Location: login.php');
|
|
exit;
|
|
}
|
|
|
|
// Fetch user role if logged in
|
|
$user_role = null;
|
|
if (isset($_SESSION['user_id'])) {
|
|
$pdo = db();
|
|
$stmt = $pdo->prepare('SELECT role FROM users WHERE id = ?');
|
|
$stmt->execute([$_SESSION['user_id']]);
|
|
$user_role = $stmt->fetchColumn();
|
|
}
|
|
|
|
if (!isset($_GET['community_id'])) {
|
|
header('Location: communities.php');
|
|
exit;
|
|
}
|
|
|
|
$community_id = $_GET['community_id'];
|
|
$user_id = $_SESSION['user_id'];
|
|
|
|
$pdo = db();
|
|
|
|
// Fetch community details
|
|
$stmt = $pdo->prepare('SELECT * FROM communities WHERE id = ?');
|
|
$stmt->execute([$community_id]);
|
|
$community = $stmt->fetch();
|
|
|
|
if (!$community) {
|
|
header('Location: communities.php');
|
|
exit;
|
|
}
|
|
|
|
// Handle new event form submission
|
|
$title = $description = $start_time = $end_time = $location = '';
|
|
$errors = [];
|
|
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
|
|
$title = trim($_POST['title'] ?? '');
|
|
$description = trim($_POST['description'] ?? '');
|
|
$start_time = trim($_POST['start_time'] ?? '');
|
|
$end_time = trim($_POST['end_time'] ?? '');
|
|
$location = trim($_POST['location'] ?? '');
|
|
|
|
if (empty($title)) {
|
|
$errors[] = 'Title is required';
|
|
}
|
|
if (empty($description)) {
|
|
$errors[] = 'Description is required';
|
|
}
|
|
if (empty($start_time)) {
|
|
$errors[] = 'Start time is required';
|
|
}
|
|
if (empty($end_time)) {
|
|
$errors[] = 'End time is required';
|
|
}
|
|
if (empty($location)) {
|
|
$errors[] = 'Location is required';
|
|
}
|
|
|
|
if (empty($errors)) {
|
|
try {
|
|
$stmt = $pdo->prepare('INSERT INTO events (community_id, user_id, title, description, start_time, end_time, location) VALUES (?, ?, ?, ?, ?, ?, ?)');
|
|
$stmt->execute([$community_id, $user_id, $title, $description, $start_time, $end_time, $location]);
|
|
header('Location: events.php?community_id=' . $community_id);
|
|
exit;
|
|
} catch (PDOException $e) {
|
|
$errors[] = 'Database error: ' . $e->getMessage();
|
|
}
|
|
}
|
|
}
|
|
|
|
// Fetch events
|
|
$stmt = $pdo->prepare('SELECT e.*, u.name as user_name FROM events e JOIN users u ON e.user_id = u.id WHERE e.community_id = ? ORDER BY e.start_time DESC');
|
|
$stmt->execute([$community_id]);
|
|
$events = $stmt->fetchAll();
|
|
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title><?php echo htmlspecialchars($community['name']); ?> Events - Community Hub</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
|
|
</head>
|
|
<body class="d-flex flex-column min-vh-100">
|
|
|
|
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
|
|
<div class="container-fluid">
|
|
<a class="navbar-brand" href="index.php">Community Hub</a>
|
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
|
|
<span class="navbar-toggler-icon"></span>
|
|
</button>
|
|
<div class="collapse navbar-collapse" id="navbarNav">
|
|
<ul class="navbar-nav ms-auto">
|
|
<li class="nav-item"><a class="nav-link" href="index.php">Home</a></li>
|
|
<li class="nav-item"><a class="nav-link" href="communities.php">Communities</a></li>
|
|
<?php if ($user_role === 'leader'): ?>
|
|
<li class="nav-item"><a class="nav-link" href="manage_communities.php">Manage Communities</a></li>
|
|
<?php endif; ?>
|
|
<li class="nav-item"><a class="nav-link" href="profile.php">Profile</a></li>
|
|
<li class="nav-item"><a class="nav-link" href="messages.php">Messages</a></li>
|
|
<li class="nav-item"><a class="nav-link" href="logout.php">Logout</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
<main class="flex-grow-1">
|
|
<section class="container mt-5">
|
|
<h1 class="text-center mb-4">Events in <?php echo htmlspecialchars($community['name']); ?></h1>
|
|
|
|
<div class="card card-neon mb-4">
|
|
<div class="card-body">
|
|
<h2 class="card-title">Create a New Event</h2>
|
|
<?php if (!empty($errors)): ?>
|
|
<div class="alert alert-danger">
|
|
<?php foreach ($errors as $error): ?>
|
|
<p><?php echo $error; ?></p>
|
|
<?php endforeach; ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
<form action="events.php?community_id=<?php echo $community_id; ?>" method="POST">
|
|
<div class="mb-3">
|
|
<label for="title" class="form-label">Title</label>
|
|
<input type="text" class="form-control" id="title" name="title" value="<?php echo htmlspecialchars($title); ?>" required>
|
|
</div>
|
|
<div class="mb-3">
|
|
<label for="description" class="form-label">Description</label>
|
|
<textarea class="form-control" id="description" name="description" rows="3" required><?php echo htmlspecialchars($description); ?></textarea>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-md-6 mb-3">
|
|
<label for="start_time" class="form-label">Start Time</label>
|
|
<input type="datetime-local" class="form-control" id="start_time" name="start_time" value="<?php echo htmlspecialchars($start_time); ?>" required>
|
|
</div>
|
|
<div class="col-md-6 mb-3">
|
|
<label for="end_time" class="form-label">End Time</label>
|
|
<input type="datetime-local" class="form-control" id="end_time" name="end_time" value="<?php echo htmlspecialchars($end_time); ?>" required>
|
|
</div>
|
|
</div>
|
|
<div class="mb-3">
|
|
<label for="location" class="form-label">Location</label>
|
|
<input type="text" class="form-control" id="location" name="location" value="<?php echo htmlspecialchars($location); ?>" required>
|
|
</div>
|
|
<button type="submit" class="btn btn-primary btn-gradient">Create Event</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
<h2>Upcoming Events</h2>
|
|
<div class="list-group">
|
|
<?php if (empty($events)): ?>
|
|
<p>No events yet. Be the first to create one!</p>
|
|
<?php else: ?>
|
|
<?php foreach ($events as $event): ?>
|
|
<a href="event.php?id=<?php echo $event['id']; ?>" class="list-group-item list-group-item-action">
|
|
<div class="d-flex w-100 justify-content-between">
|
|
<h5 class="mb-1"><?php echo htmlspecialchars($event['title']); ?></h5>
|
|
<small><?php echo date('M j, Y, g:i a', strtotime($event['start_time'])); ?></small>
|
|
</div>
|
|
<p class="mb-1">Location: <?php echo htmlspecialchars($event['location']); ?></p>
|
|
<p class="mb-1">Created by: <?php echo htmlspecialchars($event['user_name']); ?></p>
|
|
</a>
|
|
<?php endforeach; ?>
|
|
<?php endif; ?>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
|
|
<footer class="bg-dark text-white text-center p-3 mt-auto">
|
|
<p>© <?php echo date("Y"); ?> Community Hub. All Rights Reserved.</p>
|
|
</footer>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
|
|
|
|
</body>
|
|
</html>
|