-
Notifications
You must be signed in to change notification settings - Fork 23
/
SalesChannelRequest.php
35 lines (25 loc) · 1.03 KB
/
SalesChannelRequest.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?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_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';
private function __construct()
{
}
}