HEX
Server: Apache
System: Linux vps8051.dx3webs.com 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64
User: paiskincare (10000)
PHP: 5.6.40-52+ubuntu20.04.1+deb.sury.org+1
Disabled: opcache_get_status
Upload Files
File: /var/www/vhosts/paiskincare.com/httpdocs2/monkey75/advshipper_category_selector.php
<?php

/**
 * @package     ceon_advanced_shipper
 * @author      Conor Kerr <zen-cart.advanced-shipper@dev.ceon.net>
 * @copyright   Copyright 2007-2012 Ceon
 * @copyright   Portions Copyright 2003-2006 Zen Cart Development Team
 * @copyright   Portions Copyright 2003 osCommerce
 * @link        http://dev.ceon.net/web/zen-cart/advanced-shipper
 * @license     http://www.gnu.org/copyleft/gpl.html   GNU Public License V2.0
 * @version     $Id: advshipper_category_selector.php 981 2012-03-27 16:28:46Z conor $
 */

require('includes/application_top.php');

$languages = zen_get_languages();

function advshipperGetCategoryTree($parent_id = '0', $spacing = '', $exclude = '',
	$category_tree_array = '', $include_itself = false, $category_has_products = false,
	$limit = false)
{
	global $db;
	
	if ($limit) {
		$limit_count = " limit 1";
	} else {
		$limit_count = '';
	}
	
	if (!is_array($category_tree_array)) {
		$category_tree_array = array();
	}
	
	if ((sizeof($category_tree_array) < 1) && ($exclude != '0')) {
		$category_tree_array[] = array('id' => '0', 'text' => TEXT_TOP);
	}
	
	if ($include_itself) {
		$category = $db->Execute("select cd.categories_name
			from " . TABLE_CATEGORIES_DESCRIPTION . " cd
			where cd.language_id = '" . (int) $_SESSION['languages_id'] . "'
			and cd.categories_id = '" . (int) $parent_id . "'");
		
		$category_tree_array[] = array(
			'id' => $parent_id,
			'text' => $category->fields['categories_name']
			);
	}
	
	$categories = $db->Execute("select c.categories_id, cd.categories_name, c.parent_id
		from " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd
		where c.categories_id = cd.categories_id
		and cd.language_id = '" . (int) $_SESSION['languages_id'] . "'
		and c.parent_id = '" . (int) $parent_id . "'
		order by c.sort_order, cd.categories_name");
	
	while (!$categories->EOF) {
		$mark = '';
		
		if ($exclude != $categories->fields['categories_id']) {
			$category_tree_array[] = array(
				'id' => $categories->fields['categories_id'],
				'text' => $spacing . $categories->fields['categories_name'] . $mark
				);
		}
		
		$category_tree_array = advshipperGetCategoryTree($categories->fields['categories_id'],
			$spacing . '&nbsp;&nbsp;&nbsp;', $exclude, $category_tree_array, '',
			$category_has_products);
		
		$categories->MoveNext();
	}
	
	return $category_tree_array;
}

$categories = advshipperGetCategoryTree('', '', '0', '', '', true);

$num_categories = sizeof($categories);

?>
<!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 HEADING_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>
	<style type="text/css">
	.AdvancedShipperPageHeading { padding: 0.2em; padding-bottom: 1.2em; }
	fieldset { padding: 0.8em 0.8em; margin-bottom: 2.5em; }
	legend { font-weight: bold; font-size: 1.3em; }
	
	fieldset { background: #f7f6f0; box-shadow: inset 0px 0px 5px 1px #e6e5de; }
	
	.AdvancedShipperConfigLabel, .AdvancedShipperConfigField, .AdvancedShipperConfigDesc {
		vertical-align: top;
	}
	.AdvancedShipperConfigLabel {
		font-weight: bold;
		font-size: 1.05em;
		line-height: 1.3;
		padding-right: 1em;
	}
	.AdvancedShipperConfigLabel { width: 25%; }
	.AdvancedShipperConfigField { padding-top: 0.5em; padding-bottom: 1.3em; }
	.AdvancedShipperConfigIntro { padding-top: 0.5em; padding-bottom: 1.1em; }
	
	select {
		padding: 4px;
		font-size: 1.1em;
	}
	</style>
	<!--[if IE]>
	<style type="text/css">
	fieldset {
		position: relative;
		padding-top: 2.2em;
		margin-bottom: 1.8em;
	}
	legend {
		position: absolute;
		top: -0.55em;
		left: .2em;
		padding: 0;
	}
	</style>
	<![endif]-->
</head>
<body>


<!-- body //-->
<table border="0" width="100%" cellspacing="2" cellpadding="2">
	<tr>
<!-- body_text //-->
		<td width="100%" valign="top">
			<table border="0" width="100%" cellspacing="0" cellpadding="0">
				<tr>
					<td class="pageHeading AdvancedShipperPageHeading"><?php
						echo HEADING_TITLE; ?></td>
				</tr>
				<tr>
					<td>
						<?php
						echo zen_draw_form('category-form',
							FILENAME_ADVANCED_SHIPPER_CATEGORY_SELECTOR, '', 'post');
						
						echo zen_hide_session_id();
						?>
						<script language="javascript"  type="text/javascript">
						<!--
function CategoriesSelected()
{
	var category_ids_el = document.getElementById('category-ids');
	if (category_ids_el == undefined) {
		return;
	}
	var category_ids_selected = new Array();
	
	for (var i = 0; i < category_ids_el.options.length; i++) {
		if (category_ids_el.options[i].selected) {
			category_ids_selected.push(category_ids_el.options[i].value);
		}
	}
	
	var category_ids_selected_string = category_ids_selected.join('_');
	
	window.opener.advshipperAddCategories(category_ids_selected_string);
	
	window.close();
}

function CategoriesSelectionCancelled()
{
	window.close();
}
						//-->
						</script>
						<fieldset id="category_selection">
							<legend><?php echo TEXT_CATEGORIES_SELECTION_TITLE; ?></legend>
							<table border="0" width="100%" cellpadding="0" cellspacing="0">
								<tr>
									<td rowspan="2" class="AdvancedShipperConfigLabel"><label for="country"><?php
										echo TEXT_LABEL_SELECT_CATEGORIES; ?>:</label></td>
								</tr>
								<tr>
									<td class="AdvancedShipperConfigField">
										<?php if ($num_categories > 0) {
											$select_size = 15;
											
											if ($num_categories < $select_size) {
												$select_size = $num_categories;
											}
											
											echo zen_draw_pull_down_menu('category-ids',
												$categories, '',
												'id="category-ids" multiple="multiple" size="' .
												$select_size . '"');
											
											echo '<p>' . TEXT_SELECT_MULTIPLE_CATEGORIES . '</p>';
										} else {
											echo TEXT_NO_CATEGORIES;
										}?>
									</td>
								</tr>
							</table>
						</fieldset>
						<?php if (sizeof($categories) > 0) {
							echo zen_draw_input_field('categories_select_submit', IMAGE_SELECT,
								'id="categories_select_submit"' .
								' onclick="javascript:CategoriesSelected(); return false;"', false,
								'submit');
						}
						
						echo ' ' . zen_draw_input_field('categories_cancel_submit', IMAGE_CANCEL,
							'id="categories_cancel_submit"' .
							' onclick="javascript:CategoriesSelectionCancelled(); return false;"',
							false, 'submit');
						?>
						</form>
					</td>
				</tr>
			</table>
		</td>
<!-- body_text_eof //-->
	</tr>
</table>
<!-- body_eof //-->

</body>
</html>
<?php require(DIR_WS_INCLUDES . 'application_bottom.php'); ?>