48 lines
1.6 KiB
PHP
48 lines
1.6 KiB
PHP
<?php
|
|
/* ----------------------------------------------------------------------
|
|
$Id: modules.php 437 2013-06-22 15:33:30Z r23 $
|
|
|
|
MyOOS [Shopsystem]
|
|
https://www.oos-shop.de
|
|
|
|
Copyright (c) 2003 - 2019 by the MyOOS Development Team.
|
|
----------------------------------------------------------------------
|
|
Based on:
|
|
|
|
File: modules.php,v 1.15 2002/04/03 23:25:41 hpdl
|
|
----------------------------------------------------------------------
|
|
osCommerce, Open Source E-Commerce Solutions
|
|
http://www.oscommerce.com
|
|
|
|
Copyright (c) 2003 osCommerce
|
|
----------------------------------------------------------------------
|
|
Released under the GNU General Public License
|
|
---------------------------------------------------------------------- */
|
|
|
|
$bActive = ($_SESSION['selected_box'] == 'modules' ) ? TRUE : FALSE;
|
|
|
|
$aBlocks[] = array(
|
|
'heading' => BOX_HEADING_MODULES,
|
|
'link' => oos_href_link_admin(basename($_SERVER['PHP_SELF']), oos_get_all_get_params(array('selected_box')) . 'selected_box=modules'),
|
|
'icon' => 'fa fa-edit',
|
|
'active' => $bActive,
|
|
'contents' => array(
|
|
array(
|
|
'code' => 'payment',
|
|
'title' => BOX_MODULES_PAYMENT,
|
|
'link' => oos_href_link_admin($aContents['modules'], 'selected_box=modules&set=payment')
|
|
),
|
|
array(
|
|
'code' => 'shipping',
|
|
'title' => BOX_MODULES_SHIPPING,
|
|
'link' => oos_href_link_admin($aContents['modules'], 'selected_box=modules&set=shipping')
|
|
),
|
|
array(
|
|
'code' => 'ordertotal',
|
|
'title' => BOX_MODULES_ORDER_TOTAL,
|
|
'link' => oos_href_link_admin($aContents['modules'], 'selected_box=modules&set=ordertotal')
|
|
),
|
|
),
|
|
);
|
|
|