| Benutzer: | user(); if (!empty($user)) { $url = $user->webappUrl(); if (!empty($url)) echo ''; echo esc_html("{$user->name()} ({$user->id()})"); if (!empty($url)) echo ''; } else { echo 'N/A (Zugangstoken falsch?)'; } ?> |
| Hauptgruppe: | group(); if (!empty($group)) { $url = $group->webappUrl(); if (!empty($url)) echo ''; echo esc_html("{$group->title()} ({$group->id()})"); if (!empty($url)) echo ''; } else { echo 'N/A (Zugangstoken falsch?)'; } ?> |
| Weitere Gruppen: | groups(); $groups_html = array(); foreach ($groups as $g) { if ($g === $group) continue; $html = ''; $url = $g->webappUrl(); if (!empty($url)) $html .= ''; $html .= esc_html("{$g->title()} ({$g->id()})"); if (!empty($url)) $html .= ''; $groups_html[] = $html; } echo implode(', ', $groups_html); } ?> |
| CommuniApp: | webappUrl(); if (!empty($url)) { echo '' . esc_url($url) . ''; } else { echo 'N/A (Zugangstoken falsch?)'; } ?> |
| Anzahl Ereignisse: | |
| Letzte Synchronisation: | |
| Nächste Synchronisation: |
Das Token findest Du in deiner CommuniApp unter Admin Bereich ➔ Rest-Api
403)); } check_admin_referer('communievents-admin-sync'); // disable output buffering so our headers_sent() trick works while (ob_get_level() > 0) { ob_end_flush(); } communievents_scrape_events(); // no news is good news! unless the scraper did output something, // immediately redirect to the admin page if (!headers_sent()) { header("Location: $_POST[backurl]"); die(); } ?>
Bei der Synchronisierung ist ein Fehler aufgetreten!