Files
PrestaShop/js/helpAccess.js
2012-01-05 10:54:42 +00:00

23 lines
560 B
JavaScript

function getHelpButton(label){
var button = '';
$.ajax({
type: 'POST',
url: 'index.php',
data: {
'ajax' : 1,
'action' : 'helpAccess',
'item' : label,
'isoUser' : iso_user,
'country' : country_iso_code,
'version' : _PS_VERSION_
},
dataType: "json",
async : false,
success: function(msg) {
if(msg.content != 'none' && msg.content != '')
button = msg.content;
}
});
return button;
}