Basic implementation event signup

This commit is contained in:
2024-05-27 16:59:30 +02:00
parent a66f2d2422
commit a69d83bc0a
321 changed files with 138376 additions and 644 deletions
assets
bdp-kompass.php
components/partials
includes
lang
lib
database
dompdf.zip
dompdf
autoload.php
lib
Cpdf.php
fonts
html5lib
php-font-lib
php-svg-lib
res
src
modules
Gruppen
Mail
calendar
event-participants

@ -0,0 +1,12 @@
<?php
namespace Bdp\Modules\EventParticipants\Controllers;
use Bdp\Modules\EventParticipants\Models\Event as Event;
class EditEvent {
public function __construct() {
global $_GET, $_REQUEST, $dbHandler;
kompass_print_event_edit_form($_GET['event-id']);
}
}