-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththeme-config.php
68 lines (62 loc) · 1.97 KB
/
theme-config.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<?php
/**
* Template "hard" configuration.
*
* Do not modify files here! Use repository like a civilized programmer.
* Mess with the best, die like the rest! Hack the planet!
*
* @author Konrad Fedorczyk <contact@realhe.ro>
* @link https://github.com/fedek6/body-works
*/
define("TEMPLATE_VERSION", "1.0.47");
define("TEMPLATE_VARIANT", "body-works");
abstract class BwConfig {
/** @var array $logos Logos for the header grid */
public static $logos = [
[
"image" => "logo-body-works.png?ver=2",
"url" => "https://body-works.pl",
"modifier" => "--body-works",
"targetBlank" => false
],
[
"image" => "logo-body-worksout.png?ver=2",
"url" => "https://www.bodyworksout.pl/",
"modifier" => "--body-worksout",
"targetBlank" => true
],
[
"image" => "logo-kids-fitness.png?ver=2",
"url" => "http://silowniedladzieci.eu/",
"modifier" => "--kids-fitness",
"targetBlank" => true
],
[
"image" => "logo-fit-system.png?ver=2",
"url" => "http://fit-system.pl",
"modifier" => "--fit-system",
"targetBlank" => true
],
[
"image" => "logo-fit-energy.png?ver=2",
"url" => null,
"modifier" => "--fit-energy",
"targetBlank" => true
],
];
/** @var int $hederHeight Category header height */
public static $headerHeight = 180;
/** @var array $allowedMimes Allowed mimetypes */
public static $allowedMimes = [
'3ds' => 'image/x-3ds',
'dwg' => 'image/vnd.dwg',
'max' => 'application/CDFV2',
'skp' => 'application/octet-stream'
];
/** @var string $gaId Google analytics id */
public static $gaId = "UA-16322686-4";
/** @var bool $shopMode Show prices etc. */
public static $shopMode = false;
/** @var bool $disableUpdates */
public static $disableUpdates = true;
}