<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>{$title}</title>
<link href="css/global.css" rel="stylesheet" type="text/css" />
<link href="../menu/css/dropdown/dropdown.css" media="all" rel="stylesheet" type="text/css" />
<link href="../menu/css/dropdown/themes/default/default.advanced.css" media="all" rel="stylesheet" type="text/css" />
<!--[if lt IE 7]>
<script type="text/javascript" src="../menu/js/jquery/jquery.js"></script>
<script type="text/javascript" src="../menu/js/jquery/jquery.dropdown.js"></script>
<![endif]-->
<!-- Initialize Dojo -->
{literal}
<script src='../dojo/dojo/dojo.js' type='text/javascript'></script>
<script type='text/javascript'>
//<!--
// The following function submits the data from the 'post-form' form
// to a PHP script located at
// 'http://www.dojoforum.com/demo-0.9/xhr/parse_form.php'
// The PHP script simply outputs a string in the format of
// 'Hello $name!', which is then put in the <div> w/ the id
// of 'response'.
//
// NOTE: As with xhrGet, you can also use handleAs to accept
// JSON objects in your load() function.
//dojo.require("dojo.style");
function show_cross_products(product_id, heading) {
//document.getElementById("attribute_set_id").value = set_id;
dojo.xhrPost ({
// The page that parses the POST request
url: 'list_cross_products.php?product_id='+product_id,
// Name of the Form we want to submit
//form: 'login',
// Loads this function if everything went ok
load: function (data) {
// Put the data into the appropriate <div>
//document.getElementById('loader2').style.display="";
dojo.byId('update_cross_products_box').innerHTML = data;
document.getElementById('selection_heading').innerHTML=heading;
},
// Call this function if an error happened
error: function (error) {
console.error ('Error: ', error);
}
});
}
function show_related_products(product_id, heading) {
//document.getElementById("attribute_set_id").value = set_id;
//alert(set_id);
dojo.xhrPost ({
// The page that parses the POST request
url: 'list_related_products.php?product_id='+product_id,
// Name of the Form we want to submit
//form: 'login',
// Loads this function if everything went ok
load: function (data) {
// Put the data into the appropriate <div>
//document.getElementById('loader2').style.display="";
dojo.byId('update_cross_products_box').innerHTML = data;
document.getElementById('selection_heading').innerHTML=heading;
},
// Call this function if an error happened
error: function (error) {
console.error ('Error: ', error);
}
});
}
function delete_cross_related(main_product_id, product_id, action) {
//document.getElementById("attribute_set_id").value = set_id;
//alert(set_id);
if(confirm("Are you sure that you want to delete this " + action + " product?")){
if(action=="related"){
heading="Related";
}else if(action=="cross"){heading="Cross-selling";}
dojo.xhrPost ({
// The page that parses the POST request
url: 'delete_cross_related.php?main_product_id='+main_product_id+'&product_id='+product_id+'&action='+action,
// Name of the Form we want to submit
//form: 'login',
// Loads this function if everything went ok
load: function (data) {
// Put the data into the appropriate <div>
//document.getElementById('loader2').style.display="";
dojo.byId('update_cross_products_box').innerHTML = data;
document.getElementById('selection_heading').innerHTML=heading;
},
// Call this function if an error happened
error: function (error) {
console.error ('Error: ', error);
}
});
}// end confirm
}
////////
//-->
</script>
{/literal}
</head>
<body>
<div id="page_container">
<div id="admin_header">{include file='admin_header.tpl'}</div>
<div id="admin_nav">{include file='admin_navigation.tpl'}</div>
<div id="contents">
<!-- Manage category controls -->
<div id="manage_cat_box">
{include file='mini_product_nav.tpl'}
<h3>Manage Cross-selling and related products</h3>
{include file='manage_cross_related_product_form.tpl'}
</div>
<!-- end manage categories -->
<!-- <div id="section_info_box">
<h4>Why to select image</h4>
</div>-->
<div style="clear:both;"></div>
</div>
<div id="admin_footer">{include file='admin_footer.tpl'}</div>
</div>
</body>
</html>