Reservationen

Tisch-Reservierungen mit Loungen und Optionen. Buchung über getReservationSimpelTableForm() oder getReservationEventWizzardForm().

Loungen

getLoungenList($config) / getLoungenContent($id)

Loungen und Tische abrufen. Jede Lounge kann Bilder, Videos und Medien haben.

$config = [];
$config["status"] = '1';
$config["website"] = '1';
$config["limit"] = '100';
$config["start"] = '0';
$config["orderby"] = 'headline';
$config["direction"] = 'asc';
$config["search"] = '';
$config["label"] = '';

$loungen = getLoungenList($config);

foreach ($loungen as $lounge) {
    echo $lounge["id"]; // Lounge-ID
    echo $lounge["headline"]; // Lounge-Name
    echo $lounge["content"]; // Beschreibung
    echo $lounge["price"]; // Preis
    // Bilder:
    echo $lounge["image"]["image"]; // Hauptbild
}
$lounge = getLoungenContent("8");
$images = getLoungenImages("8");
$videos = getLoungenVideos("8");
$vfiles = getLoungenVideosfiles("8");
$media = getLoungenMedia("8");
KeyBeschreibungBeispiel
status1 = aktiv, 0 = inaktiv'1'
websiteWebsite-ID'1'
limit / startPagination'100' / '0'
orderby / directionSortierung: id, headline'headline' / 'asc'
searchFreitextsuche''
labelLabel-ID Filter''
KeyBeschreibung
id / headline / contentBasisdaten
pricePreis
status / updateStatus und letztes Update
image_items / video_items / videofile_items / media_itemsAnzahl Medien
image[].image / .thumbnail / .smallBilder
video[].embed / .urlVideo-Streams
videofile[].video / .width / .heightHochgeladene Videodateien
[
    {
        "id": "17",
        "headline": "adfadfa",
        "content": "",
        "price": "0.00",
        "label": [
            ""
        ],
        "website": [
            "1"
        ],
        "status": "1",
        "update": "2026-01-22 13:13:57",
        "image_items": 0,
        "video_items": 0,
        "videofile_items": 0,
        "media_items": 0,
        "image": [],
        "video": [],
        "videofile": []
    },
    {
        "id": "10",
        "headline": "Lounge Gold",
        "content": "

Goldene Sicht von hier und Getränke à Diskretion<\/p>", "price": "11.11", "label": [ "4" ], "website": [ "1" ], "status": "1", "update": "2023-02-06 09:00:40", "image_items": 1, "video_items": 0, "videofile_items": 0, "media_items": 1, "image": { "id": "510", "image": "media\/reservation\/tablesreservation\/image\/510.webp", "thumbnail": "media\/reservation\/tablesreservation\/image\/thumbnail\/510.webp", "small": "media\/reservation\/tablesreservation\/image\/small\/510.webp", "check": "false" }, "video": [], "videofile": [] }, { "id": "15", "headline": "Merhfachtisch 26", "content": "

adsfdsfdsfs<\/p>", "price": "2500.00", "label": [ "" ], "website": [ "1" ], "status": "1", "update": "2026-01-20 17:40:10", "image_items": 1, "video_items": 0, "videofile_items": 0, "media_items": 1, "image": { "id": "1422", "image": "media\/reservation\/tablesreservation\/image\/1422.webp", "thumbnail": "media\/reservation\/tablesreservation\/image\/thumbnail\/1422.webp", "small": "media\/reservation\/tablesreservation\/image\/small\/1422.webp", "check": "false" }, "video": [], "videofile": [] }, { "id": "7", "headline": "neue Lounge", "content": "

testing<\/p>", "price": "200.00", "label": [ "" ], "website": [ "1" ], "status": "1", "update": "2022-11-16 14:11:47", "image_items": 0, "video_items": 0, "videofile_items": 0, "media_items": 0, "image": [], "video": [], "videofile": [] }, { "id": "16", "headline": "sfgsfgsfg", "content": "

dsgfsdgfsfrg<\/p>", "price": "0.00", "label": [ "" ], "website": [ "1" ], "status": "1", "update": "2026-01-20 18:04:56", "image_items": 0, "video_items": 0, "videofile_items": 0, "media_items": 0, "image": [], "video": [], "videofile": [] } ]

Playground