Tisch-Reservierungen mit Loungen und Optionen. Buchung über getReservationSimpelTableForm() oder getReservationEventWizzardForm().
Loungen und Tische abrufen. Jede Lounge kann Bilder, Videos und Medien haben.
Code — Liste
$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
}Code — Einzelinhalt + Medien
$lounge = getLoungenContent("8");
$images = getLoungenImages("8");
$videos = getLoungenVideos("8");
$vfiles = getLoungenVideosfiles("8");
$media = getLoungenMedia("8");$config Parameter
| Key | Beschreibung | Beispiel |
|---|---|---|
| status | 1 = aktiv, 0 = inaktiv | '1' |
| website | Website-ID | '1' |
| limit / start | Pagination | '100' / '0' |
| orderby / direction | Sortierung: id, headline | 'headline' / 'asc' |
| search | Freitextsuche | '' |
| label | Label-ID Filter | '' |
Rückgabe-Keys
| Key | Beschreibung |
|---|---|
| id / headline / content | Basisdaten |
| price | Preis |
| status / update | Status und letztes Update |
| image_items / video_items / videofile_items / media_items | Anzahl Medien |
| image[].image / .thumbnail / .small | Bilder |
| video[].embed / .url | Video-Streams |
| videofile[].video / .width / .height | Hochgeladene Videodateien |
Ausgabe (Live)
[
{
"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": []
}
]