/admin/categories.php
PHP | 1025 lines | 779 code | 147 blank | 99 comment | 167 complexity | a91cdd2d312df540c8c7d8bc509c66b5 MD5 | raw file
Possible License(s): AGPL-1.0, GPL-2.0, BSD-3-Clause
Large files files are truncated, but you can click here to view the full file
- <?php
- /**
- * @package admin
- * @copyright Copyright 2003-2007 Zen Cart Development Team
- * @copyright Portions Copyright 2003 osCommerce
- * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
- * @version $Id: categories.php 6991 2007-09-13 01:01:24Z drbyte $
- */
-
- require('includes/application_top.php');
-
- require(DIR_WS_MODULES . 'prod_cat_header_code.php');
-
- $action = (isset($_GET['action']) ? $_GET['action'] : '');
-
- if (!isset($_SESSION['categories_products_sort_order'])) {
- $_SESSION['categories_products_sort_order'] = CATEGORIES_PRODUCTS_SORT_ORDER;
- }
-
- if (!isset($_GET['reset_categories_products_sort_order'])) {
- $reset_categories_products_sort_order = $_SESSION['categories_products_sort_order'];
- }
-
- if (zen_not_null($action)) {
- switch ($action) {
- case 'set_categories_products_sort_order':
- $_SESSION['categories_products_sort_order'] = $_GET['reset_categories_products_sort_order'];
- $action='';
- zen_redirect(zen_href_link(FILENAME_CATEGORIES, 'cPath=' . $_GET['cPath'] . ((isset($_GET['pID']) and !empty($_GET['pID'])) ? '&pID=' . $_GET['pID'] : '') . ((isset($_GET['page']) and !empty($_GET['page'])) ? '&page=' . $_GET['page'] : '')));
- break;
- case 'set_editor':
- // Reset will be done by init_html_editor.php. Now we simply redirect to refresh page properly.
- $action='';
- zen_redirect(zen_href_link(FILENAME_CATEGORIES, 'cPath=' . $_GET['cPath'] . ((isset($_GET['pID']) and !empty($_GET['pID'])) ? '&pID=' . $_GET['pID'] : '') . ((isset($_GET['page']) and !empty($_GET['page'])) ? '&page=' . $_GET['page'] : '')));
- break;
-
- case 'update_category_status':
- // disable category and products including subcategories
- if (isset($_POST['categories_id'])) {
- $categories_id = zen_db_prepare_input($_POST['categories_id']);
-
- $categories = zen_get_category_tree($categories_id, '', '0', '', true);
-
- for ($i=0, $n=sizeof($categories); $i<$n; $i++) {
- $product_ids = $db->Execute("select products_id
- from " . TABLE_PRODUCTS_TO_CATEGORIES . "
- where categories_id = '" . (int)$categories[$i]['id'] . "'");
-
- while (!$product_ids->EOF) {
- $products[$product_ids->fields['products_id']]['categories'][] = $categories[$i]['id'];
- $product_ids->MoveNext();
- }
- }
-
- // change the status of categories and products
- zen_set_time_limit(600);
- for ($i=0, $n=sizeof($categories); $i<$n; $i++) {
- if ($_POST['categories_status'] == '1') {
- $categories_status = '0';
- $products_status = '0';
- } else {
- $categories_status = '1';
- $products_status = '1';
- }
-
- $sql = "update " . TABLE_CATEGORIES . " set categories_status='" . $categories_status . "'
- where categories_id='" . $categories[$i]['id'] . "'";
- $db->Execute($sql);
-
- // set products_status based on selection
- if ($_POST['set_products_status'] == 'set_products_status_nochange') {
- // do not change current product status
- } else {
- if ($_POST['set_products_status'] == 'set_products_status_on') {
- $products_status = '1';
- } else {
- $products_status = '0';
- }
-
- $sql = "select products_id from " . TABLE_PRODUCTS_TO_CATEGORIES . " where categories_id='" . $categories[$i]['id'] . "'";
- $category_products = $db->Execute($sql);
-
- while (!$category_products->EOF) {
- $sql = "update " . TABLE_PRODUCTS . " set products_status='" . $products_status . "' where products_id='" . $category_products->fields['products_id'] . "'";
- $db->Execute($sql);
- $category_products->MoveNext();
- }
- }
- } // for
-
- }
- zen_redirect(zen_href_link(FILENAME_CATEGORIES, 'cPath=' . $_GET['cPath'] . '&cID=' . $_GET['cID']));
- break;
-
- case 'remove_type':
- $sql = "delete from " . TABLE_PRODUCT_TYPES_TO_CATEGORY . "
- where category_id = '" . zen_db_prepare_input($_GET['cID']) . "'
- and product_type_id = '" . zen_db_prepare_input($_GET['type_id']) . "'";
-
- $db->Execute($sql);
-
- zen_remove_restrict_sub_categories($_GET['cID'], $_GET['type_id']);
-
- $action = "edit";
- zen_redirect(zen_href_link(FILENAME_CATEGORIES, 'action=edit_category&cPath=' . $_GET['cPath'] . '&cID=' . zen_db_prepare_input($_GET['cID'])));
- break;
- case 'setflag':
- if ( ($_GET['flag'] == '0') || ($_GET['flag'] == '1') ) {
- if (isset($_GET['pID'])) {
- zen_set_product_status($_GET['pID'], $_GET['flag']);
- }
-
- }
-
- zen_redirect(zen_href_link(FILENAME_CATEGORIES, 'cPath=' . $_GET['cPath'] . '&pID=' . $_GET['pID'] . (isset($_GET['page']) ? '&page=' . $_GET['page'] : '')));
- break;
- case 'insert_category':
- case 'update_category':
- if ( isset($_POST['add_type']) or isset($_POST['add_type_all']) ) {
- // check if it is already restricted
- $sql = "select * from " . TABLE_PRODUCT_TYPES_TO_CATEGORY . "
- where category_id = '" . zen_db_prepare_input($_POST['categories_id']) . "'
- and product_type_id = '" . zen_db_prepare_input($_POST['restrict_type']) . "'";
-
- $type_to_cat = $db->Execute($sql);
- if ($type_to_cat->RecordCount() < 1) {
- //@@TODO find all sub-categories and restrict them as well.
-
- $insert_sql_data = array('category_id' => zen_db_prepare_input($_POST['categories_id']),
- 'product_type_id' => zen_db_prepare_input($_POST['restrict_type']));
-
- zen_db_perform(TABLE_PRODUCT_TYPES_TO_CATEGORY, $insert_sql_data);
- /*
- // moved below so evaluated separately from current category
- if (isset($_POST['add_type_all'])) {
- zen_restrict_sub_categories($_POST['categories_id'], $_POST['restrict_type']);
- }
- */
- }
- // add product type restrictions to subcategories if not already set
- if (isset($_POST['add_type_all'])) {
- zen_restrict_sub_categories($_POST['categories_id'], $_POST['restrict_type']);
- }
- $action = "edit";
- zen_redirect(zen_href_link(FILENAME_CATEGORIES, 'action=edit_category&cPath=' . $cPath . '&cID=' . zen_db_prepare_input($_POST['categories_id'])));
- }
- if (isset($_POST['categories_id'])) $categories_id = zen_db_prepare_input($_POST['categories_id']);
- $sort_order = zen_db_prepare_input($_POST['sort_order']);
-
- $sql_data_array = array('sort_order' => (int)$sort_order);
-
- if ($action == 'insert_category') {
- $insert_sql_data = array('parent_id' => $current_category_id,
- 'date_added' => 'now()');
-
- $sql_data_array = array_merge($sql_data_array, $insert_sql_data);
-
- zen_db_perform(TABLE_CATEGORIES, $sql_data_array);
-
- $categories_id = zen_db_insert_id();
- // check if [arent is restricted
- $sql = "select parent_id from " . TABLE_CATEGORIES . "
- where categories_id = '" . $categories_id . "'";
-
- $parent_cat = $db->Execute($sql);
- if ($parent_cat->fields['parent_id'] != '0') {
- $sql = "select * from " . TABLE_PRODUCT_TYPES_TO_CATEGORY . "
- where category_id = '" . $parent_cat->fields['parent_id'] . "'";
- $has_type = $db->Execute($sql);
- if ($has_type->RecordCount() > 0 ) {
- while (!$has_type->EOF) {
- $insert_sql_data = array('category_id' => $categories_id,
- 'product_type_id' => $has_type->fields['product_type_id']);
- zen_db_perform(TABLE_PRODUCT_TYPES_TO_CATEGORY, $insert_sql_data);
- $has_type->moveNext();
- }
- }
- }
- } elseif ($action == 'update_category') {
- $update_sql_data = array('last_modified' => 'now()');
-
- $sql_data_array = array_merge($sql_data_array, $update_sql_data);
-
- zen_db_perform(TABLE_CATEGORIES, $sql_data_array, 'update', "categories_id = '" . (int)$categories_id . "'");
- }
-
- $languages = zen_get_languages();
- for ($i=0, $n=sizeof($languages); $i<$n; $i++) {
- $categories_name_array = $_POST['categories_name'];
- $categories_description_array = $_POST['categories_description'];
- $language_id = $languages[$i]['id'];
-
- // clean $categories_description when blank or just <p /> left behind
- $sql_data_array = array('categories_name' => zen_db_prepare_input($categories_name_array[$language_id]),
- 'categories_description' => ($categories_description_array[$language_id] == '<p />' ? '' : zen_db_prepare_input($categories_description_array[$language_id])));
-
- if ($action == 'insert_category') {
- $insert_sql_data = array('categories_id' => $categories_id,
- 'language_id' => $languages[$i]['id']);
-
- $sql_data_array = array_merge($sql_data_array, $insert_sql_data);
-
- zen_db_perform(TABLE_CATEGORIES_DESCRIPTION, $sql_data_array);
- } elseif ($action == 'update_category') {
- zen_db_perform(TABLE_CATEGORIES_DESCRIPTION, $sql_data_array, 'update', "categories_id = '" . (int)$categories_id . "' and language_id = '" . (int)$languages[$i]['id'] . "'");
- }
- }
-
- if ($_POST['categories_image_manual'] != '') {
- // add image manually
- $categories_image_name = $_POST['img_dir'] . $_POST['categories_image_manual'];
- $db->Execute("update " . TABLE_CATEGORIES . "
- set categories_image = '" . $categories_image_name . "'
- where categories_id = '" . (int)$categories_id . "'");
- } else {
- if ($categories_image = new upload('categories_image')) {
- $categories_image->set_destination(DIR_FS_CATALOG_IMAGES . $_POST['img_dir']);
- if ($categories_image->parse() && $categories_image->save()) {
- $categories_image_name = $_POST['img_dir'] . $categories_image->filename;
- }
- if ($categories_image->filename != 'none' && $categories_image->filename != '' && $_POST['image_delete'] != 1) {
- // save filename when not set to none and not blank
- $db->Execute("update " . TABLE_CATEGORIES . "
- set categories_image = '" . $categories_image_name . "'
- where categories_id = '" . (int)$categories_id . "'");
- } else {
- // remove filename when set to none and not blank
- if ($categories_image->filename != '' || $_POST['image_delete'] == 1) {
- $db->Execute("update " . TABLE_CATEGORIES . "
- set categories_image = ''
- where categories_id = '" . (int)$categories_id . "'");
- }
- }
- }
- }
-
- zen_redirect(zen_href_link(FILENAME_CATEGORIES, 'cPath=' . $cPath . '&cID=' . $categories_id));
- break;
-
- // bof: categories meta tags
- case 'update_category_meta_tags':
- // add or update meta tags
- //die('I SEE ' . $action . ' - ' . $_POST['categories_id']);
- $categories_id = $_POST['categories_id'];
- $languages = zen_get_languages();
- for ($i=0, $n=sizeof($languages); $i<$n; $i++) {
- $language_id = $languages[$i]['id'];
- $check = $db->Execute("select *
- from " . TABLE_METATAGS_CATEGORIES_DESCRIPTION . "
- where categories_id = '" . (int)$categories_id . "'
- and language_id = '" . (int)$language_id . "'");
- if ($check->RecordCount() > 0) {
- $action = 'update_category_meta_tags';
- } else {
- $action = 'insert_categories_meta_tags';
- }
-
- $sql_data_array = array('metatags_title' => zen_db_prepare_input($_POST['metatags_title'][$language_id]),
- 'metatags_keywords' => zen_db_prepare_input($_POST['metatags_keywords'][$language_id]),
- 'metatags_description' => zen_db_prepare_input($_POST['metatags_description'][$language_id]));
-
- if ($action == 'insert_categories_meta_tags') {
- $insert_sql_data = array('categories_id' => $categories_id,
- 'language_id' => $language_id);
- $sql_data_array = array_merge($sql_data_array, $insert_sql_data);
-
- zen_db_perform(TABLE_METATAGS_CATEGORIES_DESCRIPTION, $sql_data_array);
- } elseif ($action == 'update_category_meta_tags') {
- zen_db_perform(TABLE_METATAGS_CATEGORIES_DESCRIPTION, $sql_data_array, 'update', "categories_id = '" . (int)$categories_id . "' and language_id = '" . (int)$language_id . "'");
- }
- }
-
- zen_redirect(zen_href_link(FILENAME_CATEGORIES, 'cPath=' . $cPath . '&cID=' . $categories_id));
- break;
- // eof: categories meta tags
-
- case 'delete_category_confirm_old':
- // demo active test
- if (zen_admin_demo()) {
- $_GET['action']= '';
- $messageStack->add_session(ERROR_ADMIN_DEMO, 'caution');
- zen_redirect(zen_href_link(FILENAME_CATEGORIES, 'cPath=' . $cPath));
- }
- if (isset($_POST['categories_id'])) {
- $categories_id = zen_db_prepare_input($_POST['categories_id']);
-
- $categories = zen_get_category_tree($categories_id, '', '0', '', true);
- $products = array();
- $products_delete = array();
-
- for ($i=0, $n=sizeof($categories); $i<$n; $i++) {
- $product_ids = $db->Execute("select products_id
- from " . TABLE_PRODUCTS_TO_CATEGORIES . "
- where categories_id = '" . (int)$categories[$i]['id'] . "'");
-
- while (!$product_ids->EOF) {
- $products[$product_ids->fields['products_id']]['categories'][] = $categories[$i]['id'];
- $product_ids->MoveNext();
- }
- }
-
- reset($products);
- while (list($key, $value) = each($products)) {
- $category_ids = '';
-
- for ($i=0, $n=sizeof($value['categories']); $i<$n; $i++) {
- $category_ids .= "'" . (int)$value['categories'][$i] . "', ";
- }
- $category_ids = substr($category_ids, 0, -2);
-
- $check = $db->Execute("select count(*) as total
- from " . TABLE_PRODUCTS_TO_CATEGORIES . "
- where products_id = '" . (int)$key . "'
- and categories_id not in (" . $category_ids . ")");
- if ($check->fields['total'] < '1') {
- $products_delete[$key] = $key;
- }
- }
-
- // removing categories can be a lengthy process
- zen_set_time_limit(600);
- for ($i=0, $n=sizeof($categories); $i<$n; $i++) {
- zen_remove_category($categories[$i]['id']);
- }
-
- reset($products_delete);
- while (list($key) = each($products_delete)) {
- zen_remove_product($key);
- }
- }
-
-
- zen_redirect(zen_href_link(FILENAME_CATEGORIES, 'cPath=' . $cPath));
- break;
-
- //////////////////////////////////
- // delete new
-
- case 'delete_category_confirm':
- // demo active test
- if (zen_admin_demo()) {
- $_GET['action']= '';
- $messageStack->add_session(ERROR_ADMIN_DEMO, 'caution');
- zen_redirect(zen_href_link(FILENAME_CATEGORIES, 'cPath=' . $cPath));
- }
-
- // future cat specific deletion
- $delete_linked = 'true';
- if ($_POST['delete_linked'] == 'delete_linked_no') {
- $delete_linked = 'false';
- } else {
- $delete_linked = 'true';
- }
-
- // delete category and products
- if (isset($_POST['categories_id'])) {
- $categories_id = zen_db_prepare_input($_POST['categories_id']);
-
- // create list of any subcategories in the selected category,
- $categories = zen_get_category_tree($categories_id, '', '0', '', true);
-
- zen_set_time_limit(600);
-
- // loop through this cat and subcats for delete-processing.
- for ($i=0, $n=sizeof($categories); $i<$n; $i++) {
- $sql = "select products_id from " . TABLE_PRODUCTS_TO_CATEGORIES . " where categories_id='" . $categories[$i]['id'] . "'";
- $category_products = $db->Execute($sql);
-
- while (!$category_products->EOF) {
- $cascaded_prod_id_for_delete = $category_products->fields['products_id'];
- $cascaded_prod_cat_for_delete = array();
- $cascaded_prod_cat_for_delete[] = $categories[$i]['id'];
- //echo 'processing product_id: ' . $cascaded_prod_id_for_delete . ' in category: ' . $cascaded_prod_cat_for_delete . '<br>';
-
- // determine product-type-specific override script for this product
- $product_type = zen_get_products_type($category_products->fields['products_id']);
- // now loop thru the delete_product_confirm script for each product in the current category
- if (file_exists(DIR_WS_MODULES . $zc_products->get_handler($product_type) . '/delete_product_confirm.php')) {
- require(DIR_WS_MODULES . $zc_products->get_handler($product_type) . '/delete_product_confirm.php');
- } else {
- require(DIR_WS_MODULES . 'delete_product_confirm.php');
- }
-
- // THIS LINE COMMENTED BECAUSE IT'S DONE ALREADY DURING DELETE_PRODUCT_CONFIRM.PHP:
- //zen_remove_product($category_products->fields['products_id'], $delete_linked);
- $category_products->MoveNext();
- }
-
- zen_remove_category($categories[$i]['id']);
-
- } // end for loop
- }
- zen_redirect(zen_href_link(FILENAME_CATEGORIES, 'cPath=' . $cPath));
- break;
-
- // eof delete new
- /////////////////////////////////
- // @@TODO where is delete_product_confirm
-
- case 'move_category_confirm':
- if (isset($_POST['categories_id']) && ($_POST['categories_id'] != $_POST['move_to_category_id'])) {
- $categories_id = zen_db_prepare_input($_POST['categories_id']);
- $new_parent_id = zen_db_prepare_input($_POST['move_to_category_id']);
-
- $path = explode('_', zen_get_generated_category_path_ids($new_parent_id));
-
- if (in_array($categories_id, $path)) {
- $messageStack->add_session(ERROR_CANNOT_MOVE_CATEGORY_TO_PARENT, 'error');
-
- zen_redirect(zen_href_link(FILENAME_CATEGORIES, 'cPath=' . $cPath));
- } else {
-
- $sql = "select count(*) as count from " . TABLE_PRODUCTS_TO_CATEGORIES . " where categories_id='" . (int)$new_parent_id . "'";
- $zc_count_products = $db->Execute($sql);
-
- if ( $zc_count_products->fields['count'] > 0) {
- $messageStack->add_session(ERROR_CATEGORY_HAS_PRODUCTS, 'error');
- } else {
- $messageStack->add_session(SUCCESS_CATEGORY_MOVED, 'success');
- }
-
- $db->Execute("update " . TABLE_CATEGORIES . "
- set parent_id = '" . (int)$new_parent_id . "', last_modified = now()
- where categories_id = '" . (int)$categories_id . "'");
-
- // fix here - if this is a category with subcats it needs to know to loop through
- // reset all products_price_sorter for moved category products
- $reset_price_sorter = $db->Execute("select products_id from " . TABLE_PRODUCTS_TO_CATEGORIES . " where categories_id='" . (int)$categories_id . "'");
- while (!$reset_price_sorter->EOF) {
- zen_update_products_price_sorter($reset_price_sorter->fields['products_id']);
- $reset_price_sorter->MoveNext();
- }
-
- zen_redirect(zen_href_link(FILENAME_CATEGORIES, 'cPath=' . $new_parent_id));
- }
- } else {
- $messageStack->add_session(ERROR_CANNOT_MOVE_CATEGORY_TO_CATEGORY_SELF . $cPath, 'error');
- zen_redirect(zen_href_link(FILENAME_CATEGORIES, 'cPath=' . $cPath));
- }
-
- break;
- // @@TODO where is move_product_confirm
- // @@TODO where is insert_product
- // @@TODO where is update_product
-
- // attribute features
- case 'delete_attributes':
- zen_delete_products_attributes($_GET['products_id']);
- $messageStack->add_session(SUCCESS_ATTRIBUTES_DELETED . ' ID#' . $_GET['products_id'], 'success');
- $action='';
-
- // reset products_price_sorter for searches etc.
- zen_update_products_price_sorter($_GET['products_id']);
-
- zen_redirect(zen_href_link(FILENAME_CATEGORIES, 'cPath=' . $cPath . '&pID=' . $_GET['products_id'] . (isset($_GET['page']) ? '&page=' . $_GET['page'] : '')));
- break;
-
- case 'update_attributes_sort_order':
- zen_update_attributes_products_option_values_sort_order($_GET['products_id']);
- $messageStack->add_session(SUCCESS_ATTRIBUTES_UPDATE . ' ID#' . $_GET['products_id'], 'success');
- $action='';
- zen_redirect(zen_href_link(FILENAME_CATEGORIES, 'cPath=' . $cPath . '&pID=' . $_GET['products_id'] . (isset($_GET['page']) ? '&page=' . $_GET['page'] : '')));
- break;
-
- // attributes copy to product
- case 'update_attributes_copy_to_product':
- $copy_attributes_delete_first = ($_POST['copy_attributes'] == 'copy_attributes_delete' ? '1' : '0');
- $copy_attributes_duplicates_skipped = ($_POST['copy_attributes'] == 'copy_attributes_ignore' ? '1' : '0');
- $copy_attributes_duplicates_overwrite = ($_POST['copy_attributes'] == 'copy_attributes_update' ? '1' : '0');
- zen_copy_products_attributes($_POST['products_id'], $_POST['products_update_id']);
- // die('I would copy Product ID#' . $_POST['products_id'] . ' to a Product ID#' . $_POST['products_update_id'] . ' - Existing attributes ' . $_POST['copy_attributes']);
- $_GET['action']= '';
- zen_redirect(zen_href_link(FILENAME_CATEGORIES, 'cPath=' . $cPath . '&pID=' . $_GET['products_id'] . (isset($_GET['page']) ? '&page=' . $_GET['page'] : '')));
- break;
-
- // attributes copy to category
- case 'update_attributes_copy_to_category':
- $copy_attributes_delete_first = ($_POST['copy_attributes'] == 'copy_attributes_delete' ? '1' : '0');
- $copy_attributes_duplicates_skipped = ($_POST['copy_attributes'] == 'copy_attributes_ignore' ? '1' : '0');
- $copy_attributes_duplicates_overwrite = ($_POST['copy_attributes'] == 'copy_attributes_update' ? '1' : '0');
- $copy_to_category = $db->Execute("select products_id from " . TABLE_PRODUCTS_TO_CATEGORIES . " where categories_id='" . $_POST['categories_update_id'] . "'");
- while (!$copy_to_category->EOF) {
- zen_copy_products_attributes($_POST['products_id'], $copy_to_category->fields['products_id']);
- $copy_to_category->MoveNext();
- }
- // die('CATEGORIES - I would copy Product ID#' . $_POST['products_id'] . ' to a Category ID#' . $_POST['categories_update_id'] . ' - Existing attributes ' . $_POST['copy_attributes'] . ' Total Products ' . $copy_to_category->RecordCount());
-
- $_GET['action']= '';
- zen_redirect(zen_href_link(FILENAME_CATEGORIES, 'cPath=' . $cPath . '&pID=' . $_GET['products_id'] . (isset($_GET['page']) ? '&page=' . $_GET['page'] : '')));
- break;
- case 'new_product':
- if (isset($_GET['product_type'])) {
- // see if this category is restricted
- $pieces = explode('_',$_GET['cPath']);
- $cat_id = $pieces[sizeof($pieces)-1];
- // echo $cat_id;
- $sql = "select product_type_id from " . TABLE_PRODUCT_TYPES_TO_CATEGORY . " where category_id = '" . $cat_id . "'";
- $product_type_list = $db->Execute($sql);
- $sql = "select product_type_id from " . TABLE_PRODUCT_TYPES_TO_CATEGORY . " where category_id = '" . $cat_id . "' and product_type_id = '" . $_GET['product_type'] . "'";
- $product_type_good = $db->Execute($sql);
- if ($product_type_list->RecordCount() < 1 || $product_type_good->RecordCount() > 0) {
- $url = zen_get_all_get_params();
- $sql = "select type_handler from " . TABLE_PRODUCT_TYPES . " where type_id = '" . $_GET['product_type'] . "'";
- $handler = $db->Execute($sql);
- zen_redirect(zen_href_link($handler->fields['type_handler'] . '.php', zen_get_all_get_params()));
- } else {
- $messageStack->add(ERROR_CANNOT_ADD_PRODUCT_TYPE, 'error');
- }
- }
- break;
- }
- }
-
- // 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_EXIST, 'error');
- }
- ?>
- <!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 CHARSET; ?>">
- <title><?php echo TITLE; ?></title>
- <link rel="stylesheet" type="text/css" href="includes/stylesheet.css">
- <link rel="stylesheet" type="text/css" href="includes/cssjsmenuhover.css" media="all" id="hoverJS">
- <script language="javascript" src="includes/menu.js"></script>
- <script language="javascript" src="includes/general.js"></script>
- <script type="text/javascript">
- <!--
- function init()
- {
- cssjsmenu('navbar');
- if (document.getElementById)
- {
- var kill = document.getElementById('hoverJS');
- kill.disabled = true;
- }
- if (typeof _editor_url == "string") HTMLArea.replaceAll();
- }
- // -->
- </script>
- <?php if ($action != 'edit_category_meta_tags') { // bof: categories meta tags ?>
- <?php if ($editor_handler != '') include ($editor_handler); ?>
- <?php } // meta tags disable editor eof: categories meta tags?>
- </head>
- <body marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0" bgcolor="#FFFFFF" onLoad="init()">
- <div id="spiffycalendar" class="text"></div>
- <!-- header //-->
- <?php require(DIR_WS_INCLUDES . 'header.php'); ?>
- <!-- header_eof //-->
-
- <!-- body //-->
- <table border="0" width="100%" cellspacing="2" cellpadding="2">
- <?php if ($action == '') { ?>
- <tr>
- <td><table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td class="smallText" align="center" width="100" valign="top"><?php echo TEXT_LEGEND; ?></td>
- <td class="smallText" align="center" width="100" valign="top"><?php echo TEXT_LEGEND_STATUS_OFF . '<br />' . zen_image(DIR_WS_IMAGES . 'icon_red_on.gif', IMAGE_ICON_STATUS_OFF); ?></td>
- <td class="smallText" align="center" width="100" valign="top"><?php echo TEXT_LEGEND_STATUS_ON . '<br />' . zen_image(DIR_WS_IMAGES . 'icon_green_on.gif', IMAGE_ICON_STATUS_ON); ?></td>
- <td class="smallText" align="center" width="100" valign="top"><?php echo TEXT_LEGEND_LINKED . '<br />' . zen_image(DIR_WS_IMAGES . 'icon_yellow_on.gif', IMAGE_ICON_LINKED); ?></td>
- <td class="smallText" align="center" width="150" valign="top"><?php echo TEXT_LEGEND_META_TAGS . '<br />' . TEXT_YES . ' ' . TEXT_NO . '<br />' . zen_image(DIR_WS_IMAGES . 'icon_edit_metatags_on.gif', ICON_METATAGS_ON) . ' ' . zen_image(DIR_WS_IMAGES . 'icon_edit_metatags_off.gif', ICON_METATAGS_OFF); ?></td>
- </tr>
- </table></td>
- </tr>
- <tr>
- <td class="smallText" width="100%" align="right">
- <?php
- // toggle switch for editor
- echo TEXT_EDITOR_INFO . zen_draw_form('set_editor_form', FILENAME_CATEGORIES, '', 'get') . ' ' . zen_draw_pull_down_menu('reset_editor', $editors_pulldown, $current_editor_key, 'onChange="this.form.submit();"') . zen_hide_session_id() .
- zen_draw_hidden_field('cID', $cPath) .
- zen_draw_hidden_field('cPath', $cPath) .
- zen_draw_hidden_field('pID', $_GET['pID']) .
- zen_draw_hidden_field('page', $_GET['page']) .
- zen_draw_hidden_field('action', 'set_editor') .
- '</form>';
- ?>
- </td>
- </tr>
-
- <tr>
- <td class="smallText" width="100%" align="right">
- <?php
- // check for which buttons to show for categories and products
- $check_categories = zen_has_category_subcategories($current_category_id);
- $check_products = zen_products_in_category_count($current_category_id, false, false, 1);
-
- $zc_skip_products = false;
- $zc_skip_categories = false;
-
- if ($check_products == 0) {
- $zc_skip_products = false;
- $zc_skip_categories = false;
- }
- if ($check_categories == true) {
- $zc_skip_products = true;
- $zc_skip_categories = false;
- }
- if ($check_products > 0) {
- $zc_skip_products = false;
- $zc_skip_categories = true;
- }
-
- if ($zc_skip_products == true) {
- // toggle switch for display sort order
- $categories_products_sort_order_array = array(array('id' => '0', 'text' => TEXT_SORT_CATEGORIES_SORT_ORDER_PRODUCTS_NAME),
- array('id' => '1', 'text' => TEXT_SORT_CATEGORIES_NAME)
- );
- } else {
- // toggle switch for display sort order
- $categories_products_sort_order_array = array(array('id' => '0', 'text' => TEXT_SORT_PRODUCTS_SORT_ORDER_PRODUCTS_NAME),
- array('id' => '1', 'text' => TEXT_SORT_PRODUCTS_NAME),
- array('id' => '2', 'text' => TEXT_SORT_PRODUCTS_MODEL),
- array('id' => '3', 'text'=> TEXT_SORT_PRODUCTS_QUANTITY),
- array('id' => '4', 'text'=> TEXT_SORT_PRODUCTS_QUANTITY_DESC),
- array('id' => '5', 'text'=> TEXT_SORT_PRODUCTS_PRICE),
- array('id' => '6', 'text'=> TEXT_SORT_PRODUCTS_PRICE_DESC)
- );
- }
-
- echo TEXT_CATEGORIES_PRODUCTS_SORT_ORDER_INFO . zen_draw_form('set_categories_products_sort_order_form', FILENAME_CATEGORIES, '', 'get') . ' ' . zen_draw_pull_down_menu('reset_categories_products_sort_order', $categories_products_sort_order_array, $reset_categories_products_sort_order, 'onChange="this.form.submit();"') . zen_hide_session_id() .
- zen_draw_hidden_field('cID', $cPath) .
- zen_draw_hidden_field('cPath', $cPath) .
- zen_draw_hidden_field('pID', $_GET['pID']) .
- zen_draw_hidden_field('page', $_GET['page']) .
- zen_draw_hidden_field('action', 'set_categories_products_sort_order') .
- '</form>';
- ?>
- </td>
- </tr>
-
- <?php } ?>
- <tr>
- <!-- body_text //-->
- <td width="100%" valign="top">
- <?php
- require(DIR_WS_MODULES . 'category_product_listing.php');
-
- $heading = array();
- $contents = array();
- // Make an array of product types
- $sql = "select type_id, type_name from " . TABLE_PRODUCT_TYPES;
- $product_types = $db->Execute($sql);
- while (!$product_types->EOF) {
- $type_array[] = array('id' => $product_types->fields['type_id'], 'text' => $product_types->fields['type_name']);
- $product_types->MoveNext();
- }
- switch ($action) {
- case 'setflag_categories':
- $heading[] = array('text' => '<b>' . TEXT_INFO_HEADING_STATUS_CATEGORY . '</b>');
- $contents = array('form' => zen_draw_form('categories', FILENAME_CATEGORIES, 'action=update_category_status&cPath=' . $_GET['cPath'] . '&cID=' . $_GET['cID'], 'post', 'enctype="multipart/form-data"') . zen_draw_hidden_field('categories_id', $cInfo->categories_id) . zen_draw_hidden_field('categories_status', $cInfo->categories_status));
- $contents[] = array('text' => zen_get_category_name($cInfo->categories_id, $_SESSION['languages_id']));
- $contents[] = array('text' => '<br />' . TEXT_CATEGORIES_STATUS_WARNING . '<br /><br />');
- $contents[] = array('text' => TEXT_CATEGORIES_STATUS_INTRO . ' ' . ($cInfo->categories_status == '1' ? TEXT_CATEGORIES_STATUS_OFF : TEXT_CATEGORIES_STATUS_ON));
- if ($cInfo->categories_status == '1') {
- $contents[] = array('text' => '<br />' . TEXT_PRODUCTS_STATUS_INFO . ' ' . TEXT_PRODUCTS_STATUS_OFF . zen_draw_hidden_field('set_products_status_off', true));
- } else {
- $contents[] = array('text' => '<br />' . TEXT_PRODUCTS_STATUS_INFO . '<br />' .
- zen_draw_radio_field('set_products_status', 'set_products_status_on', true) . ' ' . TEXT_PRODUCTS_STATUS_ON . '<br />' .
- zen_draw_radio_field('set_products_status', 'set_products_status_off') . ' ' . TEXT_PRODUCTS_STATUS_OFF . '<br />' .
- zen_draw_radio_field('set_products_status', 'set_products_status_nochange') . ' ' . TEXT_PRODUCTS_STATUS_NOCHANGE);
- }
-
-
- // $contents[] = array('text' => '<br />' . TEXT_PRODUCTS_STATUS_INFO . '<br />' . zen_draw_radio_field('set_products_status', 'set_products_status_off', true) . ' ' . TEXT_PRODUCTS_STATUS_OFF . '<br />' . zen_draw_radio_field('set_products_status', 'set_products_status_on') . ' ' . TEXT_PRODUCTS_STATUS_ON);
-
- $contents[] = array('align' => 'center', 'text' => '<br />' . zen_image_submit('button_update.gif', IMAGE_UPDATE) . ' <a href="' . zen_href_link(FILENAME_CATEGORIES, 'cPath=' . $cPath) . '">' . zen_image_button('button_cancel.gif', IMAGE_CANCEL) . '</a>');
- break;
-
- case 'new_category':
- $heading[] = array('text' => '<b>' . TEXT_INFO_HEADING_NEW_CATEGORY . '</b>');
-
- $contents = array('form' => zen_draw_form('newcategory', FILENAME_CATEGORIES, 'action=insert_category&cPath=' . $cPath, 'post', 'enctype="multipart/form-data"'));
- $contents[] = array('text' => TEXT_NEW_CATEGORY_INTRO);
-
- $category_inputs_string = '';
- $languages = zen_get_languages();
- for ($i = 0, $n = sizeof($languages); $i < $n; $i++) {
- $category_inputs_string .= '<br />' . zen_image(DIR_WS_CATALOG_LANGUAGES . $languages[$i]['directory'] . '/images/' . $languages[$i]['image'], $languages[$i]['name']) . ' ' . zen_draw_input_field('categories_name[' . $languages[$i]['id'] . ']', '', zen_set_field_length(TABLE_CATEGORIES_DESCRIPTION, 'categories_name'));
- }
-
- $contents[] = array('text' => '<br />' . TEXT_CATEGORIES_NAME . $category_inputs_string);
- $category_inputs_string = '';
-
- for ($i = 0, $n = sizeof($languages); $i < $n; $i++) {
- $category_inputs_string .= '<br />' . zen_image(DIR_WS_CATALOG_LANGUAGES . $languages[$i]['directory'] . '/images/' . $languages[$i]['image'], $languages[$i]['name']) . ' ';
- if ($_SESSION['html_editor_preference_status']=='FCKEDITOR') {
- $oFCKeditor = new FCKeditor('categories_description[' . $languages[$i]['id'] . ']') ;
- $oFCKeditor->Value = zen_get_category_description($cInfo->categories_id, $languages[$i]['id']);
- $oFCKeditor->Width = '97%' ;
- $oFCKeditor->Height = '200' ;
- // $oFCKeditor->Config['ToolbarLocation'] = 'Out:xToolbar' ;
- // $oFCKeditor->Create() ;
- $output = $oFCKeditor->CreateHtml() ;
- $category_inputs_string .= '<br />' . $output;
-
- // $category_inputs_string .= '<IFRAME src= "' . DIR_WS_CATALOG . 'FCKeditor/fckeditor.html?FieldName=categories_description[' . $languages[$i]['id'] . ']&Upload=false&Browse=false&Toolbar=Short" width="97%" height="200" frameborder="no" scrolling="yes"></IFRAME>';
- // $category_inputs_string .= '<INPUT type="hidden" name="categories_description[' . $languages[$i]['id'] . ']" ' . 'value=' . "'" . zen_get_category_description($cInfo->categories_id, $languages[$i]['id']) . "'>";
- } else {
- $category_inputs_string .= zen_draw_textarea_field('categories_description[' . $languages[$i]['id'] . ']', 'soft', '100%', '20', zen_get_category_description($cInfo->categories_id, $languages[$i]['id']));
- }
- }
- $contents[] = array('text' => '<br />' . TEXT_CATEGORIES_DESCRIPTION . $category_inputs_string);
- $contents[] = array('text' => '<br />' . TEXT_CATEGORIES_IMAGE . '<br />' . zen_draw_file_field('categories_image'));
- $dir = @dir(DIR_FS_CATALOG_IMAGES);
- $dir_info[] = array('id' => '', 'text' => "Main Directory");
- while ($file = $dir->read()) {
- if (is_dir(DIR_FS_CATALOG_IMAGES . $file) && strtoupper($file) != 'CVS' && $file != "." && $file != "..") {
- $dir_info[] = array('id' => $file . '/', 'text' => $file);
- }
- }
- $dir->close();
- sort($dir_info);
- $default_directory = 'categories/';
-
- $contents[] = array('text' => TEXT_CATEGORIES_IMAGE_DIR . ' ' . zen_draw_pull_down_menu('img_dir', $dir_info, $default_directory));
- $contents[] = array('text' => '<br />' . TEXT_CATEGORIES_IMAGE_MANUAL . ' ' . zen_draw_input_field('categories_image_manual'));
-
- $contents[] = array('text' => '<br />' . TEXT_SORT_ORDER . '<br />' . zen_draw_input_field('sort_order', '', 'size="6"'));
- $contents[] = array('align' => 'center', 'text' => '<br />' . zen_image_submit('button_save.gif', IMAGE_SAVE) . ' <a href="' . zen_href_link(FILENAME_CATEGORIES, 'cPath=' . $cPath) . '">' . zen_image_button('button_cancel.gif', IMAGE_CANCEL) . '</a>');
- break;
- case 'edit_category':
- // echo 'I SEE ' . $_SESSION['html_editor_preference_status'];
- // set image delete
- $on_image_delete = false;
- $off_image_delete = true;
- $heading[] = array('text' => '<b>' . TEXT_INFO_HEADING_EDIT_CATEGORY . '</b>');
-
- $contents = array('form' => zen_draw_form('categories', FILENAME_CATEGORIES, 'action=update_category&cPath=' . $cPath, 'post', 'enctype="multipart/form-data"') . zen_draw_hidden_field('categories_id', $cInfo->categories_id));
- $contents[] = array('text' => TEXT_EDIT_INTRO);
-
- $languages = zen_get_languages();
-
- $category_inputs_string = '';
- for ($i = 0, $n = sizeof($languages); $i < $n; $i++) {
- $category_inputs_string .= '<br />' . zen_image(DIR_WS_CATALOG_LANGUAGES . $languages[$i]['directory'] . '/images/' . $languages[$i]['image'], $languages[$i]['name']) . ' ' . zen_draw_input_field('categories_name[' . $languages[$i]['id'] . ']', zen_get_category_name($cInfo->categories_id, $languages[$i]['id']), zen_set_field_length(TABLE_CATEGORIES_DESCRIPTION, 'categories_name'));
- }
- $contents[] = array('text' => '<br />' . TEXT_EDIT_CATEGORIES_NAME . $category_inputs_string);
- $category_inputs_string = '';
- for ($i = 0, $n = sizeof($languages); $i < $n; $i++) {
- $category_inputs_string .= '<br />' . zen_image(DIR_WS_CATALOG_LANGUAGES . $languages[$i]['directory'] . '/images/' . $languages[$i]['image'], $languages[$i]['name']) . ' ' ;
- if ($_SESSION['html_editor_preference_status']=='FCKEDITOR') {
- $oFCKeditor = new FCKeditor('categories_description[' . $languages[$i]['id'] . ']') ;
- $oFCKeditor->Value = zen_get_category_description($cInfo->categories_id, $languages[$i]['id']);
- $oFCKeditor->Width = '97%' ;
- $oFCKeditor->Height = '200' ;
- // $oFCKeditor->Config['ToolbarLocation'] = 'Out:xToolbar' ;
- // $oFCKeditor->Create() ;
- $output = $oFCKeditor->CreateHtml() ;
- $category_inputs_string .= '<br />' . $output;
- // $category_inputs_string .= '<IFRAME src= "' . DIR_WS_CATALOG . 'FCKeditor/fckeditor.html?FieldName=categories_description[' . $languages[$i]['id'] . ']&Upload=false&Browse=false&Toolbar=Short" width="97%" height="200" frameborder="no" scrolling="yes"></IFRAME>';
- // $category_inputs_string .= '<INPUT type="hidden" name="categories_description[' . $languages[$i]['id'] . ']" ' . 'value=' . "'" . zen_get_category_description($cInfo->categories_id, $languages[$i]['id']) . "'>";
- } else {
- $category_inputs_string .= zen_draw_textarea_field('categories_description[' . $languages[$i]['id'] . ']', 'soft', '100%', '20', zen_get_category_description($cInfo->categories_id, $languages[$i]['id']));
- }
- }
- $contents[] = array('text' => '<br />' . TEXT_CATEGORIES_DESCRIPTION . $category_inputs_string);
- $contents[] = array('text' => '<br />' . TEXT_EDIT_CATEGORIES_IMAGE . '<br />' . zen_draw_file_field('categories_image'));
-
- $dir = @dir(DIR_FS_CATALOG_IMAGES);
- $dir_info[] = array('id' => '', 'text' => "Main Directory");
- while ($file = $dir->read()) {
- if (is_dir(DIR_FS_CATALOG_IMAGES . $file) && strtoupper($file) != 'CVS' && $file != "." && $file != "..") {
- $dir_info[] = array('id' => $file . '/', 'text' => $file);
- }
- }
- $dir->close();
- sort($dir_info);
- $default_directory = substr( $cInfo->categories_image, 0,strpos( $cInfo->categories_image, '/')+1);
-
- $contents[] = array('text' => TEXT_CATEGORIES_IMAGE_DIR . ' ' . zen_draw_pull_down_menu('img_dir', $dir_info, $default_directory));
-
- $contents[] = array('text' => '<br />' . TEXT_CATEGORIES_IMAGE_MANUAL . ' ' . zen_draw_input_field('categories_image_manual'));
-
- $contents[] = array('text' => '<br />' . zen_info_image($cInfo->categories_image, $cInfo->categories_name));
- $contents[] = array('text' => '<br />' . $cInfo->categories_image);
- $contents[] = array('text' => '<br />' . TEXT_IMAGES_DELETE . ' ' . zen_draw_radio_field('image_delete', '0', $off_image_delete) . ' ' . TABLE_HEADING_NO . ' ' . zen_draw_radio_field('image_delete', '1', $on_image_delete) . ' ' . TABLE_HEADING_YES);
-
- $contents[] = array('text' => '<br />' . TEXT_EDIT_SORT_ORDER . '<br />' . zen_draw_input_field('sort_order', $cInfo->sort_order, 'size="6"'));
- $contents[] = array('align' => 'center', 'text' => '<br />' . zen_image_submit('button_save.gif', IMAGE_SAVE) . ' <a href="' . zen_href_link(FILENAME_CATEGORIES, 'cPath=' . $cPath . '&cID=' . $cInfo->categories_id) . '">' . zen_image_button('button_cancel.gif', IMAGE_CANCEL) . '</a>');
- $contents[] = array('text' => TEXT_RESTRICT_PRODUCT_TYPE . ' ' . zen_draw_pull_down_menu('restrict_type', $type_array) . ' <input type="submit" name="add_type_all" value="' . BUTTON_ADD_PRODUCT_TYPES_SUBCATEGORIES_ON . '">' . ' <input type="submit" name="add_type" value="' . BUTTON_ADD_PRODUCT_TYPES_SUBCATEGORIES_OFF . '">');
- $sql = "select * from " . TABLE_PRODUCT_TYPES_TO_CATEGORY . "
- where category_id = '" . $cInfo->categories_id . "'";
-
- $restrict_types = $db->Execute($sql);
- if ($restrict_types->RecordCount() > 0 ) {
- $contents[] = array('text' => '<br />' . TEXT_CATEGORY_HAS_RESTRICTIONS . '<br />');
- while (!$restrict_types->EOF) {
- $sql = "select type_name from " . TABLE_PRODUCT_TYPES . " where type_id = '" . $restrict_types->fields['product_type_id'] . "'";
- $type = $db->Execute($sql);
- $contents[] = array('text' => '<a href="' . zen_href_link(FILENAME_CATEGORIES, 'action=remove_type&cPath=' . $cPath . '&cID='.$cInfo->categories_id.'&type_id='.$restrict_types->fields['product_type_id']) . '">' . zen_image_button('button_delete.gif', IMAGE_DELETE) . '</a> ' . $type->fields['type_name'] . '<br />');
- $restrict_types->MoveNext();
- }
- }
- break;
- case 'delete_category':
- $heading[] = array('text' => '<b>' . TEXT_INFO_HEADING_DELETE_CATEGORY . '</b>');
-
- $contents = array('form' => zen_draw_form('categories', FILENAME_CATEGORIES, 'action=delete_category_confirm&cPath=' . $cPath) . zen_draw_hidden_field('categories_id', $cInfo->categories_id));
- $contents[] = array('text' => TEXT_DELETE_CATEGORY_INTRO);
- $contents[] = array('text' => '<br />' . TEXT_DELETE_CATEGORY_INTRO_LINKED_PRODUCTS);
- $contents[] = array('text' => '<br /><b>' . $cInfo->categories_name . '</b>');
- if ($cInfo->childs_count > 0) $contents[] = array('text' => '<br />' . sprintf(TEXT_DELETE_WARNING_CHILDS, $cInfo->childs_count));
- if ($cInfo->products_count > 0) $contents[] = array('text' => '<br />' . sprintf(TEXT_DELETE_WARNING_PRODUCTS, $cInfo->products_count));
- /*
- // future cat specific
- if ($cInfo->products_count > 0) {
- $contents[] = array('text' => '<br />' . TEXT_PRODUCTS_LINKED_INFO . '<br />' .
- zen_draw_radio_field('delete_linked', 'delete_linked_yes') . ' ' . TEXT_PRODUCTS_DELETE_LINKED_YES . '<br />' .
- zen_draw_radio_field('delete_linked', 'delete_linked_no', true) . ' ' . TEXT_PRODUCTS_DELETE_LINKED_NO);
- }
- */
- $contents[] = array('align' => 'center', 'text' => '<br />' . zen_image_submit('button_delete.gif', IMAGE_DELETE) . ' <a href="' . zen_href_link(FILENAME_CATEGORIES, 'cPath=' . $cPath . '&cID=' . $cInfo->categories_id) . '">' . zen_image_button('button_cancel.gif', IMAGE_CANCEL) . '</a>');
- break;
-
- // bof: categories meta tags
- case 'edit_category_meta_tags':
- $heading[] = array('text' => '<strong>' . TEXT_INFO_HEADING_EDIT_CATEGORY_META_TAGS . '</strong>');
-
- $contents = array('form' => zen_draw_form('categories', FILENAME_CATEGORIES, 'action=update_category_meta_tags&cPath=' . $cPath, 'post', 'enctype="multipart/form-data"') . zen_draw_hidden_field('categories_id', $cInfo->categories_id));
- $contents[] = array('text' => TEXT_EDIT_CATEGORIES_META_TAGS_INTRO . ' - <strong>' . $cInfo->categories_id . ' ' . $cInfo->categories_name . '</strong>');
-
- $languages = zen_get_languages();
-
- $category_inputs_string_metatags_title = '';
- for ($i = 0, $n = sizeof($languages); $i < $n; $i++) {
- $category_inputs_string_metatags_title .= '<br />' . zen_image(DIR_WS_CATALOG_LANGUAGES . $languages[$i]['directory'] . '/images/' . $languages[$i]['image'], $languages[$i]['metatags_title']) . ' ' . zen_draw_input_field('metatags_title[' . $languages[$i]['id'] . ']', zen_get_category_metatags_title($cInfo->categories_id, $languages[$i]['id']), zen_set_field_length(TABLE_METATAGS_CATEGORIES_DESCRIPTION, 'metatags_title'));
- }
- $contents[] = array('text' => '<br />' . TEXT_EDIT_CATEGORIES_META_TAGS_TITLE . $category_inputs_string_metatags_title);
-
- $category_inputs_string_metatags_keywords = '';
- for ($i = 0, $n = sizeof($languages); $i < $n; $i++) {
- $category_inputs_string_metatags_keywords .= '<br />' . zen_image(DIR_WS_CATALOG_LANGUAGES . $languages[$i]['directory'] . '/images/' . $languages[$i]['image'], $languages[$i]['metatags_keywords']) . ' ' ;
- $category_inputs_string_metatags_keywords .= zen_draw_textarea_field('metatags_keywords[' . $languages[$i]['id'] . ']', 'soft', '100%', '20', zen_get_category_metatags_keywords($cInfo->categories_id, $languages[$i]['id']));
- }
- $contents[] = array('text' => '<br />' . TEXT_EDIT_CATEGORIES_META_TAGS_KEYWORDS . $category_inputs_string_metatags_keywords);
-
- $category_inputs_string_metatags_description = '';
- for ($i = 0, $n = sizeof($languages); $i < $n; $i++) {
- $category_inputs_string_metatags_description .= '<br />' . zen_image(DIR_WS_CATALOG_LANGUAGES . $languages[$i]['directory'] . '/images/' . $languages[$i]['image'], $languages[$i]['name']) . ' ' ;
- $category_inputs_string_metatags_description .= zen_draw_textarea_field('metatags_description[' . $languages[$i]['id'] . ']', 'soft', '100%', '20', zen_get_category_metatags_description($cInfo->categories_id, $languages[$i]['id']));
- }
- $contents[] = array('text' => '<br />' . TEXT_EDIT_CATEGORIES_META_TAGS_DESCRIPTION . $category_inputs_string_metatags_description);
-
- $contents[] = array('align' => 'center', 'text' => '<br />' . zen_image_submit('button_save.gif', IMAGE_SAVE) . ' <a href="' . zen_href_link(FILENAME_CATEGORIES, 'cPath=' . $cPath . '&cID=' . $cInfo->categories_id) . '">' . zen_image_button('button_cancel.gif', IMAGE_CANCEL) . '</a>');
- break;
- // eof: categories meta tags
-
- case 'move_category':
- $heading[] = array('text' => '<b>' . TEXT_INFO_HEADING_MOVE_CATEGORY . '</b>');
-
- $contents = array('form' => zen_draw_form('categories', FILENAME_CATEGORIES, 'action=move_category_confirm&cPath=' . $cPath) . zen_draw_hidden_field('categories_id', $cInfo->categories_id));
- $contents[] = array('text' => sprintf(TEXT_MOVE_CATEGORIES_INTRO, $cInfo->categories_name));
- $contents[] = array('text' => '<br />' . sprintf(TEXT_MOVE, $cInfo->categories_name) . '<br />' . zen_draw_pull_down_menu('move_to_category_id', zen_get_category_tree(), $current_category_id));
- $contents[] = array('align' => 'center', 'text' => '<br />' . zen_image_submit('button_move.gif', IMAGE_MOVE) . ' <a href="' . zen_href_link(FILENAME_CATEGORIES, 'cPath=' . $cPath . '&cID=' . $cInfo->categories_id) . '">' . zen_image_button('button_cancel.gif', IMAGE_CANCEL) . '</a>');
- break;
- case 'delete_product':
- $heading[] = array('text' => '<b>' . TEXT_INFO_HEADING_DELETE_PRODUCT . '</b>');
-
- $contents = array('form' => zen_draw_form('products', FILENAME_CATEGORIES, 'action=delete_product_confirm&cPath=' . $cPath . (isset($_GET['page']) ? '&page=' . $_GET['page'] : '')) . zen_draw_hidden_field('products_id', $pInfo->products_id));
- $contents[] = array('text' => TEXT_DELETE_PRODUCT_INTRO);
- $contents[] = array('text' => '<br /><b>' . $pInfo->products_name . ' ID#' . $pInfo->products_id . '</b>');
-
- $product_categories_string = '';
- $product_categories = zen_generate_category_path($pInfo->products_id, 'product');
- for ($i = 0, $n …
Large files files are truncated, but you can click here to view the full file