1
|
<?php
|
2
|
/* --------------------------------------------------------------
|
3
|
DefaultTemplateSettings.php 2016-07-12
|
4
|
Gambio GmbH
|
5
|
http://www.gambio.de
|
6
|
Copyright (c) 2016 Gambio GmbH
|
7
|
Released under the GNU General Public License (Version 2)
|
8
|
[http://www.gnu.org/licenses/gpl-2.0.html]
|
9
|
--------------------------------------------------------------
|
10
|
*/
|
11
|
|
12
|
|
13
|
class DefaultTemplateSettings {
|
14
|
|
15
|
protected $t_template_settings_array;
|
16
|
|
17
|
function get_template_settings_array()
|
18
|
{
|
19
|
return $this->t_template_settings_array;
|
20
|
}
|
21
|
|
22
|
function set_template_settings_array()
|
23
|
{
|
24
|
$this->t_template_settings_array = array(
|
25
|
'TEMPLATE_PRESENTATION_VERSION' => 3.0,
|
26
|
'MENUBOXES' => array(
|
27
|
'add_quickie' => array('POSITION' => 'gm_box_pos_13', 'STATUS' => 0),
|
28
|
'admin' => array('POSITION' => 'gm_box_pos_3', 'STATUS' => 1),
|
29
|
'bestsellers' => array('POSITION' => 'gm_box_pos_4', 'STATUS' => 1),
|
30
|
'categories' => array('POSITION' => 'gm_box_pos_1', 'STATUS' => 1),
|
31
|
'content' => array('POSITION' => 'gm_box_pos_5', 'STATUS' => 1),
|
32
|
'ekomi' => array('POSITION' => 'gm_box_pos_21', 'STATUS' => 0),
|
33
|
'extrabox1' => array('POSITION' => 'gm_box_pos_23', 'STATUS' => 0),
|
34
|
'extrabox2' => array('POSITION' => 'gm_box_pos_24', 'STATUS' => 0),
|
35
|
'extrabox3' => array('POSITION' => 'gm_box_pos_25', 'STATUS' => 0),
|
36
|
'extrabox4' => array('POSITION' => 'gm_box_pos_26', 'STATUS' => 0),
|
37
|
'extrabox5' => array('POSITION' => 'gm_box_pos_27', 'STATUS' => 0),
|
38
|
'extrabox6' => array('POSITION' => 'gm_box_pos_28', 'STATUS' => 0),
|
39
|
'extrabox7' => array('POSITION' => 'gm_box_pos_29', 'STATUS' => 0),
|
40
|
'extrabox8' => array('POSITION' => 'gm_box_pos_30', 'STATUS' => 0),
|
41
|
'extrabox9' => array('POSITION' => 'gm_box_pos_31', 'STATUS' => 0),
|
42
|
'filter' => array('POSITION' => 'gm_box_pos_2', 'STATUS' => 1),
|
43
|
'gm_trusted_shops_video' => array('POSITION' => 'gm_box_pos_18', 'STATUS' => 0),
|
44
|
'gm_trusted_shops_widget' => array('POSITION' => 'gm_box_pos_7', 'STATUS' => 1),
|
45
|
'information' => array('POSITION' => 'gm_box_pos_19', 'STATUS' => 0),
|
46
|
'last_viewed' => array('POSITION' => 'gm_box_pos_15', 'STATUS' => 0),
|
47
|
'login' => array('POSITION' => 'gm_box_pos_16', 'STATUS' => 0),
|
48
|
'mailbeez_shopvoting' => array('POSITION' => 'gm_box_pos_22', 'STATUS' => 1),
|
49
|
'manufacturers' => array('POSITION' => 'gm_box_pos_10', 'STATUS' => 1),
|
50
|
'manufacturers_info' => array('POSITION' => 'gm_box_pos_11', 'STATUS' => 1),
|
51
|
'newsletter' => array('POSITION' => 'gm_box_pos_8', 'STATUS' => 1),
|
52
|
'order_history' => array('POSITION' => 'gm_box_pos_6', 'STATUS' => 1),
|
53
|
'paypal' => array('POSITION' => 'gm_box_pos_20', 'STATUS' => 0),
|
54
|
'search' => array('POSITION' => 'gm_box_pos_12', 'STATUS' => 0),
|
55
|
'specials' => array('POSITION' => 'gm_box_pos_9', 'STATUS' => 1),
|
56
|
'trusted' => array('POSITION' => 'gm_box_pos_17', 'STATUS' => 0),
|
57
|
'whatsnew' => array('POSITION' => 'gm_box_pos_14', 'STATUS' => 0),
|
58
|
),
|
59
|
'SETTINGS' => array(
|
60
|
'gx-index-full-width' => true,
|
61
|
'gx-product-info-details-sticky' => true,
|
62
|
'gx-product-info-full-width' => true,
|
63
|
'gx-product-listing-col-xs' => 6,
|
64
|
'gx-product-listing-col-sm' => 6,
|
65
|
'gx-product-listing-col-md' => 4,
|
66
|
'gx-product-listing-col-lg' => 3,
|
67
|
'gx-show-search-top-nav' => false,
|
68
|
'gx-header-fixed' => true,
|
69
|
'gx-hide-logo-col' => false,
|
70
|
'gx-hide-search-col' => false,
|
71
|
'gx-hide-custom-1-col' => false,
|
72
|
'gx-hide-cart-col' => false
|
73
|
)
|
74
|
);
|
75
|
}
|
76
|
}
|
77
|
|