Resident Advisor Service Test

Venue: Pracht

Adresse: Niddastr. 54, 60327 Frankfurt am Main, Germany

Area: Frankfurt

Events:

ClubNACHT with Juan Manuel & Ha Vu

Datum: 30.10.2025

Zeit: 22:00

Artists: Juan Manuel, Ha Vu

Interested: 1 | Attending: 1

Event auf RA ansehen

Pracht PRES. KOKOLORES REC with CASSIMM, Nuray Alkan b2b Sven Kerkhoff, Maex

Datum: 31.10.2025

Zeit: 22:00

Artists: CASSIMM, Sven Kerkhoff, Maex

Interested: 5 | Attending: 5

Event auf RA ansehen

PrachtNACHT x HALLOWEEN with INAN BATMAN, Mila, Claudius

Datum: 01.11.2025

Zeit: 22:00

Artists: INAN BATMAN, Mila (CH), Claudius (DE)

Interested: 0 | Attending: 0

Event auf RA ansehen

ClubNACHT with Elisa Cielo & Monsieur Vide

Datum: 06.11.2025

Zeit: 22:00

Artists: Elisa Cielo, Monsieur Vide

Interested: 0 | Attending: 0

Event auf RA ansehen

Pracht PRES. OBSOLET with Max Joni, MUKKIMIAU, Dario Milkovic

Datum: 07.11.2025

Zeit: 22:00

Artists: Max Joni, MUKKIMIAU, Dario Milkovic

Interested: 0 | Attending: 0

Event auf RA ansehen


Code für October CMS:

1. Speichere die ResidentAdvisorService.php in: plugins/mobylon/pracht/services/

2. Speichere den Events.php Controller in: plugins/mobylon/pracht/controllers/

3. In deinem Twig Template kannst du so auf die Events zugreifen:

{% set events = controller.getPrachtEvents(10) %}
{% for event in events.events %}
    <div class="event">
        <h3>{{ event.title }}</h3>
        <p>{{ event.dateFormatted }} um {{ event.timeFormatted }}</p>
        <p>Artists: {{ event.artistsString }}</p>
        {% if event.flyerImage %}
            <img src="{{ event.flyerImage }}" alt="{{ event.title }}">
        {% endif %}
        <a href="{{ event.eventUrl }}">Mehr Details</a>
    </div>
{% endfor %}