예제 #1
0
    // 		}
    // 		else
    // 		{
    // 			$category_depth = 'products'; // category has no products, but display the 'no products' message
    // 		}
    // 	}
}
// include template specific file name defines
$define_page = zen_get_file_directory(DIR_WS_LANGUAGES . $_SESSION['language'] . '/html_includes/', FILENAME_DEFINE_MAIN_PAGE, 'false');
require DIR_WS_MODULES . zen_get_module_directory('require_languages.php');
// set the product filters according to selected product type
$typefilter = 'default';
if (isset($_GET['typefilter'])) {
    $typefilter = $_GET['typefilter'];
}
require zen_get_index_filters_directory($typefilter . '_filter.php');
// query the database based on the selected filters
$listing = $db->Execute($listing_sql);
// category is invalid or has no products, so don't index it:
if ($category_depth == 'products' && $listing->RecordCount() == 0) {
    $robotsNoIndex = true;
}
// if only one product in this category, go directly to the product page, instead of displaying a link to just one item:
// if filter_id exists the 1 product redirect is ignored
if (SKIP_SINGLE_PRODUCT_CATEGORIES == 'True' and (!isset($_GET['filter_id']) and !isset($_GET['alpha_filter']))) {
    if ($listing->RecordCount() == 1 && (!isset($category_parent) || !$category_parent->fields['total'])) {
        zen_redirect(zen_href_link(zen_get_info_page($listing->fields['products_id']), ($cPath ? 'cPath=' . $cPath . '&' : '') . 'products_id=' . $listing->fields['products_id']));
    }
}
// This should be last line of the script:
$zco_notifier->notify('NOTIFY_HEADER_END_INDEX');
예제 #2
0
        $category_parent_query = $db->bindVars($category_parent_query, ':categoriesID', $current_category_id, 'integer');
        $category_parent = $db->Execute($category_parent_query);
        if ($category_parent->fields['total'] > 0) {
            $category_depth = 'nested';
            // navigate through the categories
        } else {
            $category_depth = 'products';
            // category has no products, but display the 'no products' message
        }
    }
}
// include template specific file name defines
$define_page = zen_get_file_directory(DIR_WS_LANGUAGES . $_SESSION['language'] . '/html_includes/', FILENAME_DEFINE_MAIN_PAGE, 'false');
require DIR_WS_MODULES . zen_get_module_directory('require_languages.php');
// set the product filters according to selected product type
$typefilter = 'default';
if (isset($_GET['typefilter'])) {
    $typefilter = $_GET['typefilter'];
}
require DIR_WS_INCLUDES . zen_get_index_filters_directory($typefilter . '_filter.php');
// query the database based on the selected filters
$listing = $db->Execute($listing_sql);
// if only one product in this category, go directly to the product page, instead of displaying a link to just one item:
// if filter_id exists the 1 product redirect is ignored
if (SKIP_SINGLE_PRODUCT_CATEGORIES == 'True' and (!isset($_GET['filter_id']) and !isset($_GET['alpha_filter']))) {
    if ($listing->RecordCount() == 1) {
        zen_redirect(zen_href_link(zen_get_info_page($listing->fields['products_id']), (0 ? 'cPath=' . $cPath . '&' : '') . 'products_id=' . $listing->fields['products_id']));
    }
}
// This should be last line of the script:
$zco_notifier->notify('NOTIFY_HEADER_END_INDEX');