ebay_item_import.tpl
5.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<?php echo $header; ?><?php echo $column_left; ?>
<div id="content">
<div class="page-header">
<div class="container-fluid">
<div class="pull-right"><a href="<?php echo $return; ?>" data-toggle="tooltip" title="<?php echo $button_back; ?>" class="btn btn-default"><i class="fa fa-reply"></i></a></div>
<h1><?php echo $heading_title; ?></h1>
<ul class="breadcrumb">
<?php foreach ($breadcrumbs as $breadcrumb) { ?>
<li><a href="<?php echo $breadcrumb['href']; ?>"><?php echo $breadcrumb['text']; ?></a></li>
<?php } ?>
</ul>
</div>
</div>
<div class="container-fluid">
<?php if ($validation === true) { ?>
<?php if ($image_import > 0){ ?>
<div class="alert alert-danger"> <i class="fa fa-exclamation-circle"></i> <?php echo $image_import; ?> <?php echo $text_import_images_msg1; ?> <a href="<?php echo $image_import_link; ?>" target="_blank"><?php echo $text_import_images_msg2; ?></a> <?php echo $text_import_images_msg3; ?> </div>
<?php } ?>
<?php if ($maintenance == 1){ ?>
<div class="alert alert-danger"> <i class="fa fa-exclamation-circle"></i> <?php echo $error_maintenance; ?> </div>
<?php } ?>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title"><i class="fa fa-list"></i> <?php echo $heading_title; ?></h3>
</div>
<div class="panel-body">
<p><?php echo $text_sync_import_line1; ?></p>
<p><?php echo $text_sync_import_line3; ?></p>
<div class="attention"><?php echo $text_sync_server_size; ?> <strong><?php echo ini_get('post_max_size'); ?></strong> </div>
<div class="attention"><?php echo $text_sync_memory_size; ?> <strong><?php echo ini_get('memory_limit'); ?></strong> </div>
<form id="form-ebay-import" class="form-horizontal">
<div class="form-group">
<label class="col-sm-2 control-label"><span data-toggle="tooltip" title="<?php echo $help_import_categories; ?>"><?php echo $entry_import_categories; ?></span></label>
<div class="col-sm-10">
<input type="checkbox" name="import_categories" id="import_categories" value="1" />
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label"><span data-toggle="tooltip" title="<?php echo $help_import_description; ?>"><?php echo $entry_import_description; ?></span></label>
<div class="col-sm-10">
<input type="checkbox" name="import_description" id="import-description" value="1" />
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label"><span data-toggle="tooltip" title="<?php echo $help_import_item_advanced; ?>"><?php echo $entry_import_item_advanced; ?></span></label>
<div class="col-sm-10">
<input type="checkbox" name="import_advanced" id="import_advanced" value="1" />
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label" for="button-import"><?php echo $entry_import; ?></label>
<div class="col-sm-10"> <a class="btn btn-primary" id="button-import"><?php echo $button_import; ?></a> </div>
</div>
</form>
</div>
</div>
<?php }else{ ?>
<div class="alert alert-danger"> <i class="fa fa-exclamation-circle"></i> <?php echo $error_validation; ?> </div>
<?php } ?>
</div>
</div>
<script type="text/javascript"><!--
$('#button-import').bind('click', function() {
var answer = confirm("<?php echo $text_import_confirm;?>");
if (answer) {
var note_import = 0;
var import_description = $('#import-description:checked').val();
var import_advanced = $('#import_advanced:checked').val();
var import_categories = $('#import_categories:checked').val();
if (import_description == undefined){ import_description = 0; }else{ import_description = 1; }
if (import_advanced == undefined){ import_advanced = 0; }else{ import_advanced = 1; }
if (import_categories == undefined){ import_categories = 0; }else{ import_categories = 1; }
$.ajax({
url: 'index.php?route=openbay/ebay/importItems&token=<?php echo $token; ?>&desc='+import_description+'¬e='+note_import+'&advanced='+import_advanced+'&categories='+import_categories,
beforeSend: function(){
$('#button-import').empty().html('<i class="fa fa-cog fa-lg fa-spin"></i>').attr('disabled','disabled');
},
type: 'post',
dataType: 'json',
success: function(json) {
$('#button-import').empty().removeClass('btn-primary').addClass('btn-success').html('<?php echo $button_complete; ?>');
alert('<?php echo $text_import_notify; ?>');
},
error: function (xhr, ajaxOptions, thrownError) {
$('#button-import').empty().removeClass('btn-primary').addClass('btn-danger').html('<?php echo $error_import; ?>').removeAttr('disabled');
if (xhr.status != 0) { alert(thrownError + "\r\n" + xhr.statusText + "\r\n" + xhr.responseText); }
}
});
} else {
return 0;
}
});
//--></script>
<?php echo $footer; ?>