Skip to content
This repository has been archived by the owner on Jun 7, 2024. It is now read-only.

Commit

Permalink
Merge pull request #834 from gburton/1.0.4.0
Browse files Browse the repository at this point in the history
1.0.4.0
  • Loading branch information
gburton authored Nov 25, 2019
2 parents ef26533 + 7865094 commit 693ea25
Show file tree
Hide file tree
Showing 171 changed files with 2,267 additions and 2,173 deletions.
Binary file added admin/images/icon_phoenix.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
32 changes: 1 addition & 31 deletions admin/includes/boxes/catalog.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,37 +12,7 @@

$cl_box_groups[] = array(
'heading' => BOX_HEADING_CATALOG,
'apps' => array(
array(
'code' => 'categories.php',
'title' => BOX_CATALOG_CATEGORIES_PRODUCTS,
'link' => tep_href_link('categories.php')
),
array(
'code' => 'products_attributes.php',
'title' => BOX_CATALOG_CATEGORIES_PRODUCTS_ATTRIBUTES,
'link' => tep_href_link('products_attributes.php')
),
array(
'code' => 'manufacturers.php',
'title' => BOX_CATALOG_MANUFACTURERS,
'link' => tep_href_link('manufacturers.php')
),
array(
'code' => 'reviews.php',
'title' => BOX_CATALOG_REVIEWS,
'link' => tep_href_link('reviews.php')
),
array(
'code' => 'specials.php',
'title' => BOX_CATALOG_SPECIALS,
'link' => tep_href_link('specials.php')
),
array(
'code' => 'products_expected.php',
'title' => BOX_CATALOG_PRODUCTS_EXPECTED,
'link' => tep_href_link('products_expected.php')
)
'apps' => array(
)
);
?>
21 changes: 21 additions & 0 deletions admin/includes/boxes/catalog_categories.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?php
/*
$Id$
osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com
Copyright (c) 2019 osCommerce
Released under the GNU General Public License
*/

foreach ( $cl_box_groups as &$group ) {
if ( $group['heading'] == BOX_HEADING_CATALOG ) {
$group['apps'][] = array('code' => 'categories.php',
'title' => MODULES_ADMIN_MENU_CATALOG_PRODUCTS,
'link' => tep_href_link('categories.php'));

break;
}
}
22 changes: 22 additions & 0 deletions admin/includes/boxes/catalog_manufacturers.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?php
/*
$Id$
osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com
Copyright (c) 2019 osCommerce
Released under the GNU General Public License
*/

foreach ( $cl_box_groups as &$group ) {
if ( $group['heading'] == BOX_HEADING_CATALOG ) {
$group['apps'][] = array('code' => 'manufacturers.php',
'title' => MODULES_ADMIN_MENU_CATALOG_MANUFACTURERS,
'link' => tep_href_link('manufacturers.php'));

break;
}
}

22 changes: 22 additions & 0 deletions admin/includes/boxes/catalog_products_attributes.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?php
/*
$Id$
osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com
Copyright (c) 2019 osCommerce
Released under the GNU General Public License
*/

foreach ( $cl_box_groups as &$group ) {
if ( $group['heading'] == BOX_HEADING_CATALOG ) {
$group['apps'][] = array('code' => 'products_attributes.php',
'title' => MODULES_ADMIN_MENU_CATALOG_PRODUCTS_ATTRIBUTES,
'link' => tep_href_link('products_attributes.php'));

break;
}
}

22 changes: 22 additions & 0 deletions admin/includes/boxes/catalog_products_expected.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?php
/*
$Id$
osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com
Copyright (c) 2019 osCommerce
Released under the GNU General Public License
*/

foreach ( $cl_box_groups as &$group ) {
if ( $group['heading'] == BOX_HEADING_CATALOG ) {
$group['apps'][] = array('code' => 'products_expected.php',
'title' => MODULES_ADMIN_MENU_CATALOG_PRODUCTS_EXPECTED,
'link' => tep_href_link('products_expected.php'));

break;
}
}

22 changes: 22 additions & 0 deletions admin/includes/boxes/catalog_reviews.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?php
/*
$Id$
osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com
Copyright (c) 2019 osCommerce
Released under the GNU General Public License
*/

foreach ( $cl_box_groups as &$group ) {
if ( $group['heading'] == BOX_HEADING_CATALOG ) {
$group['apps'][] = array('code' => 'reviews.php',
'title' => MODULES_ADMIN_MENU_CATALOG_REVIEWS,
'link' => tep_href_link('reviews.php'));

break;
}
}

21 changes: 21 additions & 0 deletions admin/includes/boxes/catalog_specials.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?php
/*
$Id$
osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com
Copyright (c) 2019 osCommerce
Released under the GNU General Public License
*/

foreach ( $cl_box_groups as &$group ) {
if ( $group['heading'] == BOX_HEADING_CATALOG ) {
$group['apps'][] = array('code' => 'specials.php',
'title' => MODULES_ADMIN_MENU_CATALOG_SPECIALS,
'link' => tep_href_link('specials.php'));

break;
}
}
10 changes: 0 additions & 10 deletions admin/includes/boxes/configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,6 @@
$cl_box_groups[] = array(
'heading' => BOX_HEADING_CONFIGURATION,
'apps' => array(
array(
'code' => 'administrators.php',
'title' => BOX_CONFIGURATION_ADMINISTRATORS,
'link' => tep_href_link('administrators.php')
),
array(
'code' => 'store_logo.php',
'title' => BOX_CONFIGURATION_STORE_LOGO,
'link' => tep_href_link('store_logo.php')
)
)
);

Expand Down
21 changes: 21 additions & 0 deletions admin/includes/boxes/configuration_administrators.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?php
/*
$Id$
osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com
Copyright (c) 2019 osCommerce
Released under the GNU General Public License
*/

foreach ( $cl_box_groups as &$group ) {
if ( $group['heading'] == BOX_HEADING_CONFIGURATION ) {
$group['apps'][] = array('code' => 'administrators.php',
'title' => MODULES_ADMIN_MENU_CONFIGURATION_ADMINISTRATORS,
'link' => tep_href_link('administrators.php'));

break;
}
}
21 changes: 21 additions & 0 deletions admin/includes/boxes/configuration_store_logo.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?php
/*
$Id$
osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com
Copyright (c) 2019 osCommerce
Released under the GNU General Public License
*/

foreach ( $cl_box_groups as &$group ) {
if ( $group['heading'] == BOX_HEADING_CONFIGURATION ) {
$group['apps'][] = array('code' => 'store_logo.php',
'title' => MODULES_ADMIN_MENU_CONFIGURATION_STORE_LOGO,
'link' => tep_href_link('store_logo.php'));

break;
}
}
3 changes: 0 additions & 3 deletions admin/includes/boxes/customers.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@
'heading' => BOX_HEADING_CUSTOMERS,
'apps' => array(
array(
'code' => 'customers.php',
'title' => BOX_CUSTOMERS_CUSTOMERS,
'link' => tep_href_link('customers.php')
)
)
);
Expand Down
21 changes: 21 additions & 0 deletions admin/includes/boxes/customers_customers.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?php
/*
$Id$
osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com
Copyright (c) 2019 osCommerce
Released under the GNU General Public License
*/

foreach ( $cl_box_groups as &$group ) {
if ( $group['heading'] == BOX_HEADING_CUSTOMERS ) {
$group['apps'][] = array('code' => 'customers.php',
'title' => MODULES_ADMIN_MENU_CUSTOMERS_CUSTOMERS,
'link' => tep_href_link('customers.php'));

break;
}
}
15 changes: 0 additions & 15 deletions admin/includes/boxes/localization.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,6 @@
$cl_box_groups[] = array(
'heading' => BOX_HEADING_LOCALIZATION,
'apps' => array(
array(
'code' => 'currencies.php',
'title' => BOX_LOCALIZATION_CURRENCIES,
'link' => tep_href_link('currencies.php')
),
array(
'code' => 'languages.php',
'title' => BOX_LOCALIZATION_LANGUAGES,
'link' => tep_href_link('languages.php')
),
array(
'code' => 'orders_status.php',
'title' => BOX_LOCALIZATION_ORDERS_STATUS,
'link' => tep_href_link('orders_status.php')
)
)
);
?>
21 changes: 21 additions & 0 deletions admin/includes/boxes/localization_currencies.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?php
/*
$Id$
osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com
Copyright (c) 2019 osCommerce
Released under the GNU General Public License
*/

foreach ( $cl_box_groups as &$group ) {
if ( $group['heading'] == BOX_HEADING_LOCALIZATION ) {
$group['apps'][] = array('code' => 'currencies.php',
'title' => MODULES_ADMIN_MENU_LOCALIZATION_CURRENCIES,
'link' => tep_href_link('currencies.php'));

break;
}
}
21 changes: 21 additions & 0 deletions admin/includes/boxes/localization_languages.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?php
/*
$Id$
osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com
Copyright (c) 2019 osCommerce
Released under the GNU General Public License
*/

foreach ( $cl_box_groups as &$group ) {
if ( $group['heading'] == BOX_HEADING_LOCALIZATION ) {
$group['apps'][] = array('code' => 'languages.php',
'title' => MODULES_ADMIN_MENU_LOCALIZATION_LANGUAGES,
'link' => tep_href_link('languages.php'));

break;
}
}
21 changes: 21 additions & 0 deletions admin/includes/boxes/localization_orders_status.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?php
/*
$Id$
osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com
Copyright (c) 2019 osCommerce
Released under the GNU General Public License
*/

foreach ( $cl_box_groups as &$group ) {
if ( $group['heading'] == BOX_HEADING_LOCALIZATION ) {
$group['apps'][] = array('code' => 'orders_status.php',
'title' => MODULES_ADMIN_MENU_LOCALIZATION_ORDERS_STATUS,
'link' => tep_href_link('orders_status.php'));

break;
}
}
7 changes: 1 addition & 6 deletions admin/includes/boxes/orders.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,14 @@
osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com
Copyright (c) 2014 osCommerce
Copyright (c) 2019 osCommerce
Released under the GNU General Public License
*/

$cl_box_groups[] = array(
'heading' => BOX_HEADING_ORDERS,
'apps' => array(
array(
'code' => 'orders.php',
'title' => BOX_ORDERS_ORDERS,
'link' => tep_href_link('orders.php')
)
)
);
?>
21 changes: 21 additions & 0 deletions admin/includes/boxes/orders_orders.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?php
/*
$Id$
osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com
Copyright (c) 2019 osCommerce
Released under the GNU General Public License
*/

foreach ( $cl_box_groups as &$group ) {
if ( $group['heading'] == BOX_HEADING_ORDERS ) {
$group['apps'][] = array('code' => 'orders.php',
'title' => MODULES_ADMIN_MENU_ORDERS_ORDERS,
'link' => tep_href_link('orders.php'));

break;
}
}
Loading

0 comments on commit 693ea25

Please sign in to comment.