PDF rausgenommen

This commit is contained in:
aschwarz
2023-01-23 11:03:31 +01:00
parent 82d562a322
commit a6523903eb
28078 changed files with 4247552 additions and 2 deletions

View File

@ -0,0 +1,42 @@
<?php
/* ----------------------------------------------------------------------
$Id: administrator.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: administrator.php,v 1.20 2002/03/16 00:20:11 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'] == 'administrator' ) ? TRUE : FALSE;
$aBlocks[] = array(
'heading' => BOX_HEADING_ADMINISTRATOR,
'link' => oos_href_link_admin(basename($_SERVER['PHP_SELF']), oos_get_all_get_params(array('selected_box')) . 'selected_box=administrator'),
'icon' => 'fa fa-user',
'active' => $bActive,
'contents' => array(
array(
'code' => $aContents['admin_members'],
'title' => BOX_ADMINISTRATOR_MEMBERS,
'link' => oos_admin_files_boxes('admin_members', 'selected_box=administrator')
),
array(
'code' => $aContents['admin_files'],
'title' => BOX_ADMINISTRATOR_BOXES,
'link' => oos_admin_files_boxes('admin_files', 'selected_box=administrator')
),
),
);

View File

@ -0,0 +1,92 @@
<?php
/* ----------------------------------------------------------------------
$Id: catalog.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: catalog.php,v 1.20 2002/03/16 00:20:11 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'] == 'catalog' ) ? TRUE : FALSE;
$aBlocks[] = array(
'heading' => BOX_HEADING_CATALOG,
'link' => oos_href_link_admin(basename($_SERVER['PHP_SELF']), oos_get_all_get_params(array('selected_box')) . 'selected_box=catalog'),
'icon' => 'fa fa-desktop',
'active' => $bActive,
'contents' => array(
array(
'code' => $aContents['categories'],
'title' => BOX_CATALOG_CATEGORIES_PRODUCTS,
'link' => oos_admin_files_boxes('categories', 'selected_box=catalog')
),
array(
'code' => $aContents['specials'],
'title' => BOX_CATALOG_SPECIALS,
'link' => oos_admin_files_boxes('specials', 'selected_box=catalog')
),
array(
'code' => $aContents['products_expected'],
'title' => BOX_CATALOG_PRODUCTS_EXPECTED,
'link' => oos_admin_files_boxes('products_expected', 'selected_box=catalog')
),
array(
'code' => $aContents['featured'],
'title' => BOX_CATALOG_PRODUCTS_FEATURED,
'link' => oos_admin_files_boxes('featured', 'selected_box=catalog')
),
array(
'code' => $aContents['products_attributes'],
'title' => BOX_CATALOG_CATEGORIES_PRODUCTS_ATTRIBUTES,
'link' => oos_admin_files_boxes('products_attributes', 'selected_box=catalog')
),
array(
'code' => $aContents['products_status'],
'title' => BOX_CATALOG_PRODUCTS_STATUS,
'link' => oos_admin_files_boxes('products_status', 'selected_box=catalog')
),
array(
'code' => $aContents['products_units'],
'title' => BOX_CATALOG_PRODUCTS_UNITS,
'link' => oos_admin_files_boxes('products_units', 'selected_box=catalog')
),
array(
'code' => $aContents['export_excel'],
'title' => BOX_CATALOG_EXPORT_EXCEL,
'link' => oos_admin_files_boxes('export_excel', 'selected_box=catalog')
),
array(
'code' => $aContents['import_excel'],
'title' => BOX_CATALOG_IMPORT_EXCEL,
'link' => oos_admin_files_boxes('import_excel', 'selected_box=catalog')
),
array(
'code' => $aContents['manufacturers'],
'title' => BOX_CATALOG_MANUFACTURERS,
'link' => oos_admin_files_boxes('manufacturers', 'selected_box=catalog')
),
array(
'code' => $aContents['reviews'],
'title' => BOX_CATALOG_REVIEWS,
'link' => oos_admin_files_boxes('reviews', 'selected_box=catalog')
),
array(
'code' => $aContents['wastebasket'],
'title' => BOX_CATALOG_WASTEBASKET,
'link' => oos_admin_files_boxes('wastebasket', 'selected_box=catalog')
),
),
);

View File

@ -0,0 +1,44 @@
<?php
/* ----------------------------------------------------------------------
$Id: configuration.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: configuration.php,v 1.16 2002/03/16 00:20:11 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'] == 'configuration' ) ? TRUE : FALSE;
$aBlocks[] = array(
'heading' => BOX_HEADING_CONFIGURATION,
'link' => oos_href_link_admin(basename($_SERVER['PHP_SELF']), oos_get_all_get_params(array('selected_box')) . 'selected_box=configuration'),
'icon' => 'fa fa-cogs',
'active' => $bActive
);
$configuration_groups_result = $dbconn->Execute("SELECT configuration_group_id AS cg_id FROM " . $oostable['configuration_group'] . " WHERE visible = '1' ORDER BY sort_order");
while ($configuration_groups = $configuration_groups_result->fields) {
$aBlocks[sizeof($aBlocks)-1]['contents'][] = array(
'code' => $configuration_groups['cg_id'],
'title' => constant(strtoupper($configuration_groups['cg_id'] . '_TITLE')),
'link' => oos_href_link_admin($aContents['configuration'], 'selected_box=configuration&amp;gID=' . $configuration_groups['cg_id'])
);
// Move that ADOdb pointer!
$configuration_groups_result->MoveNext();
}

View File

@ -0,0 +1,39 @@
<?php
/* ----------------------------------------------------------------------
$Id: content.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:
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'] == 'content' ) ? TRUE : FALSE;
$aBlocks[] = array(
'heading' => BOX_HEADING_CONTENT,
'link' => oos_href_link_admin(basename($_SERVER['PHP_SELF']), oos_get_all_get_params(array('selected_box')) . 'selected_box=content'),
'icon' => 'fa fa-files-o',
'active' => $bActive,
'contents' => array(
array(
'code' => $aContents['content_block'],
'title' => BOX_CONTENT_BLOCK,
'link' => oos_admin_files_boxes('content_block', 'selected_box=content')
),
array(
'code' => $aContents['content_page_type'],
'title' => BOX_CONTENT_PAGE_TYPE,
'link' => oos_admin_files_boxes('content_page_type', 'selected_box=content')
),
),
);

View File

@ -0,0 +1,57 @@
<?php
/* ----------------------------------------------------------------------
$Id: customers.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: customers.php,v 1.15 2002/03/16 00:20:11 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'] == 'customers' ) ? TRUE : FALSE;
$aBlocks[] = array(
'heading' => BOX_HEADING_CUSTOMERS,
'link' => oos_href_link_admin(basename($_SERVER['PHP_SELF']), oos_get_all_get_params(array('selected_box')) . 'selected_box=customers'),
'icon' => 'fa fa-users',
'active' => $bActive,
'contents' => array(
array(
'code' => $aContents['customers'],
'title' => BOX_CUSTOMERS_CUSTOMERS,
'link' => oos_admin_files_boxes('customers', 'selected_box=customers')
),
array(
'code' => $aContents['orders'],
'title' => BOX_CUSTOMERS_ORDERS,
'link' => oos_admin_files_boxes('orders', 'selected_box=customers')
),
array(
'code' => $aContents['customers_status'],
'title' => BOX_LOCALIZATION_CUSTOMERS_STATUS,
'link' => oos_admin_files_boxes('customers_status','selected_box=customers')
),
array(
'code' => $aContents['orders_status'],
'title' => BOX_ORDERS_STATUS,
'link' => oos_admin_files_boxes('orders_status', 'selected_box=customers')
),
array(
'code' => $aContents['manual_loging'],
'title' => BOX_ADMIN_LOGIN,
'link' => oos_admin_files_boxes('manual_loging', 'selected_box=customers')
),
),
);

View File

@ -0,0 +1,42 @@
<?php
/* ----------------------------------------------------------------------
$Id: export.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:
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'] == 'export' ) ? TRUE : FALSE;
$aBlocks[] = array(
'heading' => BOX_HEADING_EXPORT,
'link' => oos_href_link_admin(basename($_SERVER['PHP_SELF']), oos_get_all_get_params(array('selected_box')) . 'selected_box=tools'),
'icon' => 'fa fa-database',
'active' => $bActive,
'contents' => array(
array(
'code' => $aContents['export_googlebase'],
'title' => BOX_EXPORT_GOOGLEBASE,
'link' => oos_admin_files_boxes('export_googlebase', 'selected_box=export')
),
array(
'code' => $aContents['export_excel'],
'title' => BOX_CATALOG_EXPORT_EXCEL,
'link' => oos_admin_files_boxes('export_excel', 'selected_box=export')
),
),
);

View File

@ -0,0 +1,56 @@
<?php
/* ----------------------------------------------------------------------
$Id: gv_admin.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: gv_admin.php,v 1.2.2.1 2003/04/18 21:13:51 wilt
----------------------------------------------------------------------
osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com
Copyright (c) 2002 - 2003 osCommerce
Gift Voucher System v1.0
Copyright (c) 2001,2002 Ian C Wilson
http://www.phesis.org
----------------------------------------------------------------------
Released under the GNU General Public License
---------------------------------------------------------------------- */
$bActive = ($_SESSION['selected_box'] == 'gv_admin' ) ? TRUE : FALSE;
$aBlocks[] = array(
'heading' => BOX_HEADING_GV_ADMIN,
'link' => oos_href_link_admin(basename($_SERVER['PHP_SELF']), oos_get_all_get_params(array('selected_box')) . 'selected_box=gv_admin'),
'icon' => 'fa fa-certificate',
'active' => $bActive,
'contents' => array(
array(
'code' => $aContents['coupon_admin'],
'title' => BOX_COUPON_ADMIN,
'link' => oos_admin_files_boxes('coupon_admin', 'selected_box=gv_admin')
),
array(
'code' => $aContents['gv_queue'],
'title' => BOX_GV_ADMIN_QUEUE,
'link' => oos_admin_files_boxes('gv_queue', 'selected_box=gv_admin')
),
array(
'code' => $aContents['gv_mail'],
'title' => BOX_GV_ADMIN_MAIL,
'link' => oos_admin_files_boxes('gv_mail', 'selected_box=gv_admin')
),
array(
'code' => $aContents['gv_sent'],
'title' => BOX_GV_ADMIN_SENT,
'link' => oos_admin_files_boxes('gv_sent', 'selected_box=gv_admin')
),
),
);

View File

@ -0,0 +1,36 @@
<?php
/* ----------------------------------------------------------------------
$Id: information.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:
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'] == 'information' ) ? TRUE : FALSE;
$aBlocks[] = array(
'heading' => BOX_HEADING_INFORMATION,
'link' => oos_href_link_admin(basename($_SERVER['PHP_SELF']), oos_get_all_get_params(array('selected_box')) . 'selected_box=information'),
'icon' => 'fa fa-tasks',
'active' => $bActive,
'contents' => array(
array(
'code' => $aContents['information'],
'title' => BOX_INFORMATION,
'link' => oos_admin_files_boxes('information', 'selected_box=information')
),
),
);

View File

@ -0,0 +1,42 @@
<?php
/* ----------------------------------------------------------------------
$Id: localization.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: localization.php,v 1.15 2002/03/16 00:20:11 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'] == 'localization' ) ? TRUE : FALSE;
$aBlocks[] = array(
'heading' => BOX_HEADING_LOCALIZATION,
'link' => oos_href_link_admin(basename($_SERVER['PHP_SELF']), oos_get_all_get_params(array('selected_box')) . 'selected_box=localization'),
'icon' => 'fa fa-language',
'active' => $bActive,
'contents' => array(
array(
'code' => $aContents['currencies'],
'title' => BOX_LOCALIZATION_CURRENCIES,
'link' => oos_admin_files_boxes('currencies', 'selected_box=localization')
),
array(
'code' => $aContents['languages'],
'title' => BOX_LOCALIZATION_LANGUAGES,
'link' => oos_admin_files_boxes('languages', 'selected_box=localization')
),
),
);

View File

@ -0,0 +1,47 @@
<?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&amp;set=payment')
),
array(
'code' => 'shipping',
'title' => BOX_MODULES_SHIPPING,
'link' => oos_href_link_admin($aContents['modules'], 'selected_box=modules&amp;set=shipping')
),
array(
'code' => 'ordertotal',
'title' => BOX_MODULES_ORDER_TOTAL,
'link' => oos_href_link_admin($aContents['modules'], 'selected_box=modules&amp;set=ordertotal')
),
),
);

View File

@ -0,0 +1,27 @@
<?php
/* ----------------------------------------------------------------------
$Id: plugins.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.
----------------------------------------------------------------------
Released under the GNU General Public License
---------------------------------------------------------------------- */
$bActive = ($_SESSION['selected_box'] == 'plugins' ) ? TRUE : FALSE;
$aBlocks[] = array(
'heading' => BOX_HEADING_PLUGINS,
'link' => oos_href_link_admin(basename($_SERVER['PHP_SELF']), oos_get_all_get_params(array('selected_box')) . 'selected_box=plugins'),
'icon' => 'fa fa-plug',
'active' => $bActive,
'contents' => array(
array(
'code' => $aContents['plugins'],
'title' => BOX_PLUGINS_EVENT,
'link' => oos_href_link_admin($aContents['plugins'], 'selected_box=plugins')
),
),
);

View File

@ -0,0 +1,56 @@
<?php
/* ----------------------------------------------------------------------
$Id: reports.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: reports.php,v 1.4 2002/03/16 00:20:11 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'] == 'reports' ) ? TRUE : FALSE;
$aBlocks[] = array(
'heading' => BOX_HEADING_REPORTS,
'link' => oos_href_link_admin(basename($_SERVER['PHP_SELF']), oos_get_all_get_params(array('selected_box')) . 'selected_box=reports'),
'icon' => 'fa fa-bar-chart-o',
'active' => $bActive,
'contents' => array(
array(
'code' => $aContents['stats_products_purchased'],
'title' => BOX_REPORTS_PRODUCTS_PURCHASED,
'link' => oos_admin_files_boxes('stats_products_purchased', 'selected_box=reports')
),
array(
'code' => $aContents['stats_products_viewed'],
'title' => BOX_REPORTS_PRODUCTS_VIEWED,
'link' => oos_admin_files_boxes('stats_products_viewed', 'selected_box=reports')
),
array(
'code' => $aContents['stats_low_stock'],
'title' => BOX_REPORTS_STOCK_LEVEL,
'link' => oos_admin_files_boxes('stats_low_stock', 'selected_box=reports')
),
array(
'code' => $aContents['stats_customers'],
'title' => BOX_REPORTS_ORDERS_TOTAL,
'link' => oos_admin_files_boxes('stats_customers', 'selected_box=reports')
),
array(
'code' => $aContents['stats_sales_report2'],
'title' => BOX_REPORTS_SALES_REPORT2,
'link' => oos_admin_files_boxes('stats_sales_report2', 'selected_box=reports')
),
),
);

View File

@ -0,0 +1,57 @@
<?php
/* ----------------------------------------------------------------------
$Id: taxes.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: taxes.php,v 1.16 2002/03/16 00:20:11 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'] == 'taxes' ) ? TRUE : FALSE;
$aBlocks[] = array(
'heading' => BOX_HEADING_LOCATION_AND_TAXES,
'link' => oos_href_link_admin(basename($_SERVER['PHP_SELF']), oos_get_all_get_params(array('selected_box')) . 'selected_box=taxes'),
'icon' => 'fa fa-globe',
'active' => $bActive,
'contents' => array(
array(
'code' => $aContents['countries'],
'title' => BOX_TAXES_COUNTRIES,
'link' => oos_admin_files_boxes('countries', 'selected_box=taxes')
),
array(
'code' => $aContents['zones'],
'title' => BOX_TAXES_ZONES,
'link' => oos_admin_files_boxes('zones', 'selected_box=taxes')
),
array(
'code' => $aContents['geo_zones'],
'title' => BOX_TAXES_GEO_ZONES,
'link' => oos_admin_files_boxes('geo_zones', 'selected_box=taxes')
),
array(
'code' => $aContents['tax_classes'],
'title' => BOX_TAXES_TAX_CLASSES,
'link' => oos_admin_files_boxes('tax_classes', 'selected_box=taxes')
),
array(
'code' => $aContents['tax_rates'],
'title' => BOX_TAXES_TAX_RATES,
'link' => oos_admin_files_boxes('tax_rates', 'selected_box=taxes')
),
),
);

View File

@ -0,0 +1,46 @@
<?php
/* ----------------------------------------------------------------------
$Id: tools.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: tools.php,v 1.20 2002/03/16 00:20:11 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'] == 'tools' ) ? TRUE : FALSE;
$aBlocks[] = array(
'heading' => BOX_HEADING_TOOLS,
'link' => oos_href_link_admin(basename($_SERVER['PHP_SELF']), oos_get_all_get_params(array('selected_box')) . 'selected_box=tools'),
'icon' => 'fa fa-database',
'active' => $bActive,
'contents' => array(
array(
'code' => $aContents['mail'],
'title' => BOX_TOOLS_MAIL,
'link' => oos_admin_files_boxes('mail', 'selected_box=tools')
),
array(
'code' => $aContents['newsletters'],
'title' => BOX_TOOLS_NEWSLETTER_MANAGER,
'link' => oos_admin_files_boxes('newsletters', 'selected_box=tools')
),
array(
'code' => $aContents['whos_online'],
'title' => BOX_TOOLS_WHOS_ONLINE,
'link' => oos_admin_files_boxes('whos_online', 'selected_box=tools')
),
),
);