<?php
require('includes/application_top.php');
require('includes/functions/faqdesk_general.php');
require(DIR_WS_LANGUAGES . $language . '/' . FILENAME_FAQDESK_INFO);
// set application wide parameters
// this query set is for FAQDesk
$configuration_query = tep_db_query("select configuration_key as cfgKey, configuration_value as cfgValue from " . TABLE_FAQDESK_CONFIGURATION . "");
while ($configuration = tep_db_fetch_array($configuration_query)) {
define($configuration['cfgKey'], $configuration['cfgValue']);
}
// lets retrieve all $HTTP_GET_VARS keys and values..
$get_params = tep_get_all_get_params();
$get_params_back = tep_get_all_get_params(array('reviews_id')); // for back button
$get_params = substr($get_params, 0, -1); //remove trailing &
if ($get_params_back != '') {
$get_params_back = substr($get_params_back, 0, -1); //remove trailing &
} else {
$get_params_back = $get_params;
}
// caluculate something ??? like what? current category??
$get_backpath = tep_get_all_get_params();
$get_backpath_back = tep_get_all_get_params(array('faqdesk_id')); // for back button
$get_backpath = substr($get_backpath, 0, -14); //remove trailing &
if ($get_backpath_back != '') {
$get_backpath_back = substr($get_backpath_back, 0, -14); //remove trailing &
} else {
$get_backpath_back = $get_backpath;
}
// EOF Wolfen added code to retrieve backpath
// BOF Added by Wolfen
// calculate category path
if ($HTTP_GET_VARS['faqdeskPath']) {
$newsPath = $HTTP_GET_VARS['faqdeskPath'];
} elseif ($HTTP_GET_VARS['faqdesk_id'] && !$HTTP_GET_VARS['faqdeskPath']) {
$newsPath = faqdesk_get_product_path($HTTP_GET_VARS['faqdesk_id']);
} else {
$faqPath = '';
}
if (strlen($faqPath) > 0) {
$faqPath_array = faqdesk_parse_category_path($faqPath);
$faqPath = implode('_', $faqPath_array);
$current_category_id = $faqPath_array[(sizeof($faqPath_array)-1)];
} else {
$current_category_id = 0;
}
$breadcrumb->add(NAVBAR_TITLE, tep_href_link(FILENAME_FAQDESK_INDEX, '', 'NONSSL'));
//$breadcrumb->add(NAVBAR_TITLE, tep_href_link(FILENAME_FAQDESK_INDEX, '', 'NONSSL'));
//$breadcrumb->add($categories['categories_name'], tep_href_link(FILENAME_FAQDESK_INDEX, 'faqPath=', 'NONSSL'));
//$javascript = "support.js";
$content = CONTENT_FAQDESK_INFO;
require(DIR_WS_TEMPLATES . TEMPLATE_NAME . '/' . TEMPLATENAME_MAIN_PAGE);
require(DIR_WS_INCLUDES . 'application_bottom.php');
?>
<?php
/*
osCommerce, Open Source E-Commerce Solutions ---- http://www.oscommerce.com
Copyright (c) 2002 osCommerce
Released under the GNU General Public License
IMPORTANT NOTE:
This script is not part of the official osC distribution but an add-on contributed to the osC community.
Please read the NOTE and INSTALL documents that are provided with this file for further information and installation notes.
script name: FAQDesk
version: 1.01.0
date: 22-06-2004 (dd/mm/yyyy)
original author: Carsten aka moyashi
web site: www..com
modified code by: Wolfen aka 241
*/
?>