12 lines
314 B
PHP
12 lines
314 B
PHP
<?php
|
|
|
|
use KupShop\KupShopBundle\Util\Compat\SymfonyBridge;
|
|
|
|
$type = getVal('form', null, 'default');
|
|
|
|
if ($type == 'product_question') {
|
|
$type = 'dotaz-na-produkt';
|
|
}
|
|
|
|
SymfonyBridge::handleController('KupShop\ContentBundle\Controller\ContactFormController::SendFormAction', ['type' => $type, 'old' => true]);
|