Projekt

Allgemein

Profil

GX-Feature #47397 » DefaultTemplateSettings.patch

/templates/Honeygrid/template_settings.php - Till Tepelmann, 12.07.2016 18:44

Unterschiede anzeigen:

src/templates/Honeygrid/template_settings.php (revision )
1 1
<?php
2 2
/* --------------------------------------------------------------
3
   template_settings.php 2016-05-10
3
   template_settings.php 2016-07-12
4 4
   Gambio GmbH
5 5
   http://www.gambio.de
6 6
   Copyright (c) 2016 Gambio GmbH
......
9 9
   --------------------------------------------------------------
10 10
*/
11 11

  
12
$t_template_settings_array = array(
13
	'TEMPLATE_PRESENTATION_VERSION' => 3.0,
14
	'MENUBOXES'                     => array(
15
		'add_quickie'             => array('POSITION' => 'gm_box_pos_13', 'STATUS' => 0),
16
		'admin'                   => array('POSITION' => 'gm_box_pos_3', 'STATUS' => 1),
17
		'bestsellers'             => array('POSITION' => 'gm_box_pos_4', 'STATUS' => 1),
18
		'categories'              => array('POSITION' => 'gm_box_pos_1', 'STATUS' => 1),
19
		'content'                 => array('POSITION' => 'gm_box_pos_5', 'STATUS' => 1),
20
		'ekomi'                   => array('POSITION' => 'gm_box_pos_21', 'STATUS' => 0),
21
		'extrabox1'               => array('POSITION' => 'gm_box_pos_23', 'STATUS' => 0),
22
		'extrabox2'               => array('POSITION' => 'gm_box_pos_24', 'STATUS' => 0),
23
		'extrabox3'               => array('POSITION' => 'gm_box_pos_25', 'STATUS' => 0),
24
		'extrabox4'               => array('POSITION' => 'gm_box_pos_26', 'STATUS' => 0),
25
		'extrabox5'               => array('POSITION' => 'gm_box_pos_27', 'STATUS' => 0),
26
		'extrabox6'               => array('POSITION' => 'gm_box_pos_28', 'STATUS' => 0),
27
		'extrabox7'               => array('POSITION' => 'gm_box_pos_29', 'STATUS' => 0),
28
		'extrabox8'               => array('POSITION' => 'gm_box_pos_30', 'STATUS' => 0),
29
		'extrabox9'               => array('POSITION' => 'gm_box_pos_31', 'STATUS' => 0),
30
		'filter'                  => array('POSITION' => 'gm_box_pos_2', 'STATUS' => 1),
31
		'gm_trusted_shops_video'  => array('POSITION' => 'gm_box_pos_18', 'STATUS' => 0),
32
		'gm_trusted_shops_widget' => array('POSITION' => 'gm_box_pos_7', 'STATUS' => 1),
33
		'information'             => array('POSITION' => 'gm_box_pos_19', 'STATUS' => 0),
34
		'last_viewed'             => array('POSITION' => 'gm_box_pos_15', 'STATUS' => 0),
35
		'login'                   => array('POSITION' => 'gm_box_pos_16', 'STATUS' => 0),
36
		'mailbeez_shopvoting'     => array('POSITION' => 'gm_box_pos_22', 'STATUS' => 1),
37
		'manufacturers'           => array('POSITION' => 'gm_box_pos_10', 'STATUS' => 1),
38
		'manufacturers_info'      => array('POSITION' => 'gm_box_pos_11', 'STATUS' => 1),
39
		'newsletter'              => array('POSITION' => 'gm_box_pos_8', 'STATUS' => 1),
40
		'order_history'           => array('POSITION' => 'gm_box_pos_6', 'STATUS' => 1),
41
		'paypal'                  => array('POSITION' => 'gm_box_pos_20', 'STATUS' => 0),
42
		'search'                  => array('POSITION' => 'gm_box_pos_12', 'STATUS' => 0),
43
		'specials'                => array('POSITION' => 'gm_box_pos_9', 'STATUS' => 1),
44
		'trusted'                 => array('POSITION' => 'gm_box_pos_17', 'STATUS' => 0),
45
		'whatsnew'                => array('POSITION' => 'gm_box_pos_14', 'STATUS' => 0),
46
	),
47
	'SETTINGS' => array(
48
		'gx-index-full-width' => true,
49
		'gx-product-info-details-sticky' => true,
50
		'gx-product-info-full-width' => true,
51
		'gx-product-listing-col-xs' => 6,
52
		'gx-product-listing-col-sm' => 6,
53
		'gx-product-listing-col-md' => 4,
54
		'gx-product-listing-col-lg' => 3,
55
		'gx-show-search-top-nav' => false,
56
		'gx-header-fixed' => true,
57
		'gx-hide-logo-col' => false,
58
		'gx-hide-search-col' => false,
59
		'gx-hide-custom-1-col' => false,
60
		'gx-hide-cart-col' => false
61
	)
62
);
12
$t_template_settings = MainFactory::create_object('DefaultTemplateSettings');
13

  
14
$t_template_settings_array = $t_template_settings->get_template_settings_array();
(1-1/2)