Member-Verwaltung mit Gruppen und Profildaten. Registrierung über getMemberForm(), Login über getLoginForm(). Profil lesen mit getProfil($email) / getProfilId($id), Gruppen mit getProfilGroupList().
Mitgliedschafts-Gruppen abrufen (z.B. Basic, Premium, VIP) inklusive Laufzeit und Preis.
Code — Liste
$config = [];
$config["status"] = '1';
$config["limit"] = '100';
$config["start"] = '0';
$config["orderby"] = 'headline';
$config["direction"] = 'asc';
$config["search"] = '';
$gruppen = getProfilGroupList($config);
foreach ($gruppen as $gruppe) {
echo $gruppe["headline"]; // Gruppenname
echo $gruppe["preis"]; // Preis
echo $gruppe["lifetime"]; // Laufzeit (Tage)
echo $gruppe["content"]; // Beschreibung
}Code — Einzelinhalt
$gruppe = getProfilGroupContent("3");Rückgabe-Keys
| Key | Beschreibung |
|---|---|
| id | Gruppen-ID |
| key | URL-Schlüssel |
| headline | Gruppenname |
| content | Beschreibung / Leistungen |
| lifetime | Laufzeit in Tagen |
| preis | Preis |
| status | 1 = aktiv |
| image.image | Hauptbild (geprüft) |
| image.thumbnail | Thumbnail |
| image.small | Kleines Thumbnail |
Ausgabe (Live)
[
{
"id": "12",
"headline": "afddsfa dfadf",
"content": "asfa sdf<\/p>",
"lifetime": "lifetime",
"preis": "0.00",
"status": "1",
"update": "2026-01-20 17:30:19"
},
{
"id": "13",
"headline": "asdf adf as",
"content": "",
"lifetime": "lifetime",
"preis": "0.00",
"status": "1",
"update": "2026-01-22 13:03:19"
},
{
"id": "8",
"headline": "Fluhafen Zürich Kloten",
"content": "",
"lifetime": "lifetime",
"preis": "0.00",
"status": "1",
"update": "2024-03-01 14:02:14",
"video": {
"video": "media\/profil\/member\/video\/8_T1727129636T_X1920X_Y1080Y.mp4",
"width": "1727129636",
"height": "1920"
}
},
{
"id": "7",
"headline": "Jahrgang Member",
"content": "
Alle Jahre wieder..................<\/p>",
"lifetime": "3-years",
"preis": "250.10",
"status": "1",
"update": "2023-02-05 18:50:52",
"image": {
"image": "media\/profil\/member\/image\/7_T1675619574T.webp",
"thumbnail": "media\/profil\/member\/image\/thumbnail\/7_T1675619574T.webp",
"small": "media\/profil\/member\/image\/small\/7_T1675619574T.webp"
}
},
{
"id": "11",
"headline": "Member Sonne26",
"content": "
asdfdfdfdfd<\/p>
<\/p>
ergänzt<\/p>",
"lifetime": "lifetime",
"preis": "0.00",
"status": "1",
"update": "2026-01-20 17:32:24",
"image": {
"image": "media\/profil\/member\/image\/11_T1768899840T.webp",
"thumbnail": "media\/profil\/member\/image\/thumbnail\/11_T1768899840T.webp",
"small": "media\/profil\/member\/image\/small\/11_T1768899840T.webp"
}
},
{
"id": "6",
"headline": "MemberTest",
"content": "",
"lifetime": "lifetime",
"preis": "1200.00",
"status": "1",
"update": "2022-10-04 09:10:12",
"image": {
"image": "media\/profil\/member\/image\/6_T1727129719T.webp",
"thumbnail": "media\/profil\/member\/image\/thumbnail\/6_T1727129719T.webp",
"small": "media\/profil\/member\/image\/small\/6_T1727129719T.webp"
}
},
{
"id": "15",
"headline": "MG - 2026.02.09",
"content": "",
"lifetime": "1-years",
"preis": "200.00",
"status": "1",
"update": "2026-02-09 19:26:43"
},
{
"id": "14",
"headline": "Test 2301",
"content": "
asdfasdfdsf<\/p>",
"lifetime": "5-years",
"preis": "151515.20",
"status": "1",
"update": "2026-01-23 10:39:22",
"image": {
"image": "media\/profil\/member\/image\/14_T1769161159T.webp",
"thumbnail": "media\/profil\/member\/image\/thumbnail\/14_T1769161159T.webp",
"small": "media\/profil\/member\/image\/small\/14_T1769161159T.webp"
}
}
]