<?php
/* --------------------------------------------------------------
   DefaultTemplateSettings.php 2016-07-12
   Gambio GmbH
   http://www.gambio.de
   Copyright (c) 2016 Gambio GmbH
   Released under the GNU General Public License (Version 2)
   [http://www.gnu.org/licenses/gpl-2.0.html]
   --------------------------------------------------------------
*/


class DefaultTemplateSettings {

	protected $t_template_settings_array;

	function get_template_settings_array()
	{
		return $this->t_template_settings_array;
	}

	function set_template_settings_array()
	{
		$this->t_template_settings_array = array(
			'TEMPLATE_PRESENTATION_VERSION' => 3.0,
			'MENUBOXES'                     => array(
				'add_quickie'             => array('POSITION' => 'gm_box_pos_13', 'STATUS' => 0),
				'admin'                   => array('POSITION' => 'gm_box_pos_3', 'STATUS' => 1),
				'bestsellers'             => array('POSITION' => 'gm_box_pos_4', 'STATUS' => 1),
				'categories'              => array('POSITION' => 'gm_box_pos_1', 'STATUS' => 1),
				'content'                 => array('POSITION' => 'gm_box_pos_5', 'STATUS' => 1),
				'ekomi'                   => array('POSITION' => 'gm_box_pos_21', 'STATUS' => 0),
				'extrabox1'               => array('POSITION' => 'gm_box_pos_23', 'STATUS' => 0),
				'extrabox2'               => array('POSITION' => 'gm_box_pos_24', 'STATUS' => 0),
				'extrabox3'               => array('POSITION' => 'gm_box_pos_25', 'STATUS' => 0),
				'extrabox4'               => array('POSITION' => 'gm_box_pos_26', 'STATUS' => 0),
				'extrabox5'               => array('POSITION' => 'gm_box_pos_27', 'STATUS' => 0),
				'extrabox6'               => array('POSITION' => 'gm_box_pos_28', 'STATUS' => 0),
				'extrabox7'               => array('POSITION' => 'gm_box_pos_29', 'STATUS' => 0),
				'extrabox8'               => array('POSITION' => 'gm_box_pos_30', 'STATUS' => 0),
				'extrabox9'               => array('POSITION' => 'gm_box_pos_31', 'STATUS' => 0),
				'filter'                  => array('POSITION' => 'gm_box_pos_2', 'STATUS' => 1),
				'gm_trusted_shops_video'  => array('POSITION' => 'gm_box_pos_18', 'STATUS' => 0),
				'gm_trusted_shops_widget' => array('POSITION' => 'gm_box_pos_7', 'STATUS' => 1),
				'information'             => array('POSITION' => 'gm_box_pos_19', 'STATUS' => 0),
				'last_viewed'             => array('POSITION' => 'gm_box_pos_15', 'STATUS' => 0),
				'login'                   => array('POSITION' => 'gm_box_pos_16', 'STATUS' => 0),
				'mailbeez_shopvoting'     => array('POSITION' => 'gm_box_pos_22', 'STATUS' => 1),
				'manufacturers'           => array('POSITION' => 'gm_box_pos_10', 'STATUS' => 1),
				'manufacturers_info'      => array('POSITION' => 'gm_box_pos_11', 'STATUS' => 1),
				'newsletter'              => array('POSITION' => 'gm_box_pos_8', 'STATUS' => 1),
				'order_history'           => array('POSITION' => 'gm_box_pos_6', 'STATUS' => 1),
				'paypal'                  => array('POSITION' => 'gm_box_pos_20', 'STATUS' => 0),
				'search'                  => array('POSITION' => 'gm_box_pos_12', 'STATUS' => 0),
				'specials'                => array('POSITION' => 'gm_box_pos_9', 'STATUS' => 1),
				'trusted'                 => array('POSITION' => 'gm_box_pos_17', 'STATUS' => 0),
				'whatsnew'                => array('POSITION' => 'gm_box_pos_14', 'STATUS' => 0),
			),
			'SETTINGS' => array(
				'gx-index-full-width' => true,
				'gx-product-info-details-sticky' => true,
				'gx-product-info-full-width' => true,
				'gx-product-listing-col-xs' => 6,
				'gx-product-listing-col-sm' => 6,
				'gx-product-listing-col-md' => 4,
				'gx-product-listing-col-lg' => 3,
				'gx-show-search-top-nav' => false,
				'gx-header-fixed' => true,
				'gx-hide-logo-col' => false,
				'gx-hide-search-col' => false,
				'gx-hide-custom-1-col' => false,
				'gx-hide-cart-col' => false
			)
		);
	}
}

