vendor/shopware/storefront/Framework/Twig/TemplateConfigAccessor.php line 41

  1. <?php declare(strict_types=1);
  2. namespace Shopware\Storefront\Framework\Twig;
  3. use Shopware\Core\Framework\Log\Package;
  4. use Shopware\Core\System\SalesChannel\SalesChannelContext;
  5. use Shopware\Core\System\SystemConfig\SystemConfigService;
  6. use Shopware\Storefront\Theme\ThemeConfigValueAccessor;
  7. #[Package('storefront')]
  8. class TemplateConfigAccessor
  9. {
  10.     /**
  11.      * @internal
  12.      */
  13.     public function __construct(
  14.         private readonly SystemConfigService $systemConfigService,
  15.         private readonly ThemeConfigValueAccessor $themeConfigAccessor
  16.     ) {
  17.     }
  18.     /**
  19.      * @return string|bool|array|float|int|null
  20.      */
  21.     public function config(string $key, ?string $salesChannelId)
  22.     {
  23.         $static $this->getStatic();
  24.         if (\array_key_exists($key$static)) {
  25.             return $static[$key];
  26.         }
  27.         return $this->systemConfigService->get($key$salesChannelId);
  28.     }
  29.     /**
  30.      * @return string|bool|array|float|int|null
  31.      */
  32.     public function theme(string $keySalesChannelContext $context, ?string $themeId)
  33.     {
  34.         return $this->themeConfigAccessor->get($key$context$themeId);
  35.     }
  36.     private function getStatic(): array
  37.     {
  38.         return [
  39.             'seo.descriptionMaxLength' => 255,
  40.             'cms.revocationNoticeCmsPageId' => '00B9A8636F954277AE424E6C1C36A1F5',
  41.             'cms.taxCmsPageId' => '00B9A8636F954277AE424E6C1C36A1F5',
  42.             'cms.tosCmsPageId' => '00B9A8636F954277AE424E6C1C36A1F5',
  43.             'confirm.revocationNotice' => true,
  44.         ];
  45.     }
  46. }