mirror of
https://github.com/ShaYmez/FreeSTAR-Status-Engine.git
synced 2026-06-01 21:54:48 -04:00
files reformatted
for better readability
This commit is contained in:
+10
-11
@@ -6,11 +6,11 @@ require_once("classes/subscriptions.php");
|
||||
require_once("classes/telegram.php");
|
||||
require_once("classes/db-class.php");
|
||||
$db = new SSDB();
|
||||
define("NAME", $db->getSetting($mysqli,"name"));
|
||||
define("TITLE", $db->getSetting($mysqli,"title"));
|
||||
define("WEB_URL", $db->getSetting($mysqli,"url"));
|
||||
define("MAILER_NAME", $db->getSetting($mysqli,"mailer"));
|
||||
define("MAILER_ADDRESS", $db->getSetting($mysqli,"mailer_email"));
|
||||
define("NAME", $db->getSetting($mysqli, "name"));
|
||||
define("TITLE", $db->getSetting($mysqli, "title"));
|
||||
define("WEB_URL", $db->getSetting($mysqli, "url"));
|
||||
define("MAILER_NAME", $db->getSetting($mysqli, "mailer"));
|
||||
define("MAILER_ADDRESS", $db->getSetting($mysqli, "mailer_email"));
|
||||
define("SUBSCRIBE_EMAIL", $db->getBooleanSetting($mysqli, "subscribe_email"));
|
||||
define("SUBSCRIBE_TELEGRAM", $db->getBooleanSetting($mysqli, "subscribe_telegram"));
|
||||
define("GOOGLE_RECAPTCHA", $db->getSetting($mysqli, "google_recaptcha"));
|
||||
@@ -24,34 +24,33 @@ $telegram = new Telegram();
|
||||
|
||||
Template::render_header("Subscriptions");
|
||||
|
||||
if ( SUBSCRIBE_TELEGRAM && $_SESSION['subscriber_typeid'] == 2 ) {
|
||||
if (SUBSCRIBE_TELEGRAM && $_SESSION['subscriber_typeid'] == 2) {
|
||||
$tg_user = $telegram->getTelegramUserData(); // TODO: Do we need this any longer?
|
||||
}
|
||||
|
||||
if( $_SESSION['subscriber_valid'] ){
|
||||
if ($_SESSION['subscriber_valid']) {
|
||||
|
||||
$typeID = $_SESSION['subscriber_typeid'];
|
||||
$subscriberID = $_SESSION['subscriber_id'];
|
||||
$userID = $_SESSION['subscriber_userid'];
|
||||
$token = $_SESSION['subscriber_token'];
|
||||
|
||||
if(isset($_GET['add'])){
|
||||
if (isset($_GET['add'])) {
|
||||
$subscription->add($subscriberID, $_GET['add']);
|
||||
}
|
||||
|
||||
if(isset($_GET['remove'])){
|
||||
if (isset($_GET['remove'])) {
|
||||
$subscription->remove($subscriberID, $_GET['remove']);
|
||||
}
|
||||
|
||||
$subscription->render_subscribed_services($typeID, $subscriberID, $userID, $token);
|
||||
|
||||
} else {
|
||||
|
||||
$header = _("Your session has expired or you tried something we don't suppprt");
|
||||
$message = _('If your session expired, retry your link or in case of Telegram use the login button in the top menu.');
|
||||
$constellation->render_warning($header, $message);
|
||||
|
||||
header('Location: index.php');
|
||||
header('Location: index.php');
|
||||
}
|
||||
|
||||
Template::render_footer();
|
||||
|
||||
Reference in New Issue
Block a user