kompass/modules/event-participants/Controllers/class-membersummary.php

12 lines
354 B
PHP
Raw Permalink Normal View History

2024-05-27 16:59:30 +02:00
<?php
namespace Bdp\Modules\EventParticipants\Controllers;
use Bdp\Modules\EventParticipants\Models\EventParticipant;
class MemberSummaryController {
public function __construct() {
global $_REQUEST;
$participant = EventParticipant::loadById($_REQUEST['participant-id']);
include dirname(__FILE__) . '/../Templates/participant-summary.php';
}
}