⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.45
Server IP:
185.238.29.86
Server:
Linux server2 6.8.12-6-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-6 (2024-12-19T19:05Z) x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
shopware
/
vendor
/
shopware
/
core
/
View File Name :
SalesChannelRequest.php
<?php declare(strict_types=1); namespace Shopware\Core; use Shopware\Core\Framework\Log\Package; #[Package('core')] final class SalesChannelRequest { public const ATTRIBUTE_IS_SALES_CHANNEL_REQUEST = '_is_sales_channel'; public const ATTRIBUTE_IS_ALLOWED_IN_MAINTENANCE = 'allow_maintenance'; public const ATTRIBUTE_THEME_ID = 'theme-id'; public const ATTRIBUTE_THEME_NAME = 'theme-name'; public const ATTRIBUTE_THEME_BASE_NAME = 'theme-base-name'; public const ATTRIBUTE_SALES_CHANNEL_MAINTENANCE = 'sw-maintenance'; public const ATTRIBUTE_SALES_CHANNEL_MAINTENANCE_IP_WHITLELIST = 'sw-maintenance-ip-whitelist'; /** * domain-resolved attributes */ public const ATTRIBUTE_DOMAIN_ID = 'sw-domain-id'; public const ATTRIBUTE_DOMAIN_LOCALE = '_locale'; public const ATTRIBUTE_DOMAIN_SNIPPET_SET_ID = 'sw-snippet-set-id'; public const ATTRIBUTE_DOMAIN_CURRENCY_ID = 'sw-currency-id'; public const ATTRIBUTE_CANONICAL_LINK = 'sw-canonical-link'; public const ATTRIBUTE_STOREFRONT_URL = 'sw-storefront-url'; /** * @deprecated tag:v6.5.0 - will be removed as the csrf system will be removed in favor for the samesite approach */ public const ATTRIBUTE_CSRF_PROTECTED = 'csrf_protected'; /** * @deprecated tag:v6.5.0 - will be removed as the proxy will be removed */ public const ATTRIBUTE_STORE_API_PROXY = 'sw-store-api-proxy'; private function __construct() { } }