Hps_Securesubmit - Version 1.3.0

Version Notes

Added compatibility with AMASTY One Page Checkout

Download this release

Release Info

Developer Heartland Payment Systems
Extension Hps_Securesubmit
Version 1.3.0
Comparing to
See all releases


Code changes from version 1.2.91 to 1.3.0

app/code/community/Hps/Securesubmit/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <Hps_Securesubmit>
5
- <version>1.2.9</version>
6
  </Hps_Securesubmit>
7
  </modules>
8
  <global>
2
  <config>
3
  <modules>
4
  <Hps_Securesubmit>
5
+ <version>1.3.0</version>
6
  </Hps_Securesubmit>
7
  </modules>
8
  <global>
app/design/frontend/base/default/template/securesubmit/form.phtml CHANGED
@@ -21,9 +21,9 @@ if ($_loggedIn && $allow_card_saving) {
21
  <?php if($_loggedIn && $allow_card_saving && count($customerStoredCards)): ?>
22
  <?php $checked = true; ?>
23
  <?php foreach ($customerStoredCards as $key => $card): ?>
24
- <li>
25
  <label for="<?= $_code ?>_stored_card_select_<?= $card->getId() ?>" class="<?= $_code ?>_stored_card_label" style="width:100%;">
26
- <div class="saved-card-selector">
27
  <input type="radio" name="<?= $_code ?>_stored_card_select" id="<?= $_code ?>_stored_card_select_<?= $card->getId() ?>" value="<?= $card->getId() ?>" <?php if ($checked): ?>checked="checked"<?php $checked=false; endif ?>/>
28
  </div>
29
  <div class="cc-info">
@@ -135,8 +135,14 @@ SecureSubmitMagento.init({
135
  //]]>
136
  </script>
137
 
138
- <script type="text/javascript">
139
- (".saved-card-selector input").on('selected', function () {
140
- (this).parent().toggleClass('selected');
141
- });
 
 
 
 
 
142
  </script>
 
21
  <?php if($_loggedIn && $allow_card_saving && count($customerStoredCards)): ?>
22
  <?php $checked = true; ?>
23
  <?php foreach ($customerStoredCards as $key => $card): ?>
24
+ <li<?php if ($checked): ?> class="active"<?php endif ?>>
25
  <label for="<?= $_code ?>_stored_card_select_<?= $card->getId() ?>" class="<?= $_code ?>_stored_card_label" style="width:100%;">
26
+ <div class="saved-card-selector <?php if ($checked): ?>selected<?php endif ?>">
27
  <input type="radio" name="<?= $_code ?>_stored_card_select" id="<?= $_code ?>_stored_card_select_<?= $card->getId() ?>" value="<?= $card->getId() ?>" <?php if ($checked): ?>checked="checked"<?php $checked=false; endif ?>/>
28
  </div>
29
  <div class="cc-info">
135
  //]]>
136
  </script>
137
 
138
+ <?php if ($_loggedIn && $allow_card_saving && count($customerStoredCards)): ?>
139
+ <script type="text/javascript">$$('.saved-card-selector input').each(function(element){
140
+ element.addEventListener('click', function(e) {
141
+ $$('.saved-card-selector').each(function(element){
142
+ element.removeClassName('selected');
143
+ });
144
+ e.srcElement.parentNode.addClassName('selected');
145
+ });
146
+ });
147
  </script>
148
+ <?php endif ?>
js/securesubmit/checkout-form.js CHANGED
@@ -108,10 +108,11 @@ function securesubmitMultishipping(multiForm) {
108
  };
109
  return secureSubmit;
110
  }
 
111
 
112
  document.observe('dom:loaded', function () {
113
  // Override default Payment save handler
114
- if (typeof Payment != 'undefined') {
115
  if (typeof Payment.prototype._secureSubmitOldSave === 'undefined') {
116
  var oldPayment = Object.clone(Payment.prototype);
117
  Payment.prototype._secureSubmitOldSave = oldPayment.save;
@@ -235,7 +236,7 @@ document.observe('dom:loaded', function () {
235
  });
236
  }
237
 
238
- if (typeof OPC != 'undefined') {
239
  if (typeof OPC.prototype._secureSubmitOldSubmit === 'undefined') {
240
  var oldOPC = Object.clone(OPC.prototype);
241
  OPC.prototype._secureSubmitOldSubmit = oldOPC.submit;
@@ -294,7 +295,7 @@ document.observe('dom:loaded', function () {
294
  checkout.setLoadWaiting(false);
295
  } else if (response && response.token_value) {
296
  tokenField.value = response.token_value;
297
- typeField.value = response.card_type;
298
  lastFourField.value = response.card.number.substr(-4);
299
  typeField.value = response.card_type;
300
 
@@ -313,17 +314,154 @@ document.observe('dom:loaded', function () {
313
  });
314
  }
315
 
316
- // MageStore One Step Checkout
317
- if (typeof oscPlaceOrder == 'function') {
318
- var cloneFunction = function (that) {
319
- var temp = function temporary() { return that.apply(this, arguments); };
320
- for (var key in this) {
321
- if (this.hasOwnProperty(key)) {
322
- temp[key] = this[key];
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
323
  }
324
  }
325
- return temp;
326
  };
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
327
  var oscPlaceOrderOriginal = cloneFunction(oscPlaceOrder);
328
  oscPlaceOrder = function (btn) {
329
  var validator = new Validation('one-step-checkout-form');
@@ -342,30 +480,30 @@ document.observe('dom:loaded', function () {
342
  var storedcardId = radio.value;
343
  var storedcardType = $(radio.id + '_card_type').value;
344
  new Ajax.Request(window.payment.secureSubmitGetTokenDataUrlOSC, {
345
- method: 'post',
346
- parameters: {storedcard_id: storedcardId},
347
- onSuccess: function (response) {
348
- var data = response.responseJSON;
349
- if (data && data.token) {
350
- $('hps_securesubmit_expiration').value = parseInt(data.token.cc_exp_month);
351
- $('hps_securesubmit_expiration_yr').value = data.token.cc_exp_year;
352
- }
353
- secureSubmitResponseHandlerOSC({
354
- card_type: storedcardType,
355
- token_value: data.token.token_value,
356
- token_type: null, // 'supt'?
357
- token_expire: new Date().toISOString(),
358
- card: {
359
- number: data.token.cc_last4
360
- }
361
- }, btn);
362
- },
363
- onFailure: function() {
364
- alert('Unknown error. Please try again.');
365
- $('onestepcheckout-place-order-loading').show();
366
- $('onestepcheckout-button-place-order').removeClassName('onestepcheckout-btn-checkout');
367
- $('onestepcheckout-button-place-order').addClassName('place-order-loader');
368
- }
369
  });
370
  } else {
371
  if (SecureSubmitMagento.options.useIframes) {
@@ -531,6 +669,9 @@ document.observe('dom:loaded', function () {
531
  }
532
  });
533
  }
 
 
 
534
  });
535
 
536
  (function (window, document, undefined) {
@@ -550,7 +691,10 @@ document.observe('dom:loaded', function () {
550
  THIS.secureSubmitMS.secureSubmitPublicKey = THIS.options.publicKey;
551
  THIS.secureSubmitMS.secureSubmitGetTokenDataUrl = THIS.options.tokenDataUrl;
552
  document.observe('dom:loaded', function() {
553
- Event.observe('payment-continue', 'click', function(e){ Event.stop(e); THIS.secureSubmitMS.save(); });
 
 
 
554
  });
555
  }
556
 
@@ -575,7 +719,7 @@ document.observe('dom:loaded', function () {
575
  observeSavedCards: function () {
576
  if (THIS.options.loggedIn && THIS.options.allowCardSaving) {
577
  $$('[name="' + THIS.options.code + '_stored_card_select"]').each(function (el) {
578
- $(el).observe('click', function() {
579
  if ($(THIS.options.code + '_stored_card_select_new').checked) {
580
  $(THIS.options.code + '_cc_form').show();
581
  } else {
@@ -602,7 +746,7 @@ document.observe('dom:loaded', function () {
602
  url: THIS.options.giftBalanceUrl,
603
  type: 'GET',
604
  data: "giftcard_number=" + $j('#' + THIS.options.code + '_giftcard_number').val()
605
- + "&giftcard_pin=" + $j('#' + THIS.options.code + '_giftcard_pin').val(),
606
  success: function(data) {
607
  if (data.error) {
608
  alert('Error adding gift card: ' + data.message);
@@ -667,16 +811,16 @@ document.observe('dom:loaded', function () {
667
  },
668
  style: {
669
  '#heartland-field': {
670
- 'height': '40px',
671
- 'border-radius': '0px',
672
- 'border': '1px solid silver',
673
- 'letter-spacing': '2.5px',
674
- 'margin': '5px 0px 15px 0px',
675
- 'max-width': '365px',
676
- 'width': '100%',
677
- 'padding-left': '9px',
678
- 'font-size': '15px'
679
- },
680
  '@media only screen and (max-width: 479px)': {
681
  '#heartland-field': {
682
  'width': '95%'
@@ -687,8 +831,8 @@ document.observe('dom:loaded', function () {
687
  $(THIS.options.code + '_token').value = resp.token_value;
688
  $(THIS.options.code + '_cc_last_four').value = resp.card.number.substr(-4);
689
  $(THIS.options.code + '_cc_type').value = resp.card_type;
690
- $(THIS.options.code + '_cc_exp_month').value = resp.exp_month;
691
- $(THIS.options.code + '_cc_exp_year').value = resp.exp_year;
692
 
693
  THIS.completeCheckout();
694
  },
@@ -711,6 +855,27 @@ document.observe('dom:loaded', function () {
711
  }
712
  }
713
  });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
714
  } else {
715
  Heartland.Card.attachNumberEvents('#' + THIS.options.code + '_cc_number');
716
  Heartland.Card.attachExpirationEvents('#' + THIS.options.code + '_exp_date');
@@ -735,6 +900,8 @@ document.observe('dom:loaded', function () {
735
  IWD.OPC.preparePaymentResponse,
736
  'json'
737
  );
 
 
738
  } else if (window.oscPlaceOrderOriginal) {
739
  $('onestepcheckout-place-order-loading').show();
740
  $('onestepcheckout-button-place-order').removeClassName('onestepcheckout-btn-checkout');
@@ -756,4 +923,4 @@ document.observe('dom:loaded', function () {
756
  }
757
  };
758
  window.SecureSubmitMagento = THIS;
759
- }(window, window.document));
108
  };
109
  return secureSubmit;
110
  }
111
+ var secureSubmitAmastyCompleteCheckoutOriginal;
112
 
113
  document.observe('dom:loaded', function () {
114
  // Override default Payment save handler
115
+ if (typeof Payment !== 'undefined') {
116
  if (typeof Payment.prototype._secureSubmitOldSave === 'undefined') {
117
  var oldPayment = Object.clone(Payment.prototype);
118
  Payment.prototype._secureSubmitOldSave = oldPayment.save;
236
  });
237
  }
238
 
239
+ if (typeof OPC !== 'undefined') {
240
  if (typeof OPC.prototype._secureSubmitOldSubmit === 'undefined') {
241
  var oldOPC = Object.clone(OPC.prototype);
242
  OPC.prototype._secureSubmitOldSubmit = oldOPC.submit;
295
  checkout.setLoadWaiting(false);
296
  } else if (response && response.token_value) {
297
  tokenField.value = response.token_value;
298
+ typeField.value = response.card_type;
299
  lastFourField.value = response.card.number.substr(-4);
300
  typeField.value = response.card_type;
301
 
314
  });
315
  }
316
 
317
+
318
+ var cloneFunction = function (that) {
319
+ var temp = function temporary() {
320
+ return that.apply(this, arguments);
321
+ };
322
+ for (var key in this) {
323
+ if (this.hasOwnProperty(key)) {
324
+ temp[key] = this[key];
325
+ }
326
+ }
327
+ return temp;
328
+ };
329
+ // Amasty completeCheckout();
330
+
331
+ if (typeof completeCheckout === 'function' && document.getElementById('amscheckout-onepage')) {
332
+ secureSubmitAmastyCompleteCheckoutOriginal = cloneFunction(completeCheckout);
333
+
334
+ try {
335
+ var ele;
336
+ ele = document.createElement('div');
337
+ ele.id = 'co-payment-form-update';
338
+ var pEle = document.querySelector('#amscheckout-main > div.amscheckout > div > div.second-column > div:nth-child(3) > div.payment-method');
339
+ pEle.insertBefore(ele, pEle.childNodes[2]);
340
+ } catch (e) {
341
+ }
342
+ var container = document.getElementById('payment-buttons-container');
343
+ if (container && container.parentNode) {
344
+ // container.parentNode should always exist, but we're playing it safe above
345
+ container.parentNode.removeChild(container);
346
+ }
347
+
348
+ completeCheckout = function (btn) {
349
+
350
+ var validator = new Validation('amscheckout-onepage');
351
+ var form = $('amscheckout-onepage');
352
+
353
+
354
+ if (validator.validate()) {
355
+ var currentPayment = payment.currentMethod;
356
+ if (currentPayment != 'hps_securesubmit') {
357
+ secureSubmitAmastyCompleteCheckoutOriginal(btn);
358
+ return;
359
+ }
360
+
361
+ if ($('hps_securesubmit_exp_date') && $('hps_securesubmit_exp_date').value) {
362
+ var date = $('hps_securesubmit_exp_date').value.split('/');
363
+ $('hps_securesubmit_cc_exp_month').value = date[0].trim();
364
+ $('hps_securesubmit_cc_exp_year').value = date[1].trim();
365
+ }
366
+
367
+
368
+ if (secureSubmitUseStoredCardAOSC()) {
369
+ var radio = $$('[name="hps_securesubmit_stored_card_select"]:checked')[0];
370
+ var storedcardId = radio.value;
371
+ var storedcardType = $(radio.id + '_card_type').value;
372
+ new Ajax.Request(window.payment.secureSubmitGetTokenDataUrlOSC, {
373
+ method: 'post',
374
+ parameters: {storedcard_id: storedcardId},
375
+ onSuccess: function (response) {
376
+ var data = response.responseJSON;
377
+ secureSubmitResponseHandlerAOSC({
378
+ card_type: storedcardType,
379
+ token_value: data.token.token_value,
380
+ token_type: null, // 'supt'?
381
+ token_expire: new Date().toISOString(),
382
+ card: {
383
+ number: data.token.cc_last4
384
+ }
385
+ }, btn);
386
+ },
387
+ onFailure: function () {
388
+ alert('Unknown error. Please try again.');
389
+ }
390
+ });
391
+ } else {
392
+ if (SecureSubmitMagento.options.useIframes) {
393
+ SecureSubmitMagento.hps.Messages.post({
394
+ accumulateData: true,
395
+ action: 'tokenize',
396
+ message: SecureSubmitMagento.options.publicKey
397
+ }, 'cardNumber');
398
+ } else {
399
+ if ($('hps_securesubmit_exp_date') && $('hps_securesubmit_exp_date').value) {
400
+ var date = $('hps_securesubmit_exp_date').value.split('/');
401
+ $('hps_securesubmit_cc_exp_month').value = date[0].trim();
402
+ $('hps_securesubmit_cc_exp_year').value = date[1].trim();
403
+ }
404
+ (new Heartland.HPS({
405
+ publicKey: window.payment.secureSubmitPublicKeyOSC,
406
+ cardNumber: $('hps_securesubmit_cc_number').value,
407
+ cardCvv: $('hps_securesubmit_cvv_number').value,
408
+ cardExpMonth: $('hps_securesubmit_cc_exp_month').value,
409
+ cardExpYear: $('hps_securesubmit_cc_exp_year').value,
410
+ success: function (response) {
411
+ secureSubmitResponseHandlerAOSC(response, btn);
412
+ },
413
+ error: function (response) {
414
+ secureSubmitResponseHandlerAOSC(response, btn);
415
+ }
416
+ })).tokenize();
417
+ }
418
  }
419
  }
 
420
  };
421
+
422
+ secureSubmitUseStoredCardAOSC = function () {
423
+ var newRadio = $('hps_securesubmit_stored_card_select_new');
424
+ return !newRadio.checked;
425
+ var storedCheckbox = $('hps_securesubmit_stored_card_checkbox');
426
+ return storedCheckbox && storedCheckbox.checked;
427
+ };
428
+
429
+ secureSubmitResponseHandlerAOSC = function (response, btn) {
430
+ var tokenField = $('hps_securesubmit_token'),
431
+ typeField = $('hps_securesubmit_cc_type'),
432
+ lastFourField = $('hps_securesubmit_cc_last_four');
433
+ tokenField.value = typeField.value = lastFourField.value = null;
434
+
435
+ if ($('hps_securesubmit_exp_date') && $('hps_securesubmit_exp_date').value) {
436
+ var date = $('hps_securesubmit_exp_date').value.split('/');
437
+ $('hps_securesubmit_cc_exp_month').value = date[0].trim();
438
+ $('hps_securesubmit_cc_exp_year').value = date[1].trim();
439
+ }
440
+
441
+ if (SecureSubmitMagento.skipCreditCard) {
442
+ SecureSubmitMagento.completeCheckout();
443
+ return;
444
+ }
445
+
446
+ if (response && response.error) {
447
+ if (response.error.message) {
448
+ alert(response.error.message);
449
+ }
450
+
451
+ } else if (response && response.token_value) {
452
+ tokenField.value = response.token_value;
453
+ lastFourField.value = response.card.number.substr(-4);
454
+ typeField.value = response.card_type;
455
+
456
+ secureSubmitAmastyCompleteCheckoutOriginal(btn);
457
+ } else {
458
+ alert('Unexpected error.');
459
+ }
460
+ };
461
+ }
462
+
463
+ // MageStore One Step Checkout
464
+ if (typeof oscPlaceOrder === 'function') {
465
  var oscPlaceOrderOriginal = cloneFunction(oscPlaceOrder);
466
  oscPlaceOrder = function (btn) {
467
  var validator = new Validation('one-step-checkout-form');
480
  var storedcardId = radio.value;
481
  var storedcardType = $(radio.id + '_card_type').value;
482
  new Ajax.Request(window.payment.secureSubmitGetTokenDataUrlOSC, {
483
+ method: 'post',
484
+ parameters: {storedcard_id: storedcardId},
485
+ onSuccess: function (response) {
486
+ var data = response.responseJSON;
487
+ if (data && data.token) {
488
+ $('hps_securesubmit_expiration').value = parseInt(data.token.cc_exp_month);
489
+ $('hps_securesubmit_expiration_yr').value = data.token.cc_exp_year;
490
+ }
491
+ secureSubmitResponseHandlerOSC({
492
+ card_type: storedcardType,
493
+ token_value: data.token.token_value,
494
+ token_type: null, // 'supt'?
495
+ token_expire: new Date().toISOString(),
496
+ card: {
497
+ number: data.token.cc_last4
498
+ }
499
+ }, btn);
500
+ },
501
+ onFailure: function() {
502
+ alert('Unknown error. Please try again.');
503
+ $('onestepcheckout-place-order-loading').show();
504
+ $('onestepcheckout-button-place-order').removeClassName('onestepcheckout-btn-checkout');
505
+ $('onestepcheckout-button-place-order').addClassName('place-order-loader');
506
+ }
507
  });
508
  } else {
509
  if (SecureSubmitMagento.options.useIframes) {
669
  }
670
  });
671
  }
672
+
673
+
674
+
675
  });
676
 
677
  (function (window, document, undefined) {
691
  THIS.secureSubmitMS.secureSubmitPublicKey = THIS.options.publicKey;
692
  THIS.secureSubmitMS.secureSubmitGetTokenDataUrl = THIS.options.tokenDataUrl;
693
  document.observe('dom:loaded', function() {
694
+ Event.observe('payment-continue', 'click', function (e) {
695
+ Event.stop(e);
696
+ THIS.secureSubmitMS.save();
697
+ });
698
  });
699
  }
700
 
719
  observeSavedCards: function () {
720
  if (THIS.options.loggedIn && THIS.options.allowCardSaving) {
721
  $$('[name="' + THIS.options.code + '_stored_card_select"]').each(function (el) {
722
+ $(el).observe('click', function () {
723
  if ($(THIS.options.code + '_stored_card_select_new').checked) {
724
  $(THIS.options.code + '_cc_form').show();
725
  } else {
746
  url: THIS.options.giftBalanceUrl,
747
  type: 'GET',
748
  data: "giftcard_number=" + $j('#' + THIS.options.code + '_giftcard_number').val()
749
+ + "&giftcard_pin=" + $j('#' + THIS.options.code + '_giftcard_pin').val(),
750
  success: function(data) {
751
  if (data.error) {
752
  alert('Error adding gift card: ' + data.message);
811
  },
812
  style: {
813
  '#heartland-field': {
814
+ 'height': '40px',
815
+ 'border-radius': '0px',
816
+ 'border': '1px solid silver',
817
+ 'letter-spacing': '2.5px',
818
+ 'margin': '5px 0px 15px 0px',
819
+ 'max-width': '365px',
820
+ 'width': '100%',
821
+ 'padding-left': '9px',
822
+ 'font-size': '15px'
823
+ },
824
  '@media only screen and (max-width: 479px)': {
825
  '#heartland-field': {
826
  'width': '95%'
831
  $(THIS.options.code + '_token').value = resp.token_value;
832
  $(THIS.options.code + '_cc_last_four').value = resp.card.number.substr(-4);
833
  $(THIS.options.code + '_cc_type').value = resp.card_type;
834
+ $(THIS.options.code + '_cc_exp_month').value = resp.exp_month.trim();
835
+ $(THIS.options.code + '_cc_exp_year').value = resp.exp_year.trim();
836
 
837
  THIS.completeCheckout();
838
  },
855
  }
856
  }
857
  });
858
+
859
+ if (document.getElementById('amscheckout-onepage')) {
860
+
861
+ var ssbanner = document.getElementById('ss-banner');
862
+ var ccnumber = document.getElementById('cc-number');
863
+ var expirationdate = document.getElementById('expiration-dat');
864
+ var ccv = document.getElementById('payment-buttons-container');
865
+
866
+ if(ssbanner){
867
+ ssbanner.style.backgroundSize = '325px 40px';
868
+ }
869
+ if(ccnumber){
870
+ ccnumber.className = 'securesubmit_amasty_one_page_checkout';
871
+ }
872
+ if(expirationdate){
873
+ expirationdate.className = 'securesubmit_amasty_one_page_checkout';
874
+ }
875
+ if(ccv){
876
+ ccv.className = 'securesubmit_amasty_one_page_checkout';
877
+ }
878
+ }
879
  } else {
880
  Heartland.Card.attachNumberEvents('#' + THIS.options.code + '_cc_number');
881
  Heartland.Card.attachExpirationEvents('#' + THIS.options.code + '_exp_date');
900
  IWD.OPC.preparePaymentResponse,
901
  'json'
902
  );
903
+ } else if (window.secureSubmitAmastyCompleteCheckoutOriginal) {
904
+ secureSubmitAmastyCompleteCheckoutOriginal();
905
  } else if (window.oscPlaceOrderOriginal) {
906
  $('onestepcheckout-place-order-loading').show();
907
  $('onestepcheckout-button-place-order').removeClassName('onestepcheckout-btn-checkout');
923
  }
924
  };
925
  window.SecureSubmitMagento = THIS;
926
+ }(window, window.document));
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Hps_Securesubmit</name>
4
- <version>1.2.91</version>
5
  <stability>stable</stability>
6
  <license uri="https://github.com/SecureSubmit/heartland-magento-extension/blob/master/LICENSE">Custom</license>
7
  <channel>community</channel>
@@ -10,11 +10,11 @@
10
  <description>Use Heartland Payment Systems SecureSubmit platform to charge, authorize, void, refund and partial refund credit cards.&#xD;
11
  &#xD;
12
  Allow customers to store their cards for reduced friction at next checkout using our multi-use card tokenization process which helps reduce PCI scope.</description>
13
- <notes>Fixes compatibility issues with older PHP versions</notes>
14
  <authors><author><name>Heartland Payment Systems</name><user>markhagan</user><email>EntApp_DevPortal@e-hps.com</email></author></authors>
15
- <date>2016-10-04</date>
16
- <time>20:07:53</time>
17
- <contents><target name="magecommunity"><dir name="Hps"><dir name="Securesubmit"><dir name="Block"><dir name="Adminhtml"><file name="Form.php" hash="ab296bcf9018c73690bb0f5ab381381d"/><dir name="Paypal"><dir name="Settlement"><dir name="Report"><dir name="Form"><file name="Form.php" hash="da5a943526a729a4e78def46c63d0109"/></dir><file name="Form.php" hash="ecc3101a2a399dc71ae544bbe7bb9595"/><file name="Grid.php" hash="35b62c9ab2fe5b5e9a9394e11167f50c"/></dir><file name="Report.php" hash="19171fb1fad872b0ebff9692de1415fd"/></dir></dir></dir><file name="Form.php" hash="031741c6abad215430305c3758b3a362"/><file name="Info.php" hash="f733311f2a666fdd481fb26f57f50b63"/><dir name="Masterpass"><dir name="Client"><file name="Js.php" hash="ed427387b93d2753d8e8ada51c0d8f37"/></dir><file name="Connect.php" hash="b5e362f21c219ec61c4df7dff561ace6"/><file name="Form.php" hash="6abc4c67143380fad13efec247a18af4"/><file name="Info.php" hash="b8f714200c8f74cd8a0a9547fafc3637"/><dir name="Review"><file name="Billing.php" hash="c5bc2f64c2dc30e8ca1458cd286a16ee"/><file name="Details.php" hash="c324f315b2dfda8263151612ec73f513"/><file name="Shipping.php" hash="aeb5f38aa185e9d3acbb7ce5d4c4b841"/></dir><file name="Review.php" hash="b6e4dbd308c44215e50fa94dd22a32b0"/></dir><dir name="Paypal"><dir name="Credit"><file name="Form.php" hash="68fc4811e8f2d9a1b502454533fe5bca"/></dir><file name="Form.php" hash="776d2aab11db7d212061ca9a30936af1"/><dir name="Incontext"><file name="Js.php" hash="d09bf9157c0b7c5f6dba16d8cdac557d"/></dir><file name="Info.php" hash="9c1948c538383376b1dc1b4c76c31e95"/><dir name="Review"><file name="Billing.php" hash="62a22e1f5bd65c4d9369b5794779ffe9"/><file name="Details.php" hash="57d97c8a2c3b7ddac7dc4cda43e4363f"/><file name="Shipping.php" hash="694374b68714b6d58d9af8b9fb15d502"/></dir><file name="Review.php" hash="87c8f3bf319799b33170bec9f42e2544"/><file name="Shortcut.php" hash="26f13ae7afac41ce88fb1cd4042b61b5"/></dir></dir><dir name="Helper"><dir name="Altpayment"><file name="Abstract.php" hash="5fc29e9d6355660415934426d0ee624e"/></dir><file name="Data.php" hash="35a26dab0e14154f2ee80a498f788d7c"/><file name="Masterpass.php" hash="69489b7cae8b99fe216f522b19f3d448"/><file name="Paypal.php" hash="74d1d0885349c432016bd04f3211c4c2"/></dir><dir name="Model"><dir name="Altpayment"><file name="Cart.php" hash="1dc83b97c44463e954efc8ee1c9e62b8"/></dir><file name="Masterpass.php" hash="063acd12e22bdc26d7591cbabf7e3005"/><file name="Payment.php" hash="3b39f69c6826960fe99215f086148090"/><dir name="Paypal"><file name="Credit.php" hash="3548d6c4308df9d377cc1dd0d40f0f4d"/></dir><file name="Paypal.php" hash="c3eb2058ff6860e85a9310944c989301"/><file name="Report.php" hash="7f5e5bf0c652b37cf8c42eb553c8b3e0"/><dir name="Resource"><dir name="Report"><file name="Collection.php" hash="5870728a842922bbbff9c50173a90bd4"/></dir><file name="Report.php" hash="59598e2958a864119925c6e847b66121"/><file name="Setup.php" hash="8bdfbde89d786809d8aa2637efb1d2ae"/><dir name="Storedcard"><file name="Collection.php" hash="756c3c2d6dd5384f37847a028ac12fee"/></dir><file name="Storedcard.php" hash="d43320b704eb1e37c77a5ac20401c557"/></dir><file name="Session.php" hash="136b4146cea2f596847f0b838ec3f532"/><dir name="Source"><file name="Cctype.php" hash="d2dfff6147dc5c2748c7e9767b1fd1cb"/><file name="PaymentAction.php" hash="3c900b82e9af73a372d9f5f36bc1c264"/></dir><file name="Storedcard.php" hash="50897a56669c5938d4613579b603df93"/><dir name="System"><dir name="Config"><dir name="Backend"><file name="Proxy.php" hash="29ea9cb11927cd1e43055a42101eea36"/></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Hps"><dir name="Paypal"><file name="ReportsController.php" hash="914711bc008ec9e240918be7e77d1d54"/></dir></dir><file name="StoredcardController.php" hash="1e968134bf3b60a5f49544ddd1df8f03"/></dir><file name="GiftcardController.php" hash="dd15a7709121a3149fb30f77c385b18f"/><file name="MasterpassController.php" hash="2fb95214db3d3d017dd022743636ec50"/><file name="PaypalController.php" hash="962ce3dc3e738689d6ec6b122ed46001"/><file name="StoredcardController.php" hash="57116e86203df6f24a12fcd93186b534"/></dir><dir name="etc"><file name="adminhtml.xml" hash="8dc53c22d22cd633ebd6c06e7262c741"/><file name="config.xml" hash="8bbf7bf42d452c268a1c9394e808ea16"/><file name="system.xml" hash="2b4c4f26b48cb72f408c1c97ec3e4c21"/></dir><dir name="sql"><dir name="hps_securesubmit_setup"><file name="install-1.0.0.php" hash="d424731dcb784aad59dad0bcce431375"/><file name="mysql4-upgrade-1.0.0-1.0.1.php" hash="510826261ea81ea6a09d4ea84c59d41d"/><file name="mysql4-upgrade-1.0.1-1.1.0.php" hash="01e948ea2939f9b0b69bb6748adc53f2"/><file name="mysql4-upgrade-1.1.0-1.2.0.php" hash="84cf1a359fc5a5600e1d98ba0089d911"/></dir></dir></dir></dir></target><target name="mageweb"><dir name="js"><dir name="securesubmit"><file name="admin-checkout.js" hash="14d970828f50bb463dc3f7cdaca97e1d"/><file name="checkout-form.js" hash="5ec1bd79103794aad44a2bc2bf397cf3"/><dir name="masterpass"><file name="lightbox.js" hash="b534647c7c06b5ce90caf4cdd6166f91"/></dir><dir name="paypal"><file name="incontext.js" hash="e3810f12033fa9822db756a22622f799"/></dir><file name="secure.submit-1.0.1.js" hash="988d59dadbc272b869bc9e56cbd7518e"/></dir></dir></target><target name="magelib"><dir name="SecureSubmit"><file name="Hps.php" hash="aeeb39dae09306051eec2cf455fcb6a8"/><file name="LICENSE.txt" hash="de081f847a769f89be5a1f80862005ba"/><file name="PRIVACY.txt" hash="58cdc5fbbff24a84a838b0174b254f70"/><file name="README.md" hash="8320a396aa5544e61fe2e8f2adb09505"/><file name="index.php" hash="feabe5cc691b088d6ade3e04d6b120fc"/><dir name="src"><dir name="Abstractions"><file name="HpsAltPaymentServiceInterface.php" hash="bbbacdf42b798458ca46921b3ddb9eaf"/><file name="HpsBuilderAbstract.php" hash="6498e7b7e00716574a9dd238d1d7da5e"/><file name="HpsConfigInterface.php" hash="6541819ca5724269db6e1a9ed456d52e"/><file name="HpsGatewayServiceAbstract.php" hash="6e6631e0cfea0001a6fff4bf57d13068"/><file name="HpsGatewayServiceInterface.php" hash="c2b49802b328648d8510433b5c82f71f"/><file name="HpsPayPlanResourceAbstract.php" hash="df262df6345c4932626e60afecdeb478"/><file name="HpsPayPlanResourceInterface.php" hash="22dd33e354f46218d2872eab956d57c1"/></dir><dir name="Entities"><dir name="AltPayment"><file name="HpsAltPaymentAddToBatch.php" hash="1684714c0cd14d6d33288a44f43c9dd6"/><file name="HpsAltPaymentAuth.php" hash="4f2748e2b95cffed6bd0e62f75af71eb"/><file name="HpsAltPaymentCapture.php" hash="51a86062c15c6f8de15147b5b53f89a4"/><file name="HpsAltPaymentCreateSession.php" hash="4e83acd11a03e7dfcf904f2421d858b3"/><file name="HpsAltPaymentResponse.php" hash="860336d2015560f889c41773574b97ab"/><file name="HpsAltPaymentReturn.php" hash="0b9d8cb0f67ddf113b99ca64ab6019a3"/><file name="HpsAltPaymentSale.php" hash="f390a9a4af50f7a8a863c607f7e3357f"/><file name="HpsAltPaymentSessionInfo.php" hash="a5fdaea50db9f15eb762f4ca3512cae4"/><file name="HpsAltPaymentVoid.php" hash="429f0fbec31ae4842c494b0a8af47ddb"/><file name="HpsBuyerData.php" hash="4fd94d96a547378d2974fa386c89223f"/><file name="HpsCardinalMPIAddOrderNumberResponse.php" hash="a2f2c09eb9e7020e7af97819fe065dc3"/><file name="HpsCardinalMPIAuthenticateResponse.php" hash="6868b0bc55d8e3409684e795d1db92fc"/><file name="HpsCardinalMPIAuthorizeResponse.php" hash="566a64988246220b00da62078ae32068"/><file name="HpsCardinalMPIAuthresponseResponse.php" hash="a53fb4863feb909ccb0d2f2cc254562f"/><file name="HpsCardinalMPICaptureResponse.php" hash="29de876ce9bc632016fceab91dca22ac"/><file name="HpsCardinalMPILookupResponse.php" hash="7171aff90865b67db79559f7b2f579ba"/><file name="HpsCardinalMPIPreapprovalResponse.php" hash="e9408b385ca4f32de5f1adf96a36c42d"/><file name="HpsCardinalMPIRefundResponse.php" hash="71dbbff6f6383a19b0feb91f8771dbe5"/><file name="HpsCardinalMPIResponse.php" hash="d3729129967b1da049287e200e4d46e2"/><file name="HpsCardinalMPIVoidResponse.php" hash="2796de53634fccca806a4a4143779f81"/><file name="HpsLineItem.php" hash="4ff06a280975312365cf10a730636682"/><file name="HpsOrderData.php" hash="5d3ae0110d44f4786d4398861735a259"/><file name="HpsPaymentData.php" hash="2bd9ddc10ecdaebdbb5bf0e3cf71f642"/><file name="HpsShippingInfo.php" hash="63b621ebba4ae1711aca57073b0abec7"/></dir><dir name="Batch"><file name="HpsBatch.php" hash="d9af4664e64172cb8edaeaa1ea7c7337"/></dir><dir name="Check"><file name="HpsCheck.php" hash="8fb85bd4d608e72a9690285ec46fa6d2"/><file name="HpsCheckHolder.php" hash="58f865b34faf2790fef26066de775a15"/><file name="HpsCheckResponse.php" hash="ff3c752bc85554424e62ed7efbc053f2"/><file name="HpsCheckResponseDetails.php" hash="28928ceb2dea574603a376aed1691a90"/></dir><dir name="Credit"><file name="HpsAccountVerify.php" hash="527a69e5a39153b764e6c14e0d98bf34"/><file name="HpsAuthorization.php" hash="7ec1bbfa6efa5bc48432b5de81eda314"/><file name="HpsCPCData.php" hash="f246c4aa1eec482ba84966c563aeb970"/><file name="HpsCPCEdit.php" hash="f04b0089485ba9e7eacba8e15815ec97"/><file name="HpsCardHolder.php" hash="ffee4609a3ffa886a386a12dea3f4508"/><file name="HpsCharge.php" hash="512fb9e459b336a9e256d8f1e08e36b9"/><file name="HpsChargeExceptions.php" hash="c7df102696a205a4c5689c48878ac5f3"/><file name="HpsCreditCard.php" hash="6aa3d449b0648997c4c532c1e3603cbb"/><file name="HpsOfflineAuthorization.php" hash="6f11736d36cfde0d9d79c94e92f60c8b"/><file name="HpsRecurringBilling.php" hash="9da8f9b16179729b77615f04993b05bf"/><file name="HpsRefund.php" hash="aa4664916ebb94b8f2066fd7c17b0fd4"/><file name="HpsReportTransactionDetails.php" hash="f5bcb8f1532c9282760bb9b733107fac"/><file name="HpsReportTransactionSummary.php" hash="441b01c652db42213264980e6f693b40"/><file name="HpsReversal.php" hash="350191a2d38189ef8e098ed1f922c1d3"/><file name="HpsVoid.php" hash="bf6216cea2f130789a045fc226c54cd0"/></dir><dir name="Debit"><file name="HpsDebitAddValue.php" hash="9053c701093889f864dd36af208f4f71"/><file name="HpsDebitReturn.php" hash="519cb73c6fc4ce716453d5ff94f437a0"/><file name="HpsDebitReversal.php" hash="223f6db72f0219ef25eb0f0adec4e9be"/><file name="HpsDebitSale.php" hash="74fa1e1425cfe6294146c879a4049aa8"/></dir><dir name="Fluent"><file name="HpsBuilderAction.php" hash="8649cc2c53fd961f350070193fedb5c6"/><file name="HpsUnknownPropertyException.php" hash="d019e8645fae6f984ad7b7ea3cebb546"/></dir><dir name="Gift"><file name="HpsGiftCard.php" hash="c8bad2a5336689e3192ea223a97760bf"/><file name="HpsGiftCardActivate.php" hash="097ac7c36cae11b8c40a3f1414518e49"/><file name="HpsGiftCardAddValue.php" hash="131a9d7cbc711a4e3e85c66049028f30"/><file name="HpsGiftCardAlias.php" hash="133d2d4701c5aa88fa0eece6ee69de06"/><file name="HpsGiftCardBalance.php" hash="9b9fe395d218c79c55faf28fd736b431"/><file name="HpsGiftCardDeactivate.php" hash="323ca5a67c6ff0169925192952881db5"/><file name="HpsGiftCardReplace.php" hash="f122a7d924a56fcc406bc8b1c82ac2b2"/><file name="HpsGiftCardReversal.php" hash="88ba755e52f41311206add4fa8ee5e09"/><file name="HpsGiftCardReward.php" hash="f758e8c5462d336236ae0d257789cdaf"/><file name="HpsGiftCardSale.php" hash="0f758ef6653215be643abaea4964352a"/><file name="HpsGiftCardVoid.php" hash="f0294740f5b7f545167d5fb258f4dcdd"/></dir><file name="HpsAddress.php" hash="fcc67451ff9f1c483e2943cf6ee5c5fe"/><file name="HpsConsumer.php" hash="1254142dfa0821cbb0bf154cf51f34d2"/><file name="HpsDirectMarketData.php" hash="1925c204d19cb9233ec8178e3b5cdc50"/><file name="HpsEncryptionData.php" hash="1e4845abc6c42e8f0265e2679b05efb6"/><file name="HpsTokenData.php" hash="18ab9125315bb8e5f9cb272966dac22b"/><file name="HpsTrackData.php" hash="4656f37b7c4c777d0c63b4102efe5a1a"/><file name="HpsTransaction.php" hash="f109d2d26ba237afb2dc17bc287f63a9"/><file name="HpsTransactionDetails.php" hash="4e77261d0aced118b49e26ef786beace"/><file name="HpsTransactionHeader.php" hash="ebd21539f84425f0e2fc57c6049a26a1"/><file name="HpsTransactionStatus.php" hash="a5a67f8fe3780f66b045cc4314660dc5"/><dir name="PayPlan"><file name="HpsPayPlanAmount.php" hash="25706476e264124567d704f981745b13"/><file name="HpsPayPlanCustomer.php" hash="2714a7525fb3830fc018544ea0622ab5"/><file name="HpsPayPlanPaymentMethod.php" hash="fd3077d63e6f31c2d8a4c60c78a678ea"/><file name="HpsPayPlanSchedule.php" hash="4c9fe8bd7db0810fd108e51b81bdf590"/></dir><file name="index.php" hash="ce407ff5715c837d02b1aba7975bf512"/><file name=".DS_Store" hash="92d42bd310aa7f6dd74d14e6cdd2b9e9"/></dir><dir name="Infrastructure"><dir name="Enums"><file name="HpsACHType.php" hash="1ff5593689a404cb0179c2b5cb5fe19e"/><file name="HpsAccountType.php" hash="760d91e120f443c326e6c7586aa61092"/><file name="HpsCardBrand.php" hash="9532bb7c40811c114a1eeeffa8b9732c"/><file name="HpsCentinelCheckoutType.php" hash="7370920cb980bbfc54c741a981cd79bb"/><file name="HpsCheckType.php" hash="d60c676d93c8ada169deb14ddc8e64e7"/><file name="HpsDataEntryMode.php" hash="c323d884a7a305f9af647ea1d9a4177e"/><file name="HpsExceptionCodes.php" hash="95322648a2093ed3982c6bb724f3507a"/><file name="HpsGiftCardAliasAction.php" hash="ebcb27c6fb800e17693ed4af2e8a8943"/><file name="HpsItemChoiceTypePosResponseVer10Transaction.php" hash="686225a07738db2233a2228bec6baabf"/><file name="HpsPayPlanAccountType.php" hash="4d383c42a990fb077fae49386c08b870"/><file name="HpsPayPlanCustomerStatus.php" hash="3ff092e8dd97f2a2474fb64103cb238f"/><file name="HpsPayPlanPaymentMethodStatus.php" hash="b020c52de7987ed3011cb97e4d440c6a"/><file name="HpsPayPlanPaymentMethodType.php" hash="1f77c5c8528815f05803c1381cb4151a"/><file name="HpsPayPlanScheduleDuration.php" hash="05101e6fe3b725b43917b59770f2dbb1"/><file name="HpsPayPlanScheduleFrequency.php" hash="0b3f029c64315ee9c8701d23319941c1"/><file name="HpsPayPlanScheduleStatus.php" hash="3579b52ccf36e576fd2dfb36118716f6"/><file name="HpsSECCode.php" hash="551661613c127c068f139083338b92d1"/><file name="HpsTaxType.php" hash="ba0e05330880810e58370f2f3490ca81"/><file name="HpsTrackDataMethod.php" hash="446069e9786f9585c3490140b29ae52f"/><file name="HpsTransactionType.php" hash="a38b3f4c654a4fa3b2c2d64b8afacf24"/></dir><file name="HpsApiConnectionException.php" hash="ac5a8064a7c2a1616035a5702f36cd50"/><file name="HpsArgumentException.php" hash="855c43e88fc24b582cfe56875d7cff42"/><file name="HpsAuthenticationException.php" hash="6feb2fdc5499b460274524aa469d9a7d"/><file name="HpsCheckException.php" hash="94870f2438217b3275d05fb943a0a8c0"/><file name="HpsConfiguration.php" hash="010996727d89c485c1d11463e5c53a8e"/><file name="HpsCreditException.php" hash="a16bf1ecd6a2c866b7b40351aab3df34"/><file name="HpsCreditExceptionDetails.php" hash="d71c54b2846283a8f97aae74a747dfd9"/><file name="HpsException.php" hash="8d2025b7fae9f0f756341b876a0dab41"/><file name="HpsGatewayException.php" hash="cdd6db6c8436e3e78ee15cdd7a043a9d"/><file name="HpsGatewayExceptionDetails.php" hash="16dd36360e2237ca89e056c61766bcdd"/><file name="HpsInvalidRequestException.php" hash="7877e48463ef3f488bb92423ae445412"/><file name="HpsProcessorError.php" hash="ff7f1f2c5327417b4997f9e36fa7c887"/><file name="HpsProcessorException.php" hash="ba28a92f0e551053506dcc391c5bc431"/><file name="HpsProcessorExceptionDetails.php" hash="6a569aacf045c19ade6472a857a3a274"/><dir name="Validation"><file name="HpsGatewayResponseValidation.php" hash="06fb818263b18b58974a569d0c986667"/><file name="HpsInputValidation.php" hash="1f51837f70c322f2a7c1cc39df752b1a"/><file name="HpsIssuerResponseValidation.php" hash="613377f8ca249df078c909e4d7674bfb"/><file name="HpsProcessorResponseValidation.php" hash="ff19a569f8bdd6ef7b58a460cf06b4e8"/></dir><file name="index.php" hash="ce407ff5715c837d02b1aba7975bf512"/></dir><dir name="Services"><dir name="Fluent"><dir name="Gateway"><dir name="Check"><file name="HpsCheckServiceOverrideBuilder.php" hash="5b4a49a897f87d2a332182a1ccd67d0c"/><file name="HpsCheckServiceRecurringBuilder.php" hash="c86a2fd5165a65c78e38e3bbb1b9636c"/><file name="HpsCheckServiceReturnBuilder.php" hash="5ce46356468714f65ad827e1593977cc"/><file name="HpsCheckServiceSaleBuilder.php" hash="b823e74642e165772f5cb03beffacce7"/><file name="HpsCheckServiceVoidBuilder.php" hash="17305b04474285a8b64007c549180ba5"/></dir><dir name="Credit"><file name="HpsCreditServiceAuthorizeBuilder.php" hash="51997a17ee9a1aaacd40d9d2c8d69c17"/><file name="HpsCreditServiceCaptureBuilder.php" hash="fd6512f3b72f9051eaf7c3daeff2cb48"/><file name="HpsCreditServiceChargeBuilder.php" hash="3421b227fe594f0cb1533b4496c805bd"/><file name="HpsCreditServiceCpcEditBuilder.php" hash="7401c33a56c5a3c6a23f5f70101a4926"/><file name="HpsCreditServiceEditBuilder.php" hash="cdcf661c4182625212ec724b52eb8491"/><file name="HpsCreditServiceGetBuilder.php" hash="05b0cafe715a4d3ceb3c88b99b0c8dc1"/><file name="HpsCreditServiceListTransactionsBuilder.php" hash="a7765dfadc8e21177cc453a1e7dfd715"/><file name="HpsCreditServiceOfflineAuthBuilder.php" hash="d86d2425c6bbf28854a31d09a9f802b8"/><file name="HpsCreditServiceOfflineChargeBuilder.php" hash="0ee9ecf6b499a16f01fa2a7b94af00ca"/><file name="HpsCreditServicePrepaidAddValueBuilder.php" hash="997b48104fcdbd791a3b990515f2527e"/><file name="HpsCreditServicePrepaidBalanceInquiryBuilder.php" hash="7e7dd067d79281c32417b6d338825acd"/><file name="HpsCreditServiceRecurringBuilder.php" hash="560c8b86eeb9e4e468642eaa739ebe03"/><file name="HpsCreditServiceRefundBuilder.php" hash="4d5ab9c2a11c18a47e416bd90dffc5e8"/><file name="HpsCreditServiceReverseBuilder.php" hash="7960e9efa00ceb0d0c5368715c07d424"/><file name="HpsCreditServiceVerifyBuilder.php" hash="62027b344ee5444ccd1534358a405857"/><file name="HpsCreditServiceVoidBuilder.php" hash="0029756571343a1d8c6380874f6f5b6b"/></dir><dir name="Debit"><file name="HpsDebitServiceAddValueBuilder.php" hash="5f972b68a5afa062cbf911bfb3a946bc"/><file name="HpsDebitServiceChargeBuilder.php" hash="26aafce2a87bbbd8231a039209c49657"/><file name="HpsDebitServiceReturnBuilder.php" hash="2e11267e12bdd338b953db352a373961"/><file name="HpsDebitServiceReverseBuilder.php" hash="b088431d3ba0726d44cc418e92267958"/></dir><dir name="GiftCard"><file name="HpsGiftCardServiceActivateBuilder.php" hash="65e3ebd1c6ded3860b238d03e542fe3b"/><file name="HpsGiftCardServiceAddValueBuilder.php" hash="432582c9fd6617c86b373f5fe0b14fb1"/><file name="HpsGiftCardServiceAliasBuilder.php" hash="1b096debfa6678af2d6ddecfa82a638e"/><file name="HpsGiftCardServiceBalanceBuilder.php" hash="6bebaac04d059204a2408d693f77c449"/><file name="HpsGiftCardServiceDeactivateBuilder.php" hash="92b16b331414c40ea11de330bd447273"/><file name="HpsGiftCardServiceReplaceBuilder.php" hash="063e6b33a673c23553047a6f72927b2a"/><file name="HpsGiftCardServiceReverseBuilder.php" hash="2f7b96b1f9608cb7e3526ecb9b15558f"/><file name="HpsGiftCardServiceRewardBuilder.php" hash="242fbe42ab731b138e4d74be4cde4e9a"/><file name="HpsGiftCardServiceSaleBuilder.php" hash="8af2977da26e3707e42569ad7bf4c4a5"/><file name="HpsGiftCardServiceVoidBuilder.php" hash="fff556a586bb09d22f521a90d30fb809"/></dir><file name="HpsFluentCheckService.php" hash="e89511e006e914bdd4daf6765a49e97b"/><file name="HpsFluentCreditService.php" hash="58e0d0480066fec8c5c6e31eaa275d12"/><file name="HpsFluentDebitService.php" hash="63e86fe32a92c80cc5bd163283da6c64"/><file name="HpsFluentGiftCardService.php" hash="53697a755fc90256b940c74282693b0d"/></dir></dir><dir name="Gateway"><dir name="AltPayment"><file name="HpsAltPaymentService.php" hash="3d9cdbad50ccceb45d4d888018d2bab7"/><file name="HpsMasterPassService.php" hash="f5639448d09a38377f16434351201b09"/><file name="HpsPayPalService.php" hash="c91eebb0eca8bdda2505b78c4746db28"/></dir><file name="HpsBatchService.php" hash="2a4c11a4f7c78ec1e3b461b3803826c5"/><file name="HpsCentinelGatewayService.php" hash="40300a57982ccd5325b7bd0986a8bcc4"/><file name="HpsCheckService.php" hash="17eac57a5f3a6f24e31000325ad9ac1d"/><file name="HpsCreditService.php" hash="f7baf1cf04cd6024039ad90284f08db9"/><file name="HpsDebitService.php" hash="0ea76c01b3c817fcaea876bff28681b3"/><file name="HpsGiftCardService.php" hash="e1deb113c685845e2af2bb0ff793ea4d"/><file name="HpsPayPlanService.php" hash="ce5d2c003e72be8328634d92ab8ae6eb"/><file name="HpsRestGatewayService.php" hash="3a0b4217eb4e9d8c92d298914e539a04"/><file name="HpsSoapGatewayService.php" hash="969751eb742eeb7d7a99d5d61d2d2afb"/><file name="HpsTokenService.php" hash="b1dad4289201b399f89ad1d29a799d39"/><dir name="PayPlan"><file name="HpsPayPlanCustomerService.php" hash="cda074fca2230c26919a813cc2d71b5c"/><file name="HpsPayPlanPaymentMethodService.php" hash="61dd42308d203251f4483d68561c191b"/><file name="HpsPayPlanScheduleService.php" hash="e8c81640a7440a19ed3590894a31a1f1"/></dir></dir><file name="HpsCentinelConfig.php" hash="f43f7ea211a51883fb8a2173072027a8"/><file name="HpsServicesConfig.php" hash="f3d63dc7d089a8bcd248e4abc381e6a7"/><file name="index.php" hash="ce407ff5715c837d02b1aba7975bf512"/></dir><file name="index.php" hash="ce407ff5715c837d02b1aba7975bf512"/><file name=".DS_Store" hash="fb4d06cbd65ab29860d86984919afa4a"/></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="securesubmit.xml" hash="cc04e952cc17ea3462931a9e7a655316"/></dir><dir name="template"><dir name="securesubmit"><file name="form.phtml" hash="67a460ca8f034f4bfe3fbb8e7845f37f"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="securesubmit.xml" hash="410fda5ef3920f893f5a17ec379aa2da"/></dir><dir name="template"><dir name="securesubmit"><file name="form.phtml" hash="41358530ad900fe0da5778ffb97d1aaa"/><dir name="masterpass"><file name="connect.phtml" hash="b5f47624447a44958ce4fa004c58c319"/><file name="form.phtml" hash="039d6a174ac24c45ece0d14b92b6c9c4"/><file name="js.phtml" hash="274e871b2d8270e3224b9ce12794c2c5"/><file name="mark.phtml" hash="fe27b341b5fb034e90ac35c92ef998d4"/><dir name="review"><file name="details.phtml" hash="0dc5e1201e7e424f089c15fc83a1c70f"/><dir name="shipping"><file name="method.phtml" hash="cc426553636aa08840bee1c4778d89e4"/></dir></dir><file name="review.phtml" hash="cfc643de65b962ba27306587357f45d3"/></dir><dir name="paypal"><dir name="incontext"><file name="js.phtml" hash="16b4ad23ea05464a55bb0390cd72e248"/><file name="payment.phtml" hash="b32d269057984f656422609015dd7d91"/></dir><dir name="review"><file name="details.phtml" hash="0dc5e1201e7e424f089c15fc83a1c70f"/><dir name="shipping"><file name="method.phtml" hash="cc426553636aa08840bee1c4778d89e4"/></dir></dir><file name="review.phtml" hash="cfc643de65b962ba27306587357f45d3"/><file name="shortcut.phtml" hash="268bfac86e653ec5981cd201075f4105"/></dir><file name="storedcards.phtml" hash="d083493f42af257cdb1949a8cbd8855b"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Hps_Securesubmit.xml" hash="d5aed3f48a45f8e611b68d1e6f34c959"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="securesubmit"><dir name="css"><file name="hps-styles.css" hash="71c9488fb3a4671a4e5a1ef1dc398042"/></dir><dir name="images"><file name="ajax-loader.gif" hash="f48ee069890b16455c3ddcacee9b5f75"/><file name="arrow@2x.png" hash="ecc6766f32ae007e48f1cac2cefae87b"/><file name="bg_x.png" hash="c321c67f6929326129426c9e83207ea3"/><file name="cvv1.png" hash="0cba150037737255b0b750fd8b7aa3a8"/><file name="delete-hover.svg" hash="b50f601a53505660e093c126a84773b2"/><file name="delete.png" hash="0797e40a65fe0cf10252e788f40bee50"/><file name="delete.svg" hash="0793be8c20ffb397cc933d6c6de4df75"/><file name="heartland-logo.png" hash="0a15c70514f1449af4a98931b62d6844"/><file name="heartland-logo@1x.png" hash="d1982d3c613fee22120b06494aa92bfa"/><file name="heartland-logo@2x.png" hash="24daf8c6f920ed7b9c5aad79143f76b5"/><file name="icon_sprite.png" hash="e15f0103ef5ebe3baf48960bb9ccfaab"/><file name="icon_sprite@2x.png" hash="156b591cc9464429bc3b614cbbe636fd"/><file name="ss-input-amex@2x.png" hash="3a0311a7ae08337686031ee12d428b7b"/><file name="ss-inputcard-amex@2x.png" hash="a20df89111cf94aa5d653f44bf7e8cc8"/><file name="ss-inputcard-blank@2x.png" hash="1f84a3d28f8604a0ae1f019d10325c51"/><file name="ss-inputcard-discover@2x.png" hash="c17c70f6dc3908b1c066d0c0aa53a9bc"/><file name="ss-inputcard-jcb@2x.png" hash="bc353bc2e57fe2e2b689b69ce1826389"/><file name="ss-inputcard-mastercard@2x.png" hash="48cae147cae1ef0121e090df928632c0"/><file name="ss-inputcard-visa@2x.png" hash="c8bd7bf3aa1fff3226b5ce571ddefa42"/><file name="ss-lock.png" hash="430fbebc08387bcb43fed60ba14e5da1"/><file name="ss-lock@2x.png" hash="2772a5c4b0e7d622cb8773fd575108d2"/><file name="ss-logo.png" hash="a6e2017f773c3ebd82318cb5417a09dd"/><file name="ss-saved-amex@2x.png" hash="7aff4d28b217bceeb2d1fe139998e980"/><file name="ss-saved-discover@2x.png" hash="f5b5e76e49f3e02b677117068cd1d3fa"/><file name="ss-saved-jcb@2x.png" hash="58923ad29390b36556e61de061417fc8"/><file name="ss-saved-mastercard@2x.png" hash="19d69c364291adf7e87355fbe79ebd38"/><file name="ss-saved-visa@2x.png" hash="c3d935832dfcde4dba793e91665315b7"/><file name="ss-shield@1x.png" hash="473a87521ec93d14c906cd2415833f33"/><file name="ss-shield@2x.png" hash="ceada08d149bd9c2d63706e67eb7b1e9"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir></dir></dir></dir></dir></target></contents>
18
  <compatible/>
19
  <dependencies><required><php><min>5.2.0</min><max>5.6.28</max></php></required></dependencies>
20
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Hps_Securesubmit</name>
4
+ <version>1.3.0</version>
5
  <stability>stable</stability>
6
  <license uri="https://github.com/SecureSubmit/heartland-magento-extension/blob/master/LICENSE">Custom</license>
7
  <channel>community</channel>
10
  <description>Use Heartland Payment Systems SecureSubmit platform to charge, authorize, void, refund and partial refund credit cards.&#xD;
11
  &#xD;
12
  Allow customers to store their cards for reduced friction at next checkout using our multi-use card tokenization process which helps reduce PCI scope.</description>
13
+ <notes>Added compatibility with AMASTY One Page Checkout</notes>
14
  <authors><author><name>Heartland Payment Systems</name><user>markhagan</user><email>EntApp_DevPortal@e-hps.com</email></author></authors>
15
+ <date>2016-11-08</date>
16
+ <time>15:04:00</time>
17
+ <contents><target name="magecommunity"><dir name="Hps"><dir name="Securesubmit"><dir name="Block"><dir name="Adminhtml"><file name="Form.php" hash="ab296bcf9018c73690bb0f5ab381381d"/><dir name="Paypal"><dir name="Settlement"><dir name="Report"><dir name="Form"><file name="Form.php" hash="da5a943526a729a4e78def46c63d0109"/></dir><file name="Form.php" hash="ecc3101a2a399dc71ae544bbe7bb9595"/><file name="Grid.php" hash="35b62c9ab2fe5b5e9a9394e11167f50c"/></dir><file name="Report.php" hash="19171fb1fad872b0ebff9692de1415fd"/></dir></dir></dir><file name="Form.php" hash="031741c6abad215430305c3758b3a362"/><file name="Info.php" hash="f733311f2a666fdd481fb26f57f50b63"/><dir name="Masterpass"><dir name="Client"><file name="Js.php" hash="ed427387b93d2753d8e8ada51c0d8f37"/></dir><file name="Connect.php" hash="b5e362f21c219ec61c4df7dff561ace6"/><file name="Form.php" hash="6abc4c67143380fad13efec247a18af4"/><file name="Info.php" hash="b8f714200c8f74cd8a0a9547fafc3637"/><dir name="Review"><file name="Billing.php" hash="c5bc2f64c2dc30e8ca1458cd286a16ee"/><file name="Details.php" hash="c324f315b2dfda8263151612ec73f513"/><file name="Shipping.php" hash="aeb5f38aa185e9d3acbb7ce5d4c4b841"/></dir><file name="Review.php" hash="b6e4dbd308c44215e50fa94dd22a32b0"/></dir><dir name="Paypal"><dir name="Credit"><file name="Form.php" hash="68fc4811e8f2d9a1b502454533fe5bca"/></dir><file name="Form.php" hash="776d2aab11db7d212061ca9a30936af1"/><dir name="Incontext"><file name="Js.php" hash="d09bf9157c0b7c5f6dba16d8cdac557d"/></dir><file name="Info.php" hash="9c1948c538383376b1dc1b4c76c31e95"/><dir name="Review"><file name="Billing.php" hash="62a22e1f5bd65c4d9369b5794779ffe9"/><file name="Details.php" hash="57d97c8a2c3b7ddac7dc4cda43e4363f"/><file name="Shipping.php" hash="694374b68714b6d58d9af8b9fb15d502"/></dir><file name="Review.php" hash="87c8f3bf319799b33170bec9f42e2544"/><file name="Shortcut.php" hash="26f13ae7afac41ce88fb1cd4042b61b5"/></dir></dir><dir name="Helper"><dir name="Altpayment"><file name="Abstract.php" hash="5fc29e9d6355660415934426d0ee624e"/></dir><file name="Data.php" hash="35a26dab0e14154f2ee80a498f788d7c"/><file name="Masterpass.php" hash="69489b7cae8b99fe216f522b19f3d448"/><file name="Paypal.php" hash="74d1d0885349c432016bd04f3211c4c2"/></dir><dir name="Model"><dir name="Altpayment"><file name="Cart.php" hash="1dc83b97c44463e954efc8ee1c9e62b8"/></dir><file name="Masterpass.php" hash="063acd12e22bdc26d7591cbabf7e3005"/><file name="Payment.php" hash="3b39f69c6826960fe99215f086148090"/><dir name="Paypal"><file name="Credit.php" hash="3548d6c4308df9d377cc1dd0d40f0f4d"/></dir><file name="Paypal.php" hash="c3eb2058ff6860e85a9310944c989301"/><file name="Report.php" hash="7f5e5bf0c652b37cf8c42eb553c8b3e0"/><dir name="Resource"><dir name="Report"><file name="Collection.php" hash="5870728a842922bbbff9c50173a90bd4"/></dir><file name="Report.php" hash="59598e2958a864119925c6e847b66121"/><file name="Setup.php" hash="8bdfbde89d786809d8aa2637efb1d2ae"/><dir name="Storedcard"><file name="Collection.php" hash="756c3c2d6dd5384f37847a028ac12fee"/></dir><file name="Storedcard.php" hash="d43320b704eb1e37c77a5ac20401c557"/></dir><file name="Session.php" hash="136b4146cea2f596847f0b838ec3f532"/><dir name="Source"><file name="Cctype.php" hash="d2dfff6147dc5c2748c7e9767b1fd1cb"/><file name="PaymentAction.php" hash="3c900b82e9af73a372d9f5f36bc1c264"/></dir><file name="Storedcard.php" hash="50897a56669c5938d4613579b603df93"/><dir name="System"><dir name="Config"><dir name="Backend"><file name="Proxy.php" hash="29ea9cb11927cd1e43055a42101eea36"/></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Hps"><dir name="Paypal"><file name="ReportsController.php" hash="914711bc008ec9e240918be7e77d1d54"/></dir></dir><file name="StoredcardController.php" hash="1e968134bf3b60a5f49544ddd1df8f03"/></dir><file name="GiftcardController.php" hash="dd15a7709121a3149fb30f77c385b18f"/><file name="MasterpassController.php" hash="2fb95214db3d3d017dd022743636ec50"/><file name="PaypalController.php" hash="962ce3dc3e738689d6ec6b122ed46001"/><file name="StoredcardController.php" hash="57116e86203df6f24a12fcd93186b534"/></dir><dir name="etc"><file name="adminhtml.xml" hash="8dc53c22d22cd633ebd6c06e7262c741"/><file name="config.xml" hash="0a91fa84cbaa63d4d9669784697a4911"/><file name="system.xml" hash="2b4c4f26b48cb72f408c1c97ec3e4c21"/></dir><dir name="sql"><dir name="hps_securesubmit_setup"><file name="install-1.0.0.php" hash="d424731dcb784aad59dad0bcce431375"/><file name="mysql4-upgrade-1.0.0-1.0.1.php" hash="510826261ea81ea6a09d4ea84c59d41d"/><file name="mysql4-upgrade-1.0.1-1.1.0.php" hash="01e948ea2939f9b0b69bb6748adc53f2"/><file name="mysql4-upgrade-1.1.0-1.2.0.php" hash="84cf1a359fc5a5600e1d98ba0089d911"/></dir></dir></dir></dir></target><target name="mageweb"><dir name="js"><dir name="securesubmit"><file name="admin-checkout.js" hash="14d970828f50bb463dc3f7cdaca97e1d"/><file name="checkout-form.js" hash="62d38a7cbcc240293500e1f105281d0b"/><dir name="masterpass"><file name="lightbox.js" hash="b534647c7c06b5ce90caf4cdd6166f91"/></dir><dir name="paypal"><file name="incontext.js" hash="e3810f12033fa9822db756a22622f799"/></dir><file name="secure.submit-1.0.1.js" hash="988d59dadbc272b869bc9e56cbd7518e"/></dir></dir></target><target name="magelib"><dir name="SecureSubmit"><file name="Hps.php" hash="aeeb39dae09306051eec2cf455fcb6a8"/><file name="LICENSE.txt" hash="de081f847a769f89be5a1f80862005ba"/><file name="PRIVACY.txt" hash="58cdc5fbbff24a84a838b0174b254f70"/><file name="README.md" hash="8320a396aa5544e61fe2e8f2adb09505"/><file name="index.php" hash="feabe5cc691b088d6ade3e04d6b120fc"/><dir name="src"><dir name="Abstractions"><file name="HpsAltPaymentServiceInterface.php" hash="bbbacdf42b798458ca46921b3ddb9eaf"/><file name="HpsBuilderAbstract.php" hash="6498e7b7e00716574a9dd238d1d7da5e"/><file name="HpsConfigInterface.php" hash="6541819ca5724269db6e1a9ed456d52e"/><file name="HpsGatewayServiceAbstract.php" hash="6e6631e0cfea0001a6fff4bf57d13068"/><file name="HpsGatewayServiceInterface.php" hash="c2b49802b328648d8510433b5c82f71f"/><file name="HpsPayPlanResourceAbstract.php" hash="df262df6345c4932626e60afecdeb478"/><file name="HpsPayPlanResourceInterface.php" hash="22dd33e354f46218d2872eab956d57c1"/></dir><dir name="Entities"><dir name="AltPayment"><file name="HpsAltPaymentAddToBatch.php" hash="1684714c0cd14d6d33288a44f43c9dd6"/><file name="HpsAltPaymentAuth.php" hash="4f2748e2b95cffed6bd0e62f75af71eb"/><file name="HpsAltPaymentCapture.php" hash="51a86062c15c6f8de15147b5b53f89a4"/><file name="HpsAltPaymentCreateSession.php" hash="4e83acd11a03e7dfcf904f2421d858b3"/><file name="HpsAltPaymentResponse.php" hash="860336d2015560f889c41773574b97ab"/><file name="HpsAltPaymentReturn.php" hash="0b9d8cb0f67ddf113b99ca64ab6019a3"/><file name="HpsAltPaymentSale.php" hash="f390a9a4af50f7a8a863c607f7e3357f"/><file name="HpsAltPaymentSessionInfo.php" hash="a5fdaea50db9f15eb762f4ca3512cae4"/><file name="HpsAltPaymentVoid.php" hash="429f0fbec31ae4842c494b0a8af47ddb"/><file name="HpsBuyerData.php" hash="4fd94d96a547378d2974fa386c89223f"/><file name="HpsCardinalMPIAddOrderNumberResponse.php" hash="a2f2c09eb9e7020e7af97819fe065dc3"/><file name="HpsCardinalMPIAuthenticateResponse.php" hash="6868b0bc55d8e3409684e795d1db92fc"/><file name="HpsCardinalMPIAuthorizeResponse.php" hash="566a64988246220b00da62078ae32068"/><file name="HpsCardinalMPIAuthresponseResponse.php" hash="a53fb4863feb909ccb0d2f2cc254562f"/><file name="HpsCardinalMPICaptureResponse.php" hash="29de876ce9bc632016fceab91dca22ac"/><file name="HpsCardinalMPILookupResponse.php" hash="7171aff90865b67db79559f7b2f579ba"/><file name="HpsCardinalMPIPreapprovalResponse.php" hash="e9408b385ca4f32de5f1adf96a36c42d"/><file name="HpsCardinalMPIRefundResponse.php" hash="71dbbff6f6383a19b0feb91f8771dbe5"/><file name="HpsCardinalMPIResponse.php" hash="d3729129967b1da049287e200e4d46e2"/><file name="HpsCardinalMPIVoidResponse.php" hash="2796de53634fccca806a4a4143779f81"/><file name="HpsLineItem.php" hash="4ff06a280975312365cf10a730636682"/><file name="HpsOrderData.php" hash="5d3ae0110d44f4786d4398861735a259"/><file name="HpsPaymentData.php" hash="2bd9ddc10ecdaebdbb5bf0e3cf71f642"/><file name="HpsShippingInfo.php" hash="63b621ebba4ae1711aca57073b0abec7"/></dir><dir name="Batch"><file name="HpsBatch.php" hash="d9af4664e64172cb8edaeaa1ea7c7337"/></dir><dir name="Check"><file name="HpsCheck.php" hash="8fb85bd4d608e72a9690285ec46fa6d2"/><file name="HpsCheckHolder.php" hash="58f865b34faf2790fef26066de775a15"/><file name="HpsCheckResponse.php" hash="ff3c752bc85554424e62ed7efbc053f2"/><file name="HpsCheckResponseDetails.php" hash="28928ceb2dea574603a376aed1691a90"/></dir><dir name="Credit"><file name="HpsAccountVerify.php" hash="527a69e5a39153b764e6c14e0d98bf34"/><file name="HpsAuthorization.php" hash="7ec1bbfa6efa5bc48432b5de81eda314"/><file name="HpsCPCData.php" hash="f246c4aa1eec482ba84966c563aeb970"/><file name="HpsCPCEdit.php" hash="f04b0089485ba9e7eacba8e15815ec97"/><file name="HpsCardHolder.php" hash="ffee4609a3ffa886a386a12dea3f4508"/><file name="HpsCharge.php" hash="512fb9e459b336a9e256d8f1e08e36b9"/><file name="HpsChargeExceptions.php" hash="c7df102696a205a4c5689c48878ac5f3"/><file name="HpsCreditCard.php" hash="6aa3d449b0648997c4c532c1e3603cbb"/><file name="HpsOfflineAuthorization.php" hash="6f11736d36cfde0d9d79c94e92f60c8b"/><file name="HpsRecurringBilling.php" hash="9da8f9b16179729b77615f04993b05bf"/><file name="HpsRefund.php" hash="aa4664916ebb94b8f2066fd7c17b0fd4"/><file name="HpsReportTransactionDetails.php" hash="f5bcb8f1532c9282760bb9b733107fac"/><file name="HpsReportTransactionSummary.php" hash="441b01c652db42213264980e6f693b40"/><file name="HpsReversal.php" hash="350191a2d38189ef8e098ed1f922c1d3"/><file name="HpsVoid.php" hash="bf6216cea2f130789a045fc226c54cd0"/></dir><dir name="Debit"><file name="HpsDebitAddValue.php" hash="9053c701093889f864dd36af208f4f71"/><file name="HpsDebitReturn.php" hash="519cb73c6fc4ce716453d5ff94f437a0"/><file name="HpsDebitReversal.php" hash="223f6db72f0219ef25eb0f0adec4e9be"/><file name="HpsDebitSale.php" hash="74fa1e1425cfe6294146c879a4049aa8"/></dir><dir name="Fluent"><file name="HpsBuilderAction.php" hash="8649cc2c53fd961f350070193fedb5c6"/><file name="HpsUnknownPropertyException.php" hash="d019e8645fae6f984ad7b7ea3cebb546"/></dir><dir name="Gift"><file name="HpsGiftCard.php" hash="c8bad2a5336689e3192ea223a97760bf"/><file name="HpsGiftCardActivate.php" hash="097ac7c36cae11b8c40a3f1414518e49"/><file name="HpsGiftCardAddValue.php" hash="131a9d7cbc711a4e3e85c66049028f30"/><file name="HpsGiftCardAlias.php" hash="133d2d4701c5aa88fa0eece6ee69de06"/><file name="HpsGiftCardBalance.php" hash="9b9fe395d218c79c55faf28fd736b431"/><file name="HpsGiftCardDeactivate.php" hash="323ca5a67c6ff0169925192952881db5"/><file name="HpsGiftCardReplace.php" hash="f122a7d924a56fcc406bc8b1c82ac2b2"/><file name="HpsGiftCardReversal.php" hash="88ba755e52f41311206add4fa8ee5e09"/><file name="HpsGiftCardReward.php" hash="f758e8c5462d336236ae0d257789cdaf"/><file name="HpsGiftCardSale.php" hash="0f758ef6653215be643abaea4964352a"/><file name="HpsGiftCardVoid.php" hash="f0294740f5b7f545167d5fb258f4dcdd"/></dir><file name="HpsAddress.php" hash="fcc67451ff9f1c483e2943cf6ee5c5fe"/><file name="HpsConsumer.php" hash="1254142dfa0821cbb0bf154cf51f34d2"/><file name="HpsDirectMarketData.php" hash="1925c204d19cb9233ec8178e3b5cdc50"/><file name="HpsEncryptionData.php" hash="1e4845abc6c42e8f0265e2679b05efb6"/><file name="HpsTokenData.php" hash="18ab9125315bb8e5f9cb272966dac22b"/><file name="HpsTrackData.php" hash="4656f37b7c4c777d0c63b4102efe5a1a"/><file name="HpsTransaction.php" hash="f109d2d26ba237afb2dc17bc287f63a9"/><file name="HpsTransactionDetails.php" hash="4e77261d0aced118b49e26ef786beace"/><file name="HpsTransactionHeader.php" hash="ebd21539f84425f0e2fc57c6049a26a1"/><file name="HpsTransactionStatus.php" hash="a5a67f8fe3780f66b045cc4314660dc5"/><dir name="PayPlan"><file name="HpsPayPlanAmount.php" hash="25706476e264124567d704f981745b13"/><file name="HpsPayPlanCustomer.php" hash="2714a7525fb3830fc018544ea0622ab5"/><file name="HpsPayPlanPaymentMethod.php" hash="fd3077d63e6f31c2d8a4c60c78a678ea"/><file name="HpsPayPlanSchedule.php" hash="4c9fe8bd7db0810fd108e51b81bdf590"/></dir><file name="index.php" hash="ce407ff5715c837d02b1aba7975bf512"/><file name=".DS_Store" hash="92d42bd310aa7f6dd74d14e6cdd2b9e9"/></dir><dir name="Infrastructure"><dir name="Enums"><file name="HpsACHType.php" hash="1ff5593689a404cb0179c2b5cb5fe19e"/><file name="HpsAccountType.php" hash="760d91e120f443c326e6c7586aa61092"/><file name="HpsCardBrand.php" hash="9532bb7c40811c114a1eeeffa8b9732c"/><file name="HpsCentinelCheckoutType.php" hash="7370920cb980bbfc54c741a981cd79bb"/><file name="HpsCheckType.php" hash="d60c676d93c8ada169deb14ddc8e64e7"/><file name="HpsDataEntryMode.php" hash="c323d884a7a305f9af647ea1d9a4177e"/><file name="HpsExceptionCodes.php" hash="95322648a2093ed3982c6bb724f3507a"/><file name="HpsGiftCardAliasAction.php" hash="ebcb27c6fb800e17693ed4af2e8a8943"/><file name="HpsItemChoiceTypePosResponseVer10Transaction.php" hash="686225a07738db2233a2228bec6baabf"/><file name="HpsPayPlanAccountType.php" hash="4d383c42a990fb077fae49386c08b870"/><file name="HpsPayPlanCustomerStatus.php" hash="3ff092e8dd97f2a2474fb64103cb238f"/><file name="HpsPayPlanPaymentMethodStatus.php" hash="b020c52de7987ed3011cb97e4d440c6a"/><file name="HpsPayPlanPaymentMethodType.php" hash="1f77c5c8528815f05803c1381cb4151a"/><file name="HpsPayPlanScheduleDuration.php" hash="05101e6fe3b725b43917b59770f2dbb1"/><file name="HpsPayPlanScheduleFrequency.php" hash="0b3f029c64315ee9c8701d23319941c1"/><file name="HpsPayPlanScheduleStatus.php" hash="3579b52ccf36e576fd2dfb36118716f6"/><file name="HpsSECCode.php" hash="551661613c127c068f139083338b92d1"/><file name="HpsTaxType.php" hash="ba0e05330880810e58370f2f3490ca81"/><file name="HpsTrackDataMethod.php" hash="446069e9786f9585c3490140b29ae52f"/><file name="HpsTransactionType.php" hash="a38b3f4c654a4fa3b2c2d64b8afacf24"/></dir><file name="HpsApiConnectionException.php" hash="ac5a8064a7c2a1616035a5702f36cd50"/><file name="HpsArgumentException.php" hash="855c43e88fc24b582cfe56875d7cff42"/><file name="HpsAuthenticationException.php" hash="6feb2fdc5499b460274524aa469d9a7d"/><file name="HpsCheckException.php" hash="94870f2438217b3275d05fb943a0a8c0"/><file name="HpsConfiguration.php" hash="010996727d89c485c1d11463e5c53a8e"/><file name="HpsCreditException.php" hash="a16bf1ecd6a2c866b7b40351aab3df34"/><file name="HpsCreditExceptionDetails.php" hash="d71c54b2846283a8f97aae74a747dfd9"/><file name="HpsException.php" hash="8d2025b7fae9f0f756341b876a0dab41"/><file name="HpsGatewayException.php" hash="cdd6db6c8436e3e78ee15cdd7a043a9d"/><file name="HpsGatewayExceptionDetails.php" hash="16dd36360e2237ca89e056c61766bcdd"/><file name="HpsInvalidRequestException.php" hash="7877e48463ef3f488bb92423ae445412"/><file name="HpsProcessorError.php" hash="ff7f1f2c5327417b4997f9e36fa7c887"/><file name="HpsProcessorException.php" hash="ba28a92f0e551053506dcc391c5bc431"/><file name="HpsProcessorExceptionDetails.php" hash="6a569aacf045c19ade6472a857a3a274"/><dir name="Validation"><file name="HpsGatewayResponseValidation.php" hash="06fb818263b18b58974a569d0c986667"/><file name="HpsInputValidation.php" hash="1f51837f70c322f2a7c1cc39df752b1a"/><file name="HpsIssuerResponseValidation.php" hash="613377f8ca249df078c909e4d7674bfb"/><file name="HpsProcessorResponseValidation.php" hash="ff19a569f8bdd6ef7b58a460cf06b4e8"/></dir><file name="index.php" hash="ce407ff5715c837d02b1aba7975bf512"/></dir><dir name="Services"><dir name="Fluent"><dir name="Gateway"><dir name="Check"><file name="HpsCheckServiceOverrideBuilder.php" hash="5b4a49a897f87d2a332182a1ccd67d0c"/><file name="HpsCheckServiceRecurringBuilder.php" hash="c86a2fd5165a65c78e38e3bbb1b9636c"/><file name="HpsCheckServiceReturnBuilder.php" hash="5ce46356468714f65ad827e1593977cc"/><file name="HpsCheckServiceSaleBuilder.php" hash="b823e74642e165772f5cb03beffacce7"/><file name="HpsCheckServiceVoidBuilder.php" hash="17305b04474285a8b64007c549180ba5"/></dir><dir name="Credit"><file name="HpsCreditServiceAuthorizeBuilder.php" hash="51997a17ee9a1aaacd40d9d2c8d69c17"/><file name="HpsCreditServiceCaptureBuilder.php" hash="fd6512f3b72f9051eaf7c3daeff2cb48"/><file name="HpsCreditServiceChargeBuilder.php" hash="3421b227fe594f0cb1533b4496c805bd"/><file name="HpsCreditServiceCpcEditBuilder.php" hash="7401c33a56c5a3c6a23f5f70101a4926"/><file name="HpsCreditServiceEditBuilder.php" hash="cdcf661c4182625212ec724b52eb8491"/><file name="HpsCreditServiceGetBuilder.php" hash="05b0cafe715a4d3ceb3c88b99b0c8dc1"/><file name="HpsCreditServiceListTransactionsBuilder.php" hash="a7765dfadc8e21177cc453a1e7dfd715"/><file name="HpsCreditServiceOfflineAuthBuilder.php" hash="d86d2425c6bbf28854a31d09a9f802b8"/><file name="HpsCreditServiceOfflineChargeBuilder.php" hash="0ee9ecf6b499a16f01fa2a7b94af00ca"/><file name="HpsCreditServicePrepaidAddValueBuilder.php" hash="997b48104fcdbd791a3b990515f2527e"/><file name="HpsCreditServicePrepaidBalanceInquiryBuilder.php" hash="7e7dd067d79281c32417b6d338825acd"/><file name="HpsCreditServiceRecurringBuilder.php" hash="560c8b86eeb9e4e468642eaa739ebe03"/><file name="HpsCreditServiceRefundBuilder.php" hash="4d5ab9c2a11c18a47e416bd90dffc5e8"/><file name="HpsCreditServiceReverseBuilder.php" hash="7960e9efa00ceb0d0c5368715c07d424"/><file name="HpsCreditServiceVerifyBuilder.php" hash="62027b344ee5444ccd1534358a405857"/><file name="HpsCreditServiceVoidBuilder.php" hash="0029756571343a1d8c6380874f6f5b6b"/></dir><dir name="Debit"><file name="HpsDebitServiceAddValueBuilder.php" hash="5f972b68a5afa062cbf911bfb3a946bc"/><file name="HpsDebitServiceChargeBuilder.php" hash="26aafce2a87bbbd8231a039209c49657"/><file name="HpsDebitServiceReturnBuilder.php" hash="2e11267e12bdd338b953db352a373961"/><file name="HpsDebitServiceReverseBuilder.php" hash="b088431d3ba0726d44cc418e92267958"/></dir><dir name="GiftCard"><file name="HpsGiftCardServiceActivateBuilder.php" hash="65e3ebd1c6ded3860b238d03e542fe3b"/><file name="HpsGiftCardServiceAddValueBuilder.php" hash="432582c9fd6617c86b373f5fe0b14fb1"/><file name="HpsGiftCardServiceAliasBuilder.php" hash="1b096debfa6678af2d6ddecfa82a638e"/><file name="HpsGiftCardServiceBalanceBuilder.php" hash="6bebaac04d059204a2408d693f77c449"/><file name="HpsGiftCardServiceDeactivateBuilder.php" hash="92b16b331414c40ea11de330bd447273"/><file name="HpsGiftCardServiceReplaceBuilder.php" hash="063e6b33a673c23553047a6f72927b2a"/><file name="HpsGiftCardServiceReverseBuilder.php" hash="2f7b96b1f9608cb7e3526ecb9b15558f"/><file name="HpsGiftCardServiceRewardBuilder.php" hash="242fbe42ab731b138e4d74be4cde4e9a"/><file name="HpsGiftCardServiceSaleBuilder.php" hash="8af2977da26e3707e42569ad7bf4c4a5"/><file name="HpsGiftCardServiceVoidBuilder.php" hash="fff556a586bb09d22f521a90d30fb809"/></dir><file name="HpsFluentCheckService.php" hash="e89511e006e914bdd4daf6765a49e97b"/><file name="HpsFluentCreditService.php" hash="58e0d0480066fec8c5c6e31eaa275d12"/><file name="HpsFluentDebitService.php" hash="63e86fe32a92c80cc5bd163283da6c64"/><file name="HpsFluentGiftCardService.php" hash="53697a755fc90256b940c74282693b0d"/></dir></dir><dir name="Gateway"><dir name="AltPayment"><file name="HpsAltPaymentService.php" hash="3d9cdbad50ccceb45d4d888018d2bab7"/><file name="HpsMasterPassService.php" hash="f5639448d09a38377f16434351201b09"/><file name="HpsPayPalService.php" hash="c91eebb0eca8bdda2505b78c4746db28"/></dir><file name="HpsBatchService.php" hash="2a4c11a4f7c78ec1e3b461b3803826c5"/><file name="HpsCentinelGatewayService.php" hash="40300a57982ccd5325b7bd0986a8bcc4"/><file name="HpsCheckService.php" hash="17eac57a5f3a6f24e31000325ad9ac1d"/><file name="HpsCreditService.php" hash="f7baf1cf04cd6024039ad90284f08db9"/><file name="HpsDebitService.php" hash="0ea76c01b3c817fcaea876bff28681b3"/><file name="HpsGiftCardService.php" hash="e1deb113c685845e2af2bb0ff793ea4d"/><file name="HpsPayPlanService.php" hash="ce5d2c003e72be8328634d92ab8ae6eb"/><file name="HpsRestGatewayService.php" hash="3a0b4217eb4e9d8c92d298914e539a04"/><file name="HpsSoapGatewayService.php" hash="969751eb742eeb7d7a99d5d61d2d2afb"/><file name="HpsTokenService.php" hash="b1dad4289201b399f89ad1d29a799d39"/><dir name="PayPlan"><file name="HpsPayPlanCustomerService.php" hash="cda074fca2230c26919a813cc2d71b5c"/><file name="HpsPayPlanPaymentMethodService.php" hash="61dd42308d203251f4483d68561c191b"/><file name="HpsPayPlanScheduleService.php" hash="e8c81640a7440a19ed3590894a31a1f1"/></dir></dir><file name="HpsCentinelConfig.php" hash="f43f7ea211a51883fb8a2173072027a8"/><file name="HpsServicesConfig.php" hash="f3d63dc7d089a8bcd248e4abc381e6a7"/><file name="index.php" hash="ce407ff5715c837d02b1aba7975bf512"/></dir><file name="index.php" hash="ce407ff5715c837d02b1aba7975bf512"/><file name=".DS_Store" hash="fb4d06cbd65ab29860d86984919afa4a"/></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="securesubmit.xml" hash="cc04e952cc17ea3462931a9e7a655316"/></dir><dir name="template"><dir name="securesubmit"><file name="form.phtml" hash="67a460ca8f034f4bfe3fbb8e7845f37f"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="securesubmit.xml" hash="410fda5ef3920f893f5a17ec379aa2da"/></dir><dir name="template"><dir name="securesubmit"><file name="form.phtml" hash="78a8e941ab3164a7ee4c3bffacfc487d"/><dir name="masterpass"><file name="connect.phtml" hash="b5f47624447a44958ce4fa004c58c319"/><file name="form.phtml" hash="039d6a174ac24c45ece0d14b92b6c9c4"/><file name="js.phtml" hash="274e871b2d8270e3224b9ce12794c2c5"/><file name="mark.phtml" hash="fe27b341b5fb034e90ac35c92ef998d4"/><dir name="review"><file name="details.phtml" hash="0dc5e1201e7e424f089c15fc83a1c70f"/><dir name="shipping"><file name="method.phtml" hash="cc426553636aa08840bee1c4778d89e4"/></dir></dir><file name="review.phtml" hash="cfc643de65b962ba27306587357f45d3"/></dir><dir name="paypal"><dir name="incontext"><file name="js.phtml" hash="16b4ad23ea05464a55bb0390cd72e248"/><file name="payment.phtml" hash="b32d269057984f656422609015dd7d91"/></dir><dir name="review"><file name="details.phtml" hash="0dc5e1201e7e424f089c15fc83a1c70f"/><dir name="shipping"><file name="method.phtml" hash="cc426553636aa08840bee1c4778d89e4"/></dir></dir><file name="review.phtml" hash="cfc643de65b962ba27306587357f45d3"/><file name="shortcut.phtml" hash="268bfac86e653ec5981cd201075f4105"/></dir><file name="storedcards.phtml" hash="d083493f42af257cdb1949a8cbd8855b"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Hps_Securesubmit.xml" hash="d5aed3f48a45f8e611b68d1e6f34c959"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="securesubmit"><dir name="css"><file name="hps-styles.css" hash="054fefd2b23342565da4a4b0d977fdb7"/></dir><dir name="images"><file name="ajax-loader.gif" hash="f48ee069890b16455c3ddcacee9b5f75"/><file name="arrow@2x.png" hash="ecc6766f32ae007e48f1cac2cefae87b"/><file name="bg_x.png" hash="c321c67f6929326129426c9e83207ea3"/><file name="cvv1.png" hash="0cba150037737255b0b750fd8b7aa3a8"/><file name="delete-hover.svg" hash="b50f601a53505660e093c126a84773b2"/><file name="delete.png" hash="0797e40a65fe0cf10252e788f40bee50"/><file name="delete.svg" hash="0793be8c20ffb397cc933d6c6de4df75"/><file name="heartland-logo.png" hash="0a15c70514f1449af4a98931b62d6844"/><file name="heartland-logo@1x.png" hash="d1982d3c613fee22120b06494aa92bfa"/><file name="heartland-logo@2x.png" hash="24daf8c6f920ed7b9c5aad79143f76b5"/><file name="icon_sprite.png" hash="e15f0103ef5ebe3baf48960bb9ccfaab"/><file name="icon_sprite@2x.png" hash="156b591cc9464429bc3b614cbbe636fd"/><file name="ss-input-amex@2x.png" hash="3a0311a7ae08337686031ee12d428b7b"/><file name="ss-inputcard-amex@2x.png" hash="a20df89111cf94aa5d653f44bf7e8cc8"/><file name="ss-inputcard-blank@2x.png" hash="1f84a3d28f8604a0ae1f019d10325c51"/><file name="ss-inputcard-discover@2x.png" hash="c17c70f6dc3908b1c066d0c0aa53a9bc"/><file name="ss-inputcard-jcb@2x.png" hash="bc353bc2e57fe2e2b689b69ce1826389"/><file name="ss-inputcard-mastercard@2x.png" hash="48cae147cae1ef0121e090df928632c0"/><file name="ss-inputcard-visa@2x.png" hash="c8bd7bf3aa1fff3226b5ce571ddefa42"/><file name="ss-lock.png" hash="430fbebc08387bcb43fed60ba14e5da1"/><file name="ss-lock@2x.png" hash="2772a5c4b0e7d622cb8773fd575108d2"/><file name="ss-logo.png" hash="a6e2017f773c3ebd82318cb5417a09dd"/><file name="ss-saved-amex@2x.png" hash="7aff4d28b217bceeb2d1fe139998e980"/><file name="ss-saved-discover@2x.png" hash="f5b5e76e49f3e02b677117068cd1d3fa"/><file name="ss-saved-jcb@2x.png" hash="58923ad29390b36556e61de061417fc8"/><file name="ss-saved-mastercard@2x.png" hash="19d69c364291adf7e87355fbe79ebd38"/><file name="ss-saved-visa@2x.png" hash="c3d935832dfcde4dba793e91665315b7"/><file name="ss-shield@1x.png" hash="473a87521ec93d14c906cd2415833f33"/><file name="ss-shield@2x.png" hash="ceada08d149bd9c2d63706e67eb7b1e9"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir></dir></dir></dir></dir></target></contents>
18
  <compatible/>
19
  <dependencies><required><php><min>5.2.0</min><max>5.6.28</max></php></required></dependencies>
20
  </package>
skin/frontend/base/default/securesubmit/css/hps-styles.css CHANGED
@@ -75,15 +75,19 @@
75
  background-size:cover;
76
  float:right;
77
  }
 
78
  .icon-mc-form,
79
  .icon-mc {
80
  background:transparent url(../images/ss-saved-mastercard@2x.png) no-repeat bottom right;
81
  }
82
  #payment_form_hps_securesubmit li:hover .icon-mc-form,
83
- #stored-cards li.active .icon-mc-form {
 
 
84
  background:transparent url(../images/ss-saved-mastercard@2x.png) no-repeat top right;
85
  background-size:cover;
86
  }
 
87
  .icon-visa-form {
88
  background:transparent url(../images/ss-saved-visa@2x.png) no-repeat bottom right;
89
  }
@@ -217,7 +221,7 @@
217
  }
218
 
219
  #hps_securesubmit_gift_card label {
220
- display:block
221
  margin:5px 0px;
222
  }
223
 
@@ -296,11 +300,11 @@
296
  vertical-align:text-bottom;
297
  }
298
 
299
- .icon-visa-stored {
300
  background:transparent url(../images/ss-saved-visa@2x.png) no-repeat bottom left;
301
  }
302
 
303
- .icon-mc-stored {
304
  background:transparent url(../images/ss-saved-mastercard@2x.png) no-repeat bottom left;
305
  }
306
 
@@ -320,7 +324,8 @@
320
  background-position-y:inherit;
321
  }
322
 
323
- #hps-saved-cards li:hover .icon-mc-stored {
 
324
  background-position-y:inherit;
325
  }
326
 
@@ -337,6 +342,14 @@
337
  }
338
 
339
 
 
 
 
 
 
 
 
 
340
 
341
  @media only screen and (max-width: 768px) {
342
  #ss-banner {
75
  background-size:cover;
76
  float:right;
77
  }
78
+ .icon-mastercard-form,
79
  .icon-mc-form,
80
  .icon-mc {
81
  background:transparent url(../images/ss-saved-mastercard@2x.png) no-repeat bottom right;
82
  }
83
  #payment_form_hps_securesubmit li:hover .icon-mc-form,
84
+ #payment_form_hps_securesubmit li:hover .icon-mastercard-form,
85
+ #stored-cards li.active .icon-mc-form,
86
+ #stored-cards li.active .icon-mastercard-form {
87
  background:transparent url(../images/ss-saved-mastercard@2x.png) no-repeat top right;
88
  background-size:cover;
89
  }
90
+ .icon-vi-form,
91
  .icon-visa-form {
92
  background:transparent url(../images/ss-saved-visa@2x.png) no-repeat bottom right;
93
  }
221
  }
222
 
223
  #hps_securesubmit_gift_card label {
224
+ display:block;
225
  margin:5px 0px;
226
  }
227
 
300
  vertical-align:text-bottom;
301
  }
302
 
303
+ .icon-visa-stored,.icon-vi-stored {
304
  background:transparent url(../images/ss-saved-visa@2x.png) no-repeat bottom left;
305
  }
306
 
307
+ .icon-mc-stored,.icon-mastercard-stored {
308
  background:transparent url(../images/ss-saved-mastercard@2x.png) no-repeat bottom left;
309
  }
310
 
324
  background-position-y:inherit;
325
  }
326
 
327
+ #hps-saved-cards li:hover .icon-mc-stored,
328
+ #hps-saved-cards li:hover .icon-mastercard-stored {
329
  background-position-y:inherit;
330
  }
331
 
342
  }
343
 
344
 
345
+ .securesubmit_amasty_one_page_checkout {
346
+ width: 98% !important;
347
+ float: none !important;
348
+ height:5em !important;
349
+ display: block !important;
350
+ padding:0px !important;
351
+ margin-right: 15px !important;
352
+ }
353
 
354
  @media only screen and (max-width: 768px) {
355
  #ss-banner {