first commit

This commit is contained in:
2025-08-02 16:30:27 +02:00
commit 23646bfcee
14851 changed files with 1750626 additions and 0 deletions

27
web/newsletter.php Normal file
View File

@@ -0,0 +1,27 @@
<?php
use KupShop\KupShopBundle\Util\Compat\SymfonyBridge;
if (!empty($_REQUEST['unsubscribe'])) {
SymfonyBridge::handleController('ContentBundle:Newsletter:unsubscribe');
}
if (getVal('subscribe')) {
SymfonyBridge::handleController('ContentBundle:Newsletter:subscribe');
}
if (getVal('generate')) {
SymfonyBridge::handleController('ContentBundle:Newsletter:generate');
}
if (getVal('generate') == null && getVal('subscribe') == null && !isset($_REQUEST['unsubscribe'])) {
SymfonyBridge::handleController('ContentBundle:Newsletter:other');
}
?>
<style type="text/css">
.webHidden {
display: none !important;
}
</style>