-
Notifications
You must be signed in to change notification settings - Fork 23
/
Defaults.php
41 lines (30 loc) · 1.21 KB
/
Defaults.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
36
37
38
39
40
41
<?php declare(strict_types=1);
namespace Shopware\Core;
use Shopware\Core\Framework\Log\Package;
/**
* System-wide defaults that are fixed for performance reasons.
*
* @codeCoverageIgnore
*/
#[Package('core')]
final class Defaults
{
/**
* Don't depend on this being en-GB, the underlying language can be overwritten by the installer!
*/
public const LANGUAGE_SYSTEM = '2fbb5fe2e29a4d70aa5854ce7ce3e20b';
public const LIVE_VERSION = '0fa91ce3e96a4bc2be4bd9ce752c3425';
/**
* Don't depend on this being EUR, the underlying currency can be overwritten by the installer!
*/
public const CURRENCY = 'b7d2554b0ce847cd82f3ac9bd1c0dfca';
public const SALES_CHANNEL_TYPE_API = 'f183ee5650cf4bdb8a774337575067a6';
public const SALES_CHANNEL_TYPE_STOREFRONT = '8a243080f92e4c719546314b577cf82b';
public const SALES_CHANNEL_TYPE_PRODUCT_COMPARISON = 'ed535e5722134ac1aa6524f73e26881b';
public const STORAGE_DATE_TIME_FORMAT = 'Y-m-d H:i:s.v';
/**
* Do not use STORAGE_DATE_FORMAT for createdAt fields, use STORAGE_DATE_TIME_FORMAT instead
*/
public const STORAGE_DATE_FORMAT = 'Y-m-d';
public const CMS_PRODUCT_DETAIL_PAGE = '7a6d253a67204037966f42b0119704d5';
}