62 lines
1.7 KiB
PHP
62 lines
1.7 KiB
PHP
<?php
|
|
require_once dirname(__DIR__, 2) . implode(\DIRECTORY_SEPARATOR, ['', 'inc', 'include.php']);
|
|
use pvv\side\Agenda;
|
|
|
|
$eventID = 0;
|
|
if (isset($_GET['id'])) {
|
|
$eventID = $_GET['id'];
|
|
} else {
|
|
echo 'No event ID provided';
|
|
exit;
|
|
}
|
|
|
|
$dbActivity = new pvv\side\DBActivity($pdo);
|
|
$event = $dbActivity->getEventByID($eventID);
|
|
if (!$event) {
|
|
echo 'Failed to retrieve event info';
|
|
exit;
|
|
}
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="no">
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
|
|
<link rel="shortcut icon" href="favicon.ico">
|
|
<link rel="stylesheet" href="../css/normalize.css">
|
|
<link rel="stylesheet" href="../css/style.css">
|
|
<link rel="stylesheet" href="../css/events.css">
|
|
<meta name="theme-color" content="#024" />
|
|
<title>Aktivitetsverkstedet</title>
|
|
|
|
<header>Aktivitets­verk­stedet</header>
|
|
|
|
<body>
|
|
<main>
|
|
<article>
|
|
<h2>
|
|
<?php if (Agenda::isToday($event->getStart())) { ?><strong><?php } ?>
|
|
<em><?php echo $event->getRelativeDate(); ?></em>
|
|
<?php if (Agenda::isToday($event->getStart())) { ?></strong><?php } ?>
|
|
|
|
<?php echo $event->getName(); ?>
|
|
</h2>
|
|
<ul class="subtext">
|
|
<li>Tid: <strong><?php echo Agenda::getFormattedDate($event->getStart()); ?></strong></li>
|
|
<li>Sted: <strong><?php echo $event->getLocation(); ?></strong></li>
|
|
<li>Arrangør: <strong><?php echo $event->getOrganiser(); ?></strong></li>
|
|
</ul>
|
|
|
|
<?php $description = $event->getDescription(); ?>
|
|
<?php
|
|
$Parsedown = new Parsedown();
|
|
echo $Parsedown->text(implode("\n", $description));
|
|
?>
|
|
</article>
|
|
</main>
|
|
|
|
<nav>
|
|
<?php echo navbar(1, 'aktiviteter'); ?>
|
|
<?php echo loginbar(null, $pdo); ?>
|
|
</nav>
|
|
</body>
|