23 lines
448 B
PHP
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();
|
|
}
|
|
}
|