Resident Advisor Service Test

Venue: Pracht

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

Area: Frankfurt

Events:

KLUBNACHT with ROOTS aka DJULIAN, SELVOO & MARWIN ACIKELLI

Datum: 19.03.2026

Zeit: 22:00

Artists: DJULIAN

Interested: 0 | Attending: 0

Event auf RA ansehen

Pracht Pres. BHFSVRTL AT NIGHT x SPECHLEES with Pascal Voltaire, EIK & Andrea Castells

Datum: 20.03.2026

Zeit: 22:00

Artists: Pascale Voltaire, EIK music, Andrea Castells

Interested: 0 | Attending: 0

Event auf RA ansehen

SPEECHLESS x Pracht w/ Pascale Voltaire

Datum: 20.03.2026

Zeit: 22:00

Artists: Pascale Voltaire, Andrea Castells, EIK music

Interested: 10 | Attending: 10

Event auf RA ansehen

PrachtNACHT with Ninetoes, Daniele Casa & Anton Lehmacher

Datum: 21.03.2026

Zeit: 22:00

Artists: Ninetoes

Interested: 0 | Attending: 0

Event auf RA ansehen

KLUBNACHT with Monsieur Vide & Shahab

Datum: 26.03.2026

Zeit: 22:00

Artists: Monsieur Vide, Shahab

Interested: 1 | Attending: 1

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 %}