|
|||
|
habt ihr da eine Idee was da passiert ist...
Sorry, dass ich den ganzen Code der categories.php poste, aber mir fällt sonst nichts mehr ein. Danke XTC - Beginner. <?php /* -------------------------------------------------------------- $Id: categories.php 1249 2005-09-27 12:06:40Z gwinger $ XT-Commerce - community made shopping http://www.xt-commerce.com Copyright (c) 2003 XT-Commerce -------------------------------------------------------------- based on: (c) 2000-2001 The Exchange Project (earlier name of osCommerce) (c) 2002-2003 osCommerce(categories.php,v 1.140 2003/03/24); www.oscommerce.com (c) 2003 nextcommerce (categories.php,v 1.37 2003/08/18); www.nextcommerce.org Released under the GNU General Public License -------------------------------------------------------------- Third Party contribution: Enable_Disable_Categories 1.3 Autor: Mikel Williams | mikel@ladykatcostumes.com New Attribute Manager v4b Autor: Mike G | mp3man@internetwork.net | http://downloads.ephing.com Category Descriptions (Version: 1.5 MS2) Original Author: Brian Lowe <blowe@wpcusrgrp.org> | Editor: Lord Illicious <shaolin-venoms@illicious.net> Customers Status v3.x (c) 2002-2003 Copyright Elari elari@free.fr | www.unlockgsm.com/dload-osc/ | CVS : http://cvs.sourceforge.net/cgi-bin/v...y=date#dirlist Released under the GNU General Public License --------------------------------------------------------------*/ require_once ('includes/application_top.php'); require_once ('includes/classes/'.FILENAME_IMAGEMANIPULATOR); require_once ('includes/classes/categories.php'); require_once (DIR_FS_INC.'xtc_get_tax_rate.inc.php'); require_once (DIR_FS_INC.'xtc_get_products_mo_images.inc.php'); require_once (DIR_WS_CLASSES.'currencies.php'); require_once (DIR_FS_INC.'xtc_wysiwyg.inc.php'); $currencies = new currencies(); $catfunc = new categories(); //this is used only by group_prices if ($_GET['function']) { switch ($_GET['function']) { case 'delete' : xtc_db_query("DELETE FROM personal_offers_by_customers_status_".(int) $_GET['statusID']." WHERE products_id = '".(int) $_GET['pID']."' AND quantity = '".(int) $_GET['quantity']."'"); break; } xtc_redirect(xtc_href_link(FILENAME_CATEGORIES, 'cPath='.$_GET['cPath'].'&action=new_product&pID='.(int) $_GET['pID'])); } // Multi-Status Change, separated from $_GET['action'] // --- MULTI STATUS --- if (isset ($_POST['multi_status_on'])) { //set multi_categories status=on if (is_array($_POST['multi_categories'])) { foreach ($_POST['multi_categories'] AS $category_id) { $catfunc->set_category_recursive($category_id, '1'); } } //set multi_products status=on if (is_array($_POST['multi_products'])) { foreach ($_POST['multi_products'] AS $product_id) { $catfunc->set_product_status($product_id, '1'); } } xtc_redirect(xtc_href_link(FILENAME_CATEGORIES, 'cPath='.$_GET['cPath'].'&'.xtc_get_all_get_params(array ('cPath', 'action', 'pID', 'cID')))); } if (isset ($_POST['multi_status_off'])) { //set multi_categories status=off if (is_array($_POST['multi_categories'])) { foreach ($_POST['multi_categories'] AS $category_id) { $catfunc->set_category_recursive($category_id, "0"); } } //set multi_products status=off if (is_array($_POST['multi_products'])) { foreach ($_POST['multi_products'] AS $product_id) { $catfunc->set_product_status($product_id, "0"); } } xtc_redirect(xtc_href_link(FILENAME_CATEGORIES, 'cPath='.$_GET['cPath'].'&'.xtc_get_all_get_params(array ('cPath', 'action', 'pID', 'cID')))); } // --- MULTI STATUS ENDS --- //regular actions if ($_GET['action']) { switch ($_GET['action']) { case 'setcflag' : if (($_GET['flag'] == '0') || ($_GET['flag'] == '1')) { if ($_GET['cID']) { $catfunc->set_category_recursive($_GET['cID'], $_GET['flag']); } } xtc_redirect(xtc_href_link(FILENAME_CATEGORIES, 'cPath='.$_GET['cPath'].'&cID='.$_GET['cID'])); break; //EOB setcflag case 'setpflag' : if (($_GET['flag'] == '0') || ($_GET['flag'] == '1')) { if ($_GET['pID']) { $catfunc->set_product_status($_GET['pID'], $_GET['flag']); } } if ($_GET['pID']) { xtc_redirect(xtc_href_link(FILENAME_CATEGORIES, 'cPath='.$_GET['cPath'].'&pID='.$_GET['pID'])); } else { xtc_redirect(xtc_href_link(FILENAME_CATEGORIES, 'cPath='.$_GET['cPath'].'&cID='.$_GET['cID'])); } break; //EOB setpflag case 'setsflag' : if (($_GET['flag'] == '0') || ($_GET['flag'] == '1')) { if ($_GET['pID']) { $catfunc->set_product_startpage($_GET['pID'], $_GET['flag']); if ($_GET['flag'] == '1') $catfunc->link_product($_GET['pID'], 0); } } if ($_GET['pID']) { xtc_redirect(xtc_href_link(FILENAME_CATEGORIES, 'cPath='.$_GET['cPath'].'&pID='.$_GET['pID'])); } else { xtc_redirect(xtc_href_link(FILENAME_CATEGORIES, 'cPath='.$_GET['cPath'].'&cID='.$_GET['cID'])); } break; //EOB setsflag case 'update_category' : $catfunc->insert_category($_POST, '', 'update'); break; case 'insert_category' : $catfunc->insert_category($_POST, $current_category_id); break; case 'update_product' : $catfunc->insert_product($_POST, '', 'update'); break; case 'insert_product' : $catfunc->insert_product($_POST, $current_category_id); break; case 'edit_crossselling' : $catfunc->edit_cross_sell($_GET); break; case 'multi_action_confirm' : // --- MULTI DELETE --- if (isset ($_POST['multi_delete_confirm'])) { //delete multi_categories if (is_array($_POST['multi_categories'])) { foreach ($_POST['multi_categories'] AS $category_id) { $catfunc->remove_categories($category_id); } } //delete multi_products if (is_array($_POST['multi_products']) && is_array($_POST['multi_products_categories'])) { foreach ($_POST['multi_products'] AS $product_id) { $catfunc->delete_product($product_id, $_POST['multi_products_categories'][$product_id]); } } } // --- MULTI DELETE ENDS --- // --- MULTI MOVE --- if (isset ($_POST['multi_move_confirm'])) { //move multi_categories if (is_array($_POST['multi_categories']) && xtc_not_null($_POST['move_to_category_id'])) { foreach ($_POST['multi_categories'] AS $category_id) { $dest_category_id = xtc_db_prepare_input($_POST['move_to_category_id']); if ($category_id != $dest_category_id) { $catfunc->move_category($category_id, $dest_category_id); } } } //move multi_products if (is_array($_POST['multi_products']) && xtc_not_null($_POST['move_to_category_id']) && xtc_not_null($_POST['src_category_id'])) { foreach ($_POST['multi_products'] AS $product_id) { $product_id = xtc_db_prepare_input($product_id); $src_category_id = xtc_db_prepare_input($_POST['src_category_id']); $dest_category_id = xtc_db_prepare_input($_POST['move_to_category_id']); $catfunc->move_product($product_id, $src_category_id, $dest_category_id); } } xtc_redirect(xtc_href_link(FILENAME_CATEGORIES, 'cPath='.$dest_category_id.'&'.xtc_get_all_get_par ams(array ('cPath', 'action', 'pID', 'cID')))); } // --- MULTI MOVE ENDS --- // --- MULTI COPY --- if (isset ($_POST['multi_copy_confirm'])) { //copy multi_categories if (is_array($_POST['multi_categories']) && (is_array($_POST['dest_cat_ids']) || xtc_not_null($_POST['dest_category_id']))) { $_SESSION['copied'] = array (); foreach ($_POST['multi_categories'] AS $category_id) { if (is_array($_POST['dest_cat_ids'])) { foreach ($_POST['dest_cat_ids'] AS $dest_category_id) { if ($_POST['copy_as'] == 'link') { $catfunc->copy_category($category_id, $dest_category_id, 'link'); } elseif ($_POST['copy_as'] == 'duplicate') { $catfunc->copy_category($category_id, $dest_category_id, 'duplicate'); } else { $messageStack->add_session('Copy type not specified.', 'error'); } } } elseif (xtc_not_null($_POST['dest_category_id'])) { if ($_POST['copy_as'] == 'link') { $catfunc->copy_category($category_id, $dest_category_id, 'link'); } elseif ($_POST['copy_as'] == 'duplicate') { $catfunc->copy_category($category_id, $dest_category_id, 'duplicate'); } else { $messageStack->add_session('Copy type not specified.', 'error'); } } } unset ($_SESSION['copied']); } //copy multi_products if (is_array($_POST['multi_products']) && (is_array($_POST['dest_cat_ids']) || xtc_not_null($_POST['dest_category_id']))) { foreach ($_POST['multi_products'] AS $product_id) { $product_id = xtc_db_prepare_input($product_id); if (is_array($_POST['dest_cat_ids'])) { foreach ($_POST['dest_cat_ids'] AS $dest_category_id) { $dest_category_id = xtc_db_prepare_input($dest_category_id); if ($_POST['copy_as'] == 'link') { $catfunc->link_product($product_id, $dest_category_id); } elseif ($_POST['copy_as'] == 'duplicate') { $catfunc->duplicate_product($product_id, $dest_category_id); } else { $messageStack->add_session('Copy type not specified.', 'error'); } } } elseif (xtc_not_null($_POST['dest_category_id'])) { $dest_category_id = xtc_db_prepare_input($_POST['dest_category_id']); if ($_POST['copy_as'] == 'link') { $catfunc->link_product($product_id, $dest_category_id); } elseif ($_POST['copy_as'] == 'duplicate') { $catfunc->duplicate_product($product_id, $dest_category_id); } else { $messageStack->add_session('Copy type not specified.', 'error'); } } } } xtc_redirect(xtc_href_link(FILENAME_CATEGORIES, 'cPath='.$dest_category_id.'&'.xtc_get_all_get_par ams(array ('cPath', 'action', 'pID', 'cID')))); } // --- MULTI COPY ENDS --- xtc_redirect(xtc_href_link(FILENAME_CATEGORIES, 'cPath='.$_GET['cPath'].'&'.xtc_get_all_get_params(array ('cPath', 'action', 'pID', 'cID')))); break; #EOB multi_action_confirm } //EOB switch action } //EOB if action // check if the catalog image directory exists if (is_dir(DIR_FS_CATALOG_IMAGES)) { if (!is_writeable(DIR_FS_CATALOG_IMAGES)) $messageStack->add(ERROR_CATALOG_IMAGE_DIRECTORY_NOT_WRITEABLE , 'error'); } else { $messageStack->add(ERROR_CATALOG_IMAGE_DIRECTORY_DOES_NOT_EXIS T, 'error'); } // end of pre-checks and actions, HTML output follows ?> <!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN"> <html <?php echo HTML_PARAMS; ?>> <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $_SESSION['language_charset']; ?>"> <title><?php echo TITLE; ?></title> <link rel="stylesheet" type="text/css" href="includes/stylesheet.css"> <script type="text/javascript" src="includes/general.js"></script> <script type="text/javascript" src="includes/javascript/categories.js"></script> <?php // Include WYSIWYG if is activated if (USE_WYSIWYG == 'true') { $query = xtc_db_query("SELECT code FROM ".TABLE_LANGUAGES." WHERE languages_id='".$_SESSION['languages_id']."'"); $data = xtc_db_fetch_array($query); // generate editor for categories EDIT $languages = xtc_get_languages(); ?> <script type="text/javascript" src="includes/modules/fckeditor/fckeditor.js"></script> <script type="text/javascript"> window.onload = function() {<?php // generate editor for categories if ($_GET['action'] == 'new_category' || $_GET['action'] == 'edit_category') { for ($i = 0; $i < sizeof($languages); $i ++) { echo xtc_wysiwyg('categories_description', $data['code'], $languages[$i]['id']); } } // generate editor for products if ($_GET['action'] == 'new_product') { for ($i = 0; $i < sizeof($languages); $i ++) { echo xtc_wysiwyg('products_description', $data['code'], $languages[$i]['id']); echo xtc_wysiwyg('products_short_description', $data['code'], $languages[$i]['id']); } } ?>} </script><?php } ?> </head> <body style="margin: 0; background-color: #FFFFFF"> <div id="spiffycalendar" class="text"></div> <!-- header //--> <?php require(DIR_WS_INCLUDES . 'header.php'); ?> <!-- header_eof //--> <!-- body //--> <table style="border:none; width:100%;" cellspacing="2" cellpadding="2"> <tr> <td class="columnLeft2" width="<?php echo BOX_WIDTH; ?>" valign="top"> <table style="border: none; width: <?php echo BOX_WIDTH; ?>;" cellspacing="1" cellpadding="1" class="columnLeft"> <!-- left_navigation //--> <?php require(DIR_WS_INCLUDES . 'column_left.php'); ?> <!-- left_navigation_eof //--> </table> </td> <!-- body_text //--> <td class="boxCenter" width="100%" valign="top"><table width="100%" cellspacing="0" cellpadding="2"> <?php //----- new_category / edit_category (when ALLOW_CATEGORY_DESCRIPTIONS is 'true') ----- if ($_GET['action'] == 'new_category' || $_GET['action'] == 'edit_category') { include (DIR_WS_MODULES.'new_category.php'); } elseif ($_GET['action'] == 'new_product') { include (DIR_WS_MODULES.'new_product.php'); } elseif ($_GET['action'] == 'edit_crossselling') { include (DIR_WS_MODULES.'cross_selling.php'); } else { //set $cPath to 0 if not set - FireFox workaround, didn't work when de/activating categories and $cPath wasn't set if (!$cPath) { $cPath = '0'; } include (DIR_WS_MODULES.'categories_view.php'); } ?> <!-- close tables from above modules //--> </table></td> <!-- body_text_eof //--> </tr> </table> <!-- body_eof //--> <!-- footer //--> <?php require(DIR_WS_INCLUDES . 'footer.php'); ?> <!-- footer_eof //--> </body> </html> <?php require(DIR_WS_INCLUDES . 'application_bottom.php'); ?> |
|
|||
|
Hm, bei manchen Browsersionen sind mir schon Probleme mit dem Editor bekannt, aber sich nicht bei allen außer Opera.
Am Besten mit dem Firefox testen und mit der Webdeveloper-Erweiterung mal evtl. Java-Script Fehler hier posten. Gruß Walter |
![]() |
| Lesezeichen |
| Stichworte |
| admin, artikelbeschreibungen, sehe, textfelder |
| Themen-Optionen | |
| Ansicht | |
|
|
Ähnliche Themen
|
||||
| Thema | Autor | Forum | Antworten | Letzter Beitrag |
| Kunden plötzlich admin!!!! BUG??? SP2.1 | n8schicht25 | Shopbereich | 11 | 22.11.2006 03:17 |