shop-old/web/intelectra_shop/config/theme_widget.inc.php
2026-04-20 01:03:43 +02:00

98 lines
2.0 KiB
PHP

<?php
$widget_regions = array(
'left',
'top',
'header',
'footer',
'subheader'
);
$default_widget_list_left = array(
'1' => array(
'widget' => 'main_widget_item_categories',
'template' => 'main_widget_item_categories.tpl'
),
'2' => array(
'widget' => 'main_widget_menu_2',
'template' => 'main_widget_menu_2.tpl'
),
'3' => array(
'widget' => 'main_widget_info',
'template' => 'main_widget_info.tpl'
)
);
$default_widget_list_top = array(
'0' => array(
'widget' => 'main_widget_login',
'template' => 'main_widget_login.tpl'
),
'1' => array(
'widget' => 'main_widget_shoppingcart',
'template' => 'main_widget_shoppingcart.tpl'
),
'2' => array(
'widget' => 'main_widget_search',
'template' => 'main_widget_search.tpl'
)
);
$default_widget_list_header = array(
// '0' => array(
// 'widget' => 'main_widget_menu_advanced',
// 'template' => 'main_widget_menu.tpl',
// 'config' => array(
// 'fullWidth' => true,
// 'depth' => 2,
// 'splitInParentGroups' => true
// )
// )
'0' => array(
'widget' => false,
'template' => 'main_widget_menu_ajax.tpl'
)
);
$default_widget_list_footer = array(
'0' => array(
'widget' => 'main_widget_footer_menu',
'template' => 'main_widget_footer_menu.tpl'
),
'1' => array(
'widget' => 'main_widget_footer_menu',
'template' => 'main_widget_contact.tpl'
),
'2' => array(
'widget' => 'main_widget_newsletter',
'template' => 'main_widget_newsletter.tpl'
),
'3' => array(
'widget' => 'main_widget_footercontact',
'template' => 'main_widget_footercontact.tpl',
'config' => array(
'action' => '/Kontakt/?sent=true'
)
)
);
$default_widget_list_subheader = array(
'0' => array(
'widget' => 'main_widget_logorodeo',
'template' => 'main_widget_logorodeo.tpl'
)
);
//$customized_templates = array(
// 'main.tpl' => 1,
// 'main_widget_logorodeo.tpl' => 1,
// 'main_widget_menu.tpl' => 1,
// 'content_box_item_list.tpl' => 1,
// 'content_item.tpl' => 1,
// 'item_description.tpl' => 1,
// 'content_cash_desk/payments.tpl' => 1
//);
?>