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

15
web/category.php Normal file
View File

@@ -0,0 +1,15 @@
<?php
// Dynamic filter
use KupShop\KupShopBundle\Util\Compat\SymfonyBridge;
$attributes = [
'id_section' => getVal('IDcat', null, 0),
'id_producer' => getVal('IDpd'),
'campaign' => getVal('campaign', null, ''),
];
if (isset($_GET['watchdog'])) {
SymfonyBridge::handleController('KupShop\CatalogBundle\Controller\CatalogController::watchdogAction', $attributes);
} else {
SymfonyBridge::handleController('KupShop\CatalogBundle\Controller\CatalogController::campaignAction', $attributes);
}