Files
kupshop/bundles/KupShop/PohodaBundle/PohodaBundle.php
2025-08-02 16:30:27 +02:00

23 lines
448 B
PHP

<?php
namespace KupShop\PohodaBundle;
use KupShop\KupShopBundle\Config;
use Symfony\Component\HttpKernel\Bundle\Bundle;
class PohodaBundle extends Bundle
{
public const LOG_TAG_POHODA = 'Pohoda';
public function boot()
{
parent::boot();
$cfg = &Config::get()->getContainer();
$cfg['Order']['Flags'] += [
'STCK' => ['name' => 'Zaseknutá objednávka'],
];
parent::boot();
}
}