Dibs - Version 1.0.0.1

Version Notes

1.0.0.1
- Added languages:
Danish, Norwegian, Swedish
- Added support for "Skip accept page"

First release 1.0.0.0

Download this release

Release Info

Developer Magento Core Team
Extension Dibs
Version 1.0.0.1
Comparing to
See all releases


Code changes from version 1.0.0.0 to 1.0.0.1

app/code/local/Mage/Dibs/controllers/StandardController.php CHANGED
@@ -260,8 +260,8 @@ class Mage_Dibs_StandardController extends Mage_Core_Controller_Front_Action {
260
  if (Mage::getSingleton('checkout/session')->getLastOrderId()) {
261
  $order->load(Mage::getSingleton('checkout/session')->getLastOrderId());
262
  } else {
263
- if (isset($_POST["orderid"])) {
264
- $order->loadByIncrementId((int)$_POST["orderid"]);
265
  } else {
266
  echo "<h1>An error occured!</h1>";
267
  echo "No orderid was supplied to the system!";
@@ -304,21 +304,21 @@ class Mage_Dibs_StandardController extends Mage_Core_Controller_Front_Action {
304
 
305
  // validate md5 if enabled
306
  if ($payment->getConfigData('md5key1') != "" && $payment->getConfigData('md5key2') != "") {
307
- $transact = $_POST["transact"];
308
  $amount = $order->getTotalDue() * 100;
309
- $currency = $_POST["currency"];
310
  $md5key1 = $payment->getConfigData('md5key1');
311
  $md5key2 = $payment->getConfigData('md5key2');
312
  $tmp = md5($md5key2.md5($md5key1.'transact='.$transact.'&amount='.$amount.'&currency='.$currency));
313
 
314
  if ((int)$payment->getConfigData('calcfee') == 1) {
315
- $amount = $_POST["amount"] + $_POST["fee"];
316
  $tmp = md5($md5key2.md5($md5key1.'transact='.$transact.'&amount='.$amount.'&currency='.$currency));
317
  }
318
 
319
  //
320
  // Validate authkey
321
- if ($tmp != $_POST["authkey"]) {
322
  echo "<h1>An error occured!</h1>";
323
  echo "The MD5 key does not match!";
324
  exit();
@@ -330,17 +330,17 @@ class Mage_Dibs_StandardController extends Mage_Core_Controller_Front_Action {
330
  $row = $read->fetchRow("select * from dibs_order_status where orderid = '" . $_REQUEST['orderid'] . "'");
331
  if ($row['status'] == '0') {
332
  $write = Mage::getSingleton('core/resource')->getConnection('core_write');
333
- $write->query('update dibs_order_status set transact = "' . ((isset($_POST['transact'])) ? $_POST['transact'] : '0') . '", status = 1, ' .
334
- 'amount = "' . ((isset($_POST['amount'])) ? $_POST['amount'] : '0') . '", '.
335
- 'currency = "' . ((isset($_POST['currency'])) ? $_POST['currency'] : '0') . '", '.
336
- 'paytype = "' . ((isset($_POST['paytype'])) ? $_POST['paytype'] : '0') . '", '.
337
- 'cardnomask = "' . ((isset($_POST['cardnomask'])) ? $_POST['cardnomask'] : '0') . '", '.
338
- 'cardprefix = "' . ((isset($_POST['cardprefix'])) ? $_POST['cardprefix'] : '0') . '", '.
339
- 'cardexpdate = "' . ((isset($_POST['cardexpdate'])) ? $_POST['cardexpdate'] : '0') . '", '.
340
- 'cardcountry = "' . ((isset($_POST['cardcountry'])) ? $_POST['cardcountry'] : '0') . '", '.
341
- 'acquirer = "' . ((isset($_POST['acquirer'])) ? $_POST['acquirer'] : '0') . '", '.
342
- 'enrolled = "' . ((isset($_POST['enrolled'])) ? $_POST['enrolled'] : '0') . '", '.
343
- 'fee = "' . ((isset($_POST['fee'])) ? $_POST['fee'] : '0') . '" where orderid = "' . $_POST['orderid'] . '"');
344
 
345
  // Remove items from stock as the payment now has been made
346
  $this->removeFromStock();
260
  if (Mage::getSingleton('checkout/session')->getLastOrderId()) {
261
  $order->load(Mage::getSingleton('checkout/session')->getLastOrderId());
262
  } else {
263
+ if (isset($_REQUEST["orderid"])) {
264
+ $order->loadByIncrementId((int)$_REQUEST["orderid"]);
265
  } else {
266
  echo "<h1>An error occured!</h1>";
267
  echo "No orderid was supplied to the system!";
304
 
305
  // validate md5 if enabled
306
  if ($payment->getConfigData('md5key1') != "" && $payment->getConfigData('md5key2') != "") {
307
+ $transact = $_REQUEST["transact"];
308
  $amount = $order->getTotalDue() * 100;
309
+ $currency = $_REQUEST["currency"];
310
  $md5key1 = $payment->getConfigData('md5key1');
311
  $md5key2 = $payment->getConfigData('md5key2');
312
  $tmp = md5($md5key2.md5($md5key1.'transact='.$transact.'&amount='.$amount.'&currency='.$currency));
313
 
314
  if ((int)$payment->getConfigData('calcfee') == 1) {
315
+ $amount = $_REQUEST["amount"] + $_REQUEST["fee"];
316
  $tmp = md5($md5key2.md5($md5key1.'transact='.$transact.'&amount='.$amount.'&currency='.$currency));
317
  }
318
 
319
  //
320
  // Validate authkey
321
+ if ($tmp != $_REQUEST["authkey"]) {
322
  echo "<h1>An error occured!</h1>";
323
  echo "The MD5 key does not match!";
324
  exit();
330
  $row = $read->fetchRow("select * from dibs_order_status where orderid = '" . $_REQUEST['orderid'] . "'");
331
  if ($row['status'] == '0') {
332
  $write = Mage::getSingleton('core/resource')->getConnection('core_write');
333
+ $write->query('update dibs_order_status set transact = "' . ((isset($_REQUEST['transact'])) ? $_REQUEST['transact'] : '0') . '", status = 1, ' .
334
+ 'amount = "' . ((isset($_REQUEST['amount'])) ? $_REQUEST['amount'] : '0') . '", '.
335
+ 'currency = "' . ((isset($_REQUEST['currency'])) ? $_REQUEST['currency'] : '0') . '", '.
336
+ 'paytype = "' . ((isset($_REQUEST['paytype'])) ? $_REQUEST['paytype'] : '0') . '", '.
337
+ 'cardnomask = "' . ((isset($_REQUEST['cardnomask'])) ? $_REQUEST['cardnomask'] : '0') . '", '.
338
+ 'cardprefix = "' . ((isset($_REQUEST['cardprefix'])) ? $_REQUEST['cardprefix'] : '0') . '", '.
339
+ 'cardexpdate = "' . ((isset($_REQUEST['cardexpdate'])) ? $_REQUEST['cardexpdate'] : '0') . '", '.
340
+ 'cardcountry = "' . ((isset($_REQUEST['cardcountry'])) ? $_REQUEST['cardcountry'] : '0') . '", '.
341
+ 'acquirer = "' . ((isset($_REQUEST['acquirer'])) ? $_REQUEST['acquirer'] : '0') . '", '.
342
+ 'enrolled = "' . ((isset($_REQUEST['enrolled'])) ? $_REQUEST['enrolled'] : '0') . '", '.
343
+ 'fee = "' . ((isset($_REQUEST['fee'])) ? $_REQUEST['fee'] : '0') . '" where orderid = "' . $_REQUEST['orderid'] . '"');
344
 
345
  // Remove items from stock as the payment now has been made
346
  $this->removeFromStock();
app/code/local/Mage/Dibs/etc/config.xml CHANGED
@@ -124,7 +124,7 @@
124
  <test_mode>1</test_mode>
125
  <capturenow>0</capturenow>
126
  <uniqueoid>0</uniqueoid>
127
- <calcfee>1</calcfee>
128
  <paymentwindow>1</paymentwindow>
129
  <skiplastpage>0</skiplastpage>
130
  <decorator>default</decorator>
124
  <test_mode>1</test_mode>
125
  <capturenow>0</capturenow>
126
  <uniqueoid>0</uniqueoid>
127
+ <calcfee>0</calcfee>
128
  <paymentwindow>1</paymentwindow>
129
  <skiplastpage>0</skiplastpage>
130
  <decorator>default</decorator>
app/locale/da_DK/Mage_Dibs.csv CHANGED
@@ -1,22 +1,22 @@
1
- "DIBS_LABEL_1","You have chosen to pay for the order online. Once you've completed your order, you will be transferred to the DIBS payment system. Here you need to process your payment. Once payment is completed, you will automatically be returned to our shop."
2
- "DIBS_LABEL_2","You can pay with the following payment cards:"
3
- "DIBS_LABEL_3","The order is now placed and payment must now be made by DIBS Payment Services (www.dibspayment.com)"
4
- "DIBS_LABEL_4","Order number"
5
- "DIBS_LABEL_5","Amount"
6
- "DIBS_LABEL_6","Your are now being redirected to the payment gateway"
7
- "DIBS_LABEL_7","DIBS Payment Information"
8
  "DIBS_LABEL_8","Transaction ID:"
9
- "DIBS_LABEL_9","Amount:"
10
- "DIBS_LABEL_10","Currency Code:"
11
- "DIBS_LABEL_11","Fee:"
12
- "DIBS_LABEL_12","Pay type:"
13
- "DIBS_LABEL_13","Card number:"
14
- "DIBS_LABEL_14","Expire:"
15
- "DIBS_LABEL_15","Country:"
16
- "DIBS_LABEL_16","Acquirer:"
17
  "DIBS_LABEL_17","3-D Secure:"
18
- "DIBS_LABEL_18","Go to DIBS administration and process the payment"
19
- "DIBS_LABEL_19","There is not registered any payment for this order yet!"
20
- "DIBS_LABEL_20","Customer has cancelled the payment process - DIBS Payment Services (www.dibspayment.com)"
21
- "DIBS_LABEL_21","Callback received from DIBS Payment Services (www.dibspayment.com)"
22
- "DIBS_LABEL_22","Customer successfully returned to store from DIBS Payment Services (www.dibspayment.com)"
1
+ "DIBS_LABEL_1","Du har valgt at betale online for din bestilling. N&#229;r du har lagt din ordre vil du blive overf&#248;rt til DIBS betalings system. Her skal du gennemf&#248;re din betaling. N&#229;r ordren er gennemf&#248;rt vil du automatisk blive f&#248;rt tilbage til vores butik."
2
+ "DIBS_LABEL_2","Du kan betale med disse betalingsformer:"
3
+ "DIBS_LABEL_3","Ordren er nu afgivet og betalingen skal nu gennemf&#248;res i DIBS betalings system (www.dibs.dk)"
4
+ "DIBS_LABEL_4","Ordre nummer"
5
+ "DIBS_LABEL_5","Bel&#248;b"
6
+ "DIBS_LABEL_6","Du bliver nu viderestillet til betalingssystemet"
7
+ "DIBS_LABEL_7","DIBS betalings information"
8
  "DIBS_LABEL_8","Transaction ID:"
9
+ "DIBS_LABEL_9","Bel&#248;b:"
10
+ "DIBS_LABEL_10","Valuta kode:"
11
+ "DIBS_LABEL_11","Gebyr:"
12
+ "DIBS_LABEL_12","Betalingstype:"
13
+ "DIBS_LABEL_13","Kort nummer:"
14
+ "DIBS_LABEL_14","Udl&#248;b:"
15
+ "DIBS_LABEL_15","Land:"
16
+ "DIBS_LABEL_16","Indl&#248;ser:"
17
  "DIBS_LABEL_17","3-D Secure:"
18
+ "DIBS_LABEL_18","G&#229; til DIBS administrationen og gennemf&#248;r betalingen"
19
+ "DIBS_LABEL_19","Ingen betaling er registreret p&#229; denne ordre"
20
+ "DIBS_LABEL_20","Kortholder har annulleret betalingsfor&#248;bet"
21
+ "DIBS_LABEL_21","'Callback' modtaget fra DIBS Payment Services (www.dibs.dk)"
22
+ "DIBS_LABEL_22","Kortholder returneret til butikken fra DIBS Payment Services (www.dibs.dk)"
app/locale/en_US/Mage_Dibs.csv CHANGED
@@ -1,6 +1,6 @@
1
  "DIBS_LABEL_1","You have chosen to pay for the order online. Once you've completed your order, you will be transferred to the DIBS payment system. Here you need to process your payment. Once payment is completed, you will automatically be returned to our shop."
2
  "DIBS_LABEL_2","You can pay with the following payment cards:"
3
- "DIBS_LABEL_3","The order is now placed and payment must now be made by DIBS Payment Services (www.dibspayment.com)"
4
  "DIBS_LABEL_4","Order number"
5
  "DIBS_LABEL_5","Amount"
6
  "DIBS_LABEL_6","Your are now being redirected to the payment gateway"
@@ -18,5 +18,5 @@
18
  "DIBS_LABEL_18","Go to DIBS administration and process the payment"
19
  "DIBS_LABEL_19","There is not registered any payment for this order yet!"
20
  "DIBS_LABEL_20","Customer has cancelled the payment process - DIBS Payment Services (www.dibspayment.com)"
21
- "DIBS_LABEL_21","Callback received from DIBS Payment Services (www.dibspayment.com)"
22
- "DIBS_LABEL_22","Customer successfully returned to store from DIBS Payment Services (www.dibspayment.com)"
1
  "DIBS_LABEL_1","You have chosen to pay for the order online. Once you've completed your order, you will be transferred to the DIBS payment system. Here you need to process your payment. Once payment is completed, you will automatically be returned to our shop."
2
  "DIBS_LABEL_2","You can pay with the following payment cards:"
3
+ "DIBS_LABEL_3","The order is now placed and payment must now be made in DIBS Payment Solution (www.dibspayment.com)"
4
  "DIBS_LABEL_4","Order number"
5
  "DIBS_LABEL_5","Amount"
6
  "DIBS_LABEL_6","Your are now being redirected to the payment gateway"
18
  "DIBS_LABEL_18","Go to DIBS administration and process the payment"
19
  "DIBS_LABEL_19","There is not registered any payment for this order yet!"
20
  "DIBS_LABEL_20","Customer has cancelled the payment process - DIBS Payment Services (www.dibspayment.com)"
21
+ "DIBS_LABEL_21","'Callback' received from DIBS Payment Services (www.dibspayment.com)"
22
+ "DIBS_LABEL_22","Customer successfully returned back to store from DIBS Payment Services (www.dibspayment.com)"
app/locale/nb_NO/Mage_Dibs.csv CHANGED
@@ -1,22 +1,22 @@
1
- "DIBS_LABEL_1","You have chosen to pay for the order online. Once you've completed your order, you will be transferred to the DIBS payment system. Here you need to process your payment. Once payment is completed, you will automatically be returned to our shop."
2
- "DIBS_LABEL_2","You can pay with the following payment cards:"
3
- "DIBS_LABEL_3","The order is now placed and payment must now be made by DIBS Payment Services (www.dibspayment.com)"
4
- "DIBS_LABEL_4","Order number"
5
- "DIBS_LABEL_5","Amount"
6
- "DIBS_LABEL_6","Your are now being redirected to the payment gateway"
7
- "DIBS_LABEL_7","DIBS Payment Information"
8
- "DIBS_LABEL_8","Transaction ID:"
9
- "DIBS_LABEL_9","Amount:"
10
- "DIBS_LABEL_10","Currency Code:"
11
- "DIBS_LABEL_11","Fee:"
12
- "DIBS_LABEL_12","Pay type:"
13
- "DIBS_LABEL_13","Card number:"
14
- "DIBS_LABEL_14","Expire:"
15
- "DIBS_LABEL_15","Country:"
16
- "DIBS_LABEL_16","Acquirer:"
17
  "DIBS_LABEL_17","3-D Secure:"
18
- "DIBS_LABEL_18","Go to DIBS administration and process the payment"
19
- "DIBS_LABEL_19","There is not registered any payment for this order yet!"
20
- "DIBS_LABEL_20","Customer has cancelled the payment process - DIBS Payment Services (www.dibspayment.com)"
21
- "DIBS_LABEL_21","Callback received from DIBS Payment Services (www.dibspayment.com)"
22
- "DIBS_LABEL_22","Customer successfully returned to store from DIBS Payment Services (www.dibspayment.com)"
1
+ "DIBS_LABEL_1","Du har valgt &#229; betale ordren online. N&#229r du har fullf&#248;rt din ordre, wil du bli videresendt til DIBS betalingsleverand&#248;r. Her m&#229; du fullf&#248;re din betaling. N&#229;r betaligen er fullf&#248;rt, vil du bli sendt tilbake til v&#229;r butikk."
2
+ "DIBS_LABEL_2","Du kan betale med f&#248;lgende kort:"
3
+ "DIBS_LABEL_3","Ordren er n&#229; plassert, og betalingen m&#229; bli prosessert av DIBS Payment Services (www.dibs.no)"
4
+ "DIBS_LABEL_4","Ordrenummer"
5
+ "DIBS_LABEL_5","Bel&#248;p"
6
+ "DIBS_LABEL_6","Du blir n&#229; videresendt til betalingsleverand&#248;ren"
7
+ "DIBS_LABEL_7","DIBS Betalingsinformasjon"
8
+ "DIBS_LABEL_8","Transaksjonsnummer:"
9
+ "DIBS_LABEL_9","Bel&#248;p:"
10
+ "DIBS_LABEL_10","Valutakode:"
11
+ "DIBS_LABEL_11","Gebyr:"
12
+ "DIBS_LABEL_12","Betalingstype:"
13
+ "DIBS_LABEL_13","Kortnummer:"
14
+ "DIBS_LABEL_14","Utl&#248;psdato:"
15
+ "DIBS_LABEL_15","Land:"
16
+ "DIBS_LABEL_16","Innl&#248;ser:"
17
  "DIBS_LABEL_17","3-D Secure:"
18
+ "DIBS_LABEL_18","G&#229; til DIBS Administrasjonen og prosesser betalingen"
19
+ "DIBS_LABEL_19","Det er ikke registrert noen betaling for denne ordren enda!"
20
+ "DIBS_LABEL_20","Kunden har avbrutt betalingsprosessen - DIBS Payment Services (www.dibs.no)"
21
+ "DIBS_LABEL_21","'Callback' mottatt fra DIBS Payment Services (www.dibs.no)"
22
+ "DIBS_LABEL_22","Kunden har returnert vellykket tilbake til butikk fra DIBS Payment Services (www.dibs.no)"
app/locale/nn_NO/Mage_Dibs.csv CHANGED
@@ -1,22 +1,22 @@
1
- "DIBS_LABEL_1","You have chosen to pay for the order online. Once you've completed your order, you will be transferred to the DIBS payment system. Here you need to process your payment. Once payment is completed, you will automatically be returned to our shop."
2
- "DIBS_LABEL_2","You can pay with the following payment cards:"
3
- "DIBS_LABEL_3","The order is now placed and payment must now be made by DIBS Payment Services (www.dibspayment.com)"
4
- "DIBS_LABEL_4","Order number"
5
- "DIBS_LABEL_5","Amount"
6
- "DIBS_LABEL_6","Your are now being redirected to the payment gateway"
7
- "DIBS_LABEL_7","DIBS Payment Information"
8
- "DIBS_LABEL_8","Transaction ID:"
9
- "DIBS_LABEL_9","Amount:"
10
- "DIBS_LABEL_10","Currency Code:"
11
- "DIBS_LABEL_11","Fee:"
12
- "DIBS_LABEL_12","Pay type:"
13
- "DIBS_LABEL_13","Card number:"
14
- "DIBS_LABEL_14","Expire:"
15
- "DIBS_LABEL_15","Country:"
16
- "DIBS_LABEL_16","Acquirer:"
17
  "DIBS_LABEL_17","3-D Secure:"
18
- "DIBS_LABEL_18","Go to DIBS administration and process the payment"
19
- "DIBS_LABEL_19","There is not registered any payment for this order yet!"
20
- "DIBS_LABEL_20","Customer has cancelled the payment process - DIBS Payment Services (www.dibspayment.com)"
21
- "DIBS_LABEL_21","Callback received from DIBS Payment Services (www.dibspayment.com)"
22
- "DIBS_LABEL_22","Customer successfully returned to store from DIBS Payment Services (www.dibspayment.com)"
1
+ "DIBS_LABEL_1","Du har valgt &#229; betale ordren online. N&#229r du har fullf&#248;rt din ordre, wil du bli videresendt til DIBS betalingsleverand&#248;r. Her m&#229; du fullf&#248;re din betaling. N&#229;r betaligen er fullf&#248;rt, vil du bli sendt tilbake til v&#229;r butikk."
2
+ "DIBS_LABEL_2","Du kan betale med f&#248;lgende kort:"
3
+ "DIBS_LABEL_3","Ordren er n&#229; plassert, og betalingen m&#229; bli prosessert av DIBS Payment Services (www.dibs.no)"
4
+ "DIBS_LABEL_4","Ordrenummer"
5
+ "DIBS_LABEL_5","Bel&#248;p"
6
+ "DIBS_LABEL_6","Du blir n&#229; videresendt til betalingsleverand&#248;ren"
7
+ "DIBS_LABEL_7","DIBS Betalingsinformasjon"
8
+ "DIBS_LABEL_8","Transaksjonsnummer:"
9
+ "DIBS_LABEL_9","Bel&#248;p:"
10
+ "DIBS_LABEL_10","Valutakode:"
11
+ "DIBS_LABEL_11","Gebyr:"
12
+ "DIBS_LABEL_12","Betalingstype:"
13
+ "DIBS_LABEL_13","Kortnummer:"
14
+ "DIBS_LABEL_14","Utl&#248;psdato:"
15
+ "DIBS_LABEL_15","Land:"
16
+ "DIBS_LABEL_16","Innl&#248;ser:"
17
  "DIBS_LABEL_17","3-D Secure:"
18
+ "DIBS_LABEL_18","G&#229; til DIBS Administrasjonen og prosesser betalingen"
19
+ "DIBS_LABEL_19","Det er ikke registrert noen betaling for denne ordren enda!"
20
+ "DIBS_LABEL_20","Kunden har avbrutt betalingsprosessen - DIBS Payment Services (www.dibs.no)"
21
+ "DIBS_LABEL_21","'Callback' mottatt fra DIBS Payment Services (www.dibs.no)"
22
+ "DIBS_LABEL_22","Kunden har returnert vellykket tilbake til butikk fra DIBS Payment Services (www.dibs.no)"
app/locale/sv_SE/Mage_Dibs.csv CHANGED
@@ -1,22 +1,22 @@
1
- "DIBS_LABEL_1","You have chosen to pay for the order online. Once you've completed your order, you will be transferred to the DIBS payment system. Here you need to process your payment. Once payment is completed, you will automatically be returned to our shop."
2
- "DIBS_LABEL_2","You can pay with the following payment cards:"
3
- "DIBS_LABEL_3","The order is now placed and payment must now be made by DIBS Payment Services (www.dibspayment.com)"
4
- "DIBS_LABEL_4","Order number"
5
- "DIBS_LABEL_5","Amount"
6
- "DIBS_LABEL_6","Your are now being redirected to the payment gateway"
7
- "DIBS_LABEL_7","DIBS Payment Information"
8
- "DIBS_LABEL_8","Transaction ID:"
9
- "DIBS_LABEL_9","Amount:"
10
- "DIBS_LABEL_10","Currency Code:"
11
- "DIBS_LABEL_11","Fee:"
12
- "DIBS_LABEL_12","Pay type:"
13
- "DIBS_LABEL_13","Card number:"
14
- "DIBS_LABEL_14","Expire:"
15
- "DIBS_LABEL_15","Country:"
16
- "DIBS_LABEL_16","Acquirer:"
17
- "DIBS_LABEL_17","3-D Secure:"
18
- "DIBS_LABEL_18","Go to DIBS administration and process the payment"
19
- "DIBS_LABEL_19","There is not registered any payment for this order yet!"
20
- "DIBS_LABEL_20","Customer has cancelled the payment process - DIBS Payment Services (www.dibspayment.com)"
21
- "DIBS_LABEL_21","Callback received from DIBS Payment Services (www.dibspayment.com)"
22
- "DIBS_LABEL_22","Customer successfully returned to store from DIBS Payment Services (www.dibspayment.com)"
1
+ "DIBS_LABEL_1,"Du har valt att betala f�r ordern via internet. N�r din order �r avslutad kommer du bli skickad till DIBS betalningssystem. D�r kommer du att beh�va behandla din betalning. N�r betalningen �r genomf�rd kommer du automatiskt att skickad tillbaka till v&#229;r butik.""";"DIBS_LABEL_1,""Du har valt att betala f�r ordern via internet. N�r din order �r avslutad kommer du bli skickad till DIBS betalningssystem. D�r kommer du att beh�va genomf�ra din betalning. N�r betalningen �r genomf�rd kommer du automatiskt att skickad tillbaka till v&#229;r butik."
2
+ "DIBS_LABEL_2,"Du kan betala med f�ljande betal/kreditkort:"
3
+ "DIBS_LABEL_3,"Ordern �r nu slutf�rd och betalningen m&#229;ste nu genomf�ras via DIBS betalningssystem (www.dibs.se)"
4
+ "DIBS_LABEL_4,"Ordernummer"
5
+ "DIBS_LABEL_5,"Belopp"
6
+ "DIBS_LABEL_6,"Du kommer nu att skickas till betalningssystemet"
7
+ "DIBS_LABEL_7,"DIBS Betalningsinformation"
8
+ "DIBS_LABEL_8,"TransaktionsID:"
9
+ "DIBS_LABEL_9,"Belopp:"
10
+ "DIBS_LABEL_10,"Valutakod:"
11
+ "DIBS_LABEL_11,"Avgift:"
12
+ "DIBS_LABEL_12,"Betals�tt:"
13
+ "DIBS_LABEL_13,"Kortnummer:"
14
+ "DIBS_LABEL_14,"Utg&#229;ngsdatum:"
15
+ "DIBS_LABEL_15,"Land:"
16
+ "DIBS_LABEL_16,"Inl�sare:"
17
+ "DIBS_LABEL_17,"3-D Secure:"
18
+ "DIBS_LABEL_18,"G&#229; till DIBS administrationsgr�nssnitt och behandla betalningen"
19
+ "DIBS_LABEL_19,"Det finns ingen registrerad betalning f�r denna order �nnu"
20
+ "DIBS_LABEL_20,"Kunden har avbrutit betalningsprocessen - DIBS Payment Services (www.dibs.se)"
21
+ "DIBS_LABEL_21,"'Callback' received from DIBS Payment Services (www.dibs.se)"
22
+ "DIBS_LABEL_22,"Kunden har kommit tillbaka till butiken fr&#229;n DIBS Payment Services (www.dibs.se)"
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>DIBS</name>
4
- <version>1.0.0.0</version>
5
  <stability>stable</stability>
6
  <license>GPL</license>
7
  <channel>community</channel>
@@ -30,11 +30,16 @@ Card types accepted by the DIBS payment gateway:
30
  - JCB 3D secure
31
  - Danske Bank e-betaling
32
  - Nordea e-betaling</description>
33
- <notes>First release 1.0.0.0</notes>
 
 
 
 
 
34
  <authors><author><name>DIBS AS</name><user>auto-converted</user><email>plugins@dibs.dk</email></author></authors>
35
  <date>2009-05-14</date>
36
- <time>00:29:12</time>
37
- <contents><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="images"><dir name="dibs"><file name="aktia.gif" hash="7afe00b19b4194fa4ffbdf20cdd469c1"/><file name="amex.gif" hash="f35f89ccdcb954e02a07f6c0a29c7b43"/><file name="bak.gif" hash="c315574fd839dae52a1316b6d8b836b6"/><file name="bankeinzug.gif" hash="3bd20355343bd250a6a704fdbaf9ba62"/><file name="dankort.gif" hash="daa5d5d2c0d541579b0e13aa3cd9d65b"/><file name="danskenetbetaling.gif" hash="1f616c382b72248334f6aa1ca910003b"/><file name="dibslogo.gif" hash="8b308757472fc5aaaedfefd5c79a2d54"/><file name="diners.gif" hash="fabce04659a94993a230285b9a4651e9"/><file name="edankort.gif" hash="4485910a0fb40512233c1a59ddd31015"/><file name="ewire.gif" hash="b50385f7d878be6a3834310d1fbc3a1d"/><file name="forbrugforeningen.gif" hash="d9cd7fa26230a850114b2dc99aea3b22"/><file name="getitcard.gif" hash="b70e244f36e7aec94fe3f6373e1ae8d7"/><file name="ideal.gif" hash="40f07b266bcd5953bb6c079f7eeaae67"/><file name="jcb.gif" hash="aea8c54e043a75b26887fa1307ad4312"/><file name="jcbsecure.gif" hash="1c687214f79b73d7e99f5011c9c22bce"/><file name="loading.gif" hash="7e99e1159a3686f6aa4f90043c554483"/><file name="maestro.gif" hash="d5df5f7986a21bf5a78b9c7a3656facd"/><file name="mastercard.gif" hash="2680e078159e5aedb561c3a705801a44"/><file name="mastercardsecurecode.gif" hash="730735c1e2d36d9fa3bd6468fa0b1a7d"/><file name="mobilcash.gif" hash="befd2f10976c0ab40333f01fc6db4743"/><file name="nordeasole.gif" hash="17b9be1a06125dcc7d1a6be8fea38dd6"/><file name="oko.gif" hash="1cde3c12036ebd74a643aee2ffb0513a"/><file name="pci.gif" hash="b55a87df550ea6789c17e389604e28e1"/><file name="seb.gif" hash="502b1dbeb81bce51abd1ea149d4dde14"/><file name="shbdirektbetaling.gif" hash="0aa7c7fab4133ff4843c0ae73cabe9de"/><file name="swedbankdirektbetaling.gif" hash="d6da3e67f8096811c2ad0135b2aad80a"/><file name="valus.gif" hash="e62b75eb172934e118a70366baac51ee"/><file name="verifiedbyvisa.gif" hash="517118742fce249485c8eaf6df174764"/><file name="visa.gif" hash="b61251f8c428aa5dca017c9f374957ef"/><file name="visaelectron.gif" hash="e5371ba0da9bb14990d1b8163cedd066"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="images"><dir name="dibs"><file name="aktia.gif" hash="7afe00b19b4194fa4ffbdf20cdd469c1"/><file name="amex.gif" hash="f35f89ccdcb954e02a07f6c0a29c7b43"/><file name="bak.gif" hash="c315574fd839dae52a1316b6d8b836b6"/><file name="bankeinzug.gif" hash="3bd20355343bd250a6a704fdbaf9ba62"/><file name="dankort.gif" hash="daa5d5d2c0d541579b0e13aa3cd9d65b"/><file name="danskenetbetaling.gif" hash="1f616c382b72248334f6aa1ca910003b"/><file name="dibslogo.gif" hash="8b308757472fc5aaaedfefd5c79a2d54"/><file name="diners.gif" hash="fabce04659a94993a230285b9a4651e9"/><file name="edankort.gif" hash="4485910a0fb40512233c1a59ddd31015"/><file name="ewire.gif" hash="b50385f7d878be6a3834310d1fbc3a1d"/><file name="forbrugforeningen.gif" hash="d9cd7fa26230a850114b2dc99aea3b22"/><file name="getitcard.gif" hash="b70e244f36e7aec94fe3f6373e1ae8d7"/><file name="ideal.gif" hash="40f07b266bcd5953bb6c079f7eeaae67"/><file name="jcb.gif" hash="aea8c54e043a75b26887fa1307ad4312"/><file name="jcbsecure.gif" hash="1c687214f79b73d7e99f5011c9c22bce"/><file name="loading.gif" hash="7e99e1159a3686f6aa4f90043c554483"/><file name="maestro.gif" hash="d5df5f7986a21bf5a78b9c7a3656facd"/><file name="mastercard.gif" hash="2680e078159e5aedb561c3a705801a44"/><file name="mastercardsecurecode.gif" hash="730735c1e2d36d9fa3bd6468fa0b1a7d"/><file name="mobilcash.gif" hash="befd2f10976c0ab40333f01fc6db4743"/><file name="nordeasole.gif" hash="17b9be1a06125dcc7d1a6be8fea38dd6"/><file name="oko.gif" hash="1cde3c12036ebd74a643aee2ffb0513a"/><file name="pci.gif" hash="b55a87df550ea6789c17e389604e28e1"/><file name="seb.gif" hash="502b1dbeb81bce51abd1ea149d4dde14"/><file name="shbdirektbetaling.gif" hash="0aa7c7fab4133ff4843c0ae73cabe9de"/><file name="swedbankdirektbetaling.gif" hash="d6da3e67f8096811c2ad0135b2aad80a"/><file name="valus.gif" hash="e62b75eb172934e118a70366baac51ee"/><file name="verifiedbyvisa.gif" hash="517118742fce249485c8eaf6df174764"/><file name="visa.gif" hash="b61251f8c428aa5dca017c9f374957ef"/><file name="visaelectron.gif" hash="e5371ba0da9bb14990d1b8163cedd066"/></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="da_DK"><file name="Mage_Dibs.csv" hash="96107e9f005b09d7c978d8cefdd5ecff"/></dir><dir name="en_US"><file name="Mage_Dibs.csv" hash="96107e9f005b09d7c978d8cefdd5ecff"/></dir><dir name="nb_NO"><file name="Mage_Dibs.csv" hash="96107e9f005b09d7c978d8cefdd5ecff"/></dir><dir name="nn_NO"><file name="Mage_Dibs.csv" hash="96107e9f005b09d7c978d8cefdd5ecff"/></dir><dir name="sv_SE"><file name="Mage_Dibs.csv" hash="96107e9f005b09d7c978d8cefdd5ecff"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="dibs.xml" hash="e0fcac411141323aec77d6b77862f063"/></dir><dir name="template"><dir name="dibs"><dir name="standard"><file name="form.phtml" hash="449b1b49d82239f3af471d598608ae4c"/><file name="redirect_flexwin.phtml" hash="60fabba5e1c4593b213877ea6b82e26f"/><file name="redirect_paymentwindow.phtml" hash="d4525cee67cab47a47513aaabc8a5aa1"/></dir></dir></dir></dir></dir></dir></target><target name="magelocal"><dir name="Mage"><dir name="Adminhtml"><dir name="Block"><dir name="Sales"><dir name="Order"><dir name="View"><dir name="Tab"><file name="Info.php" hash="ce54f910bfcdf2b41b2663dadb7ba2fc"/></dir></dir></dir></dir></dir></dir><dir name="Dibs"><dir name="Block"><dir name="Standard"><file name="Form.php" hash="83d5b53a34224290eeea745a4c3a159f"/><file name="Redirect.php" hash="c14482ae1cd5d95dfed3644675413fdb"/></dir></dir><dir name="controllers"><file name="StandardController.php" hash="a07995cc58b03dd8c4c348f3c7a6ca32"/></dir><dir name="etc"><file name="config.xml" hash="6f9a61f16119799b3626f54106345e8c"/><file name="system.xml" hash="edee3ab619eb80daddf20aef710d54e1"/></dir><dir name="Helper"><file name="Data.php" hash="4797bc2b45d818be26370fa21d540ed0"/></dir><dir name="Model"><dir name="Mysql4"><file name="Setup.php" hash="8840dcdcd6671d465c0e818d5dd673f9"/></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="Color.php" hash="78084ee39f49af7291ab0f6cb0ab7f8b"/><file name="Decorator.php" hash="29e5a6c1aa9f92b0542ad2381d5fbabc"/><file name="Dibslogos.php" hash="29a026f1229bafda94a04352e74739e8"/><file name="Lang.php" hash="842d86a353e0f5d1339bb38feea1ec00"/><file name="Paymentwindow.php" hash="0742db19898c94c777385ce2160e25f9"/></dir></dir></dir><file name="Standard.php" hash="f6bbc7ecb85a7aeb69d034abb906a183"/></dir><dir name="sql"><dir name="dibs_setup"><file name="mysql4-install-0.7.0.php" hash="d88086058012c15b9d9cf68251aa599a"/></dir></dir></dir><dir name="Sales"><dir name="Block"><dir name="Order"><file name="Info.php" hash="9e6166c1a038944900094a9dbde9a3a1"/><file name="Print.php" hash="990ab1545e691e8cdc4daf7a8e802069"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="dibs.xml" hash="8bd9e75f2ab5a6f258ea296caff89d7d"/></dir></target></contents>
38
  <compatible/>
39
  <dependencies/>
40
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>DIBS</name>
4
+ <version>1.0.0.1</version>
5
  <stability>stable</stability>
6
  <license>GPL</license>
7
  <channel>community</channel>
30
  - JCB 3D secure
31
  - Danske Bank e-betaling
32
  - Nordea e-betaling</description>
33
+ <notes>1.0.0.1
34
+ - Added languages:
35
+ Danish, Norwegian, Swedish
36
+ - Added support for "Skip accept page"
37
+
38
+ First release 1.0.0.0</notes>
39
  <authors><author><name>DIBS AS</name><user>auto-converted</user><email>plugins@dibs.dk</email></author></authors>
40
  <date>2009-05-14</date>
41
+ <time>08:57:22</time>
42
+ <contents><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="images"><dir name="dibs"><file name="aktia.gif" hash="7afe00b19b4194fa4ffbdf20cdd469c1"/><file name="amex.gif" hash="f35f89ccdcb954e02a07f6c0a29c7b43"/><file name="bak.gif" hash="c315574fd839dae52a1316b6d8b836b6"/><file name="bankeinzug.gif" hash="3bd20355343bd250a6a704fdbaf9ba62"/><file name="dankort.gif" hash="daa5d5d2c0d541579b0e13aa3cd9d65b"/><file name="danskenetbetaling.gif" hash="1f616c382b72248334f6aa1ca910003b"/><file name="dibslogo.gif" hash="8b308757472fc5aaaedfefd5c79a2d54"/><file name="diners.gif" hash="fabce04659a94993a230285b9a4651e9"/><file name="edankort.gif" hash="4485910a0fb40512233c1a59ddd31015"/><file name="ewire.gif" hash="b50385f7d878be6a3834310d1fbc3a1d"/><file name="forbrugforeningen.gif" hash="d9cd7fa26230a850114b2dc99aea3b22"/><file name="getitcard.gif" hash="b70e244f36e7aec94fe3f6373e1ae8d7"/><file name="ideal.gif" hash="40f07b266bcd5953bb6c079f7eeaae67"/><file name="jcb.gif" hash="aea8c54e043a75b26887fa1307ad4312"/><file name="jcbsecure.gif" hash="1c687214f79b73d7e99f5011c9c22bce"/><file name="loading.gif" hash="7e99e1159a3686f6aa4f90043c554483"/><file name="maestro.gif" hash="d5df5f7986a21bf5a78b9c7a3656facd"/><file name="mastercard.gif" hash="2680e078159e5aedb561c3a705801a44"/><file name="mastercardsecurecode.gif" hash="730735c1e2d36d9fa3bd6468fa0b1a7d"/><file name="mobilcash.gif" hash="befd2f10976c0ab40333f01fc6db4743"/><file name="nordeasole.gif" hash="17b9be1a06125dcc7d1a6be8fea38dd6"/><file name="oko.gif" hash="1cde3c12036ebd74a643aee2ffb0513a"/><file name="pci.gif" hash="b55a87df550ea6789c17e389604e28e1"/><file name="seb.gif" hash="502b1dbeb81bce51abd1ea149d4dde14"/><file name="shbdirektbetaling.gif" hash="0aa7c7fab4133ff4843c0ae73cabe9de"/><file name="swedbankdirektbetaling.gif" hash="d6da3e67f8096811c2ad0135b2aad80a"/><file name="valus.gif" hash="e62b75eb172934e118a70366baac51ee"/><file name="verifiedbyvisa.gif" hash="517118742fce249485c8eaf6df174764"/><file name="visa.gif" hash="b61251f8c428aa5dca017c9f374957ef"/><file name="visaelectron.gif" hash="e5371ba0da9bb14990d1b8163cedd066"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="images"><dir name="dibs"><file name="aktia.gif" hash="7afe00b19b4194fa4ffbdf20cdd469c1"/><file name="amex.gif" hash="f35f89ccdcb954e02a07f6c0a29c7b43"/><file name="bak.gif" hash="c315574fd839dae52a1316b6d8b836b6"/><file name="bankeinzug.gif" hash="3bd20355343bd250a6a704fdbaf9ba62"/><file name="dankort.gif" hash="daa5d5d2c0d541579b0e13aa3cd9d65b"/><file name="danskenetbetaling.gif" hash="1f616c382b72248334f6aa1ca910003b"/><file name="dibslogo.gif" hash="8b308757472fc5aaaedfefd5c79a2d54"/><file name="diners.gif" hash="fabce04659a94993a230285b9a4651e9"/><file name="edankort.gif" hash="4485910a0fb40512233c1a59ddd31015"/><file name="ewire.gif" hash="b50385f7d878be6a3834310d1fbc3a1d"/><file name="forbrugforeningen.gif" hash="d9cd7fa26230a850114b2dc99aea3b22"/><file name="getitcard.gif" hash="b70e244f36e7aec94fe3f6373e1ae8d7"/><file name="ideal.gif" hash="40f07b266bcd5953bb6c079f7eeaae67"/><file name="jcb.gif" hash="aea8c54e043a75b26887fa1307ad4312"/><file name="jcbsecure.gif" hash="1c687214f79b73d7e99f5011c9c22bce"/><file name="loading.gif" hash="7e99e1159a3686f6aa4f90043c554483"/><file name="maestro.gif" hash="d5df5f7986a21bf5a78b9c7a3656facd"/><file name="mastercard.gif" hash="2680e078159e5aedb561c3a705801a44"/><file name="mastercardsecurecode.gif" hash="730735c1e2d36d9fa3bd6468fa0b1a7d"/><file name="mobilcash.gif" hash="befd2f10976c0ab40333f01fc6db4743"/><file name="nordeasole.gif" hash="17b9be1a06125dcc7d1a6be8fea38dd6"/><file name="oko.gif" hash="1cde3c12036ebd74a643aee2ffb0513a"/><file name="pci.gif" hash="b55a87df550ea6789c17e389604e28e1"/><file name="seb.gif" hash="502b1dbeb81bce51abd1ea149d4dde14"/><file name="shbdirektbetaling.gif" hash="0aa7c7fab4133ff4843c0ae73cabe9de"/><file name="swedbankdirektbetaling.gif" hash="d6da3e67f8096811c2ad0135b2aad80a"/><file name="valus.gif" hash="e62b75eb172934e118a70366baac51ee"/><file name="verifiedbyvisa.gif" hash="517118742fce249485c8eaf6df174764"/><file name="visa.gif" hash="b61251f8c428aa5dca017c9f374957ef"/><file name="visaelectron.gif" hash="e5371ba0da9bb14990d1b8163cedd066"/></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="da_DK"><file name="Mage_Dibs.csv" hash="63a1c4f0aaf746e5531289e7523d653b"/></dir><dir name="en_US"><file name="Mage_Dibs.csv" hash="3c87618730f4635447e3b295525c1bb0"/></dir><dir name="nb_NO"><file name="Mage_Dibs.csv" hash="523bb008385aa22182e8b68fce68d69c"/></dir><dir name="nn_NO"><file name="Mage_Dibs.csv" hash="523bb008385aa22182e8b68fce68d69c"/></dir><dir name="sv_SE"><file name="Mage_Dibs.csv" hash="2c16c4c10c68e2a8e07a29fd15cd7016"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="dibs.xml" hash="e0fcac411141323aec77d6b77862f063"/></dir><dir name="template"><dir name="dibs"><dir name="standard"><file name="form.phtml" hash="449b1b49d82239f3af471d598608ae4c"/><file name="redirect_flexwin.phtml" hash="60fabba5e1c4593b213877ea6b82e26f"/><file name="redirect_paymentwindow.phtml" hash="d4525cee67cab47a47513aaabc8a5aa1"/></dir></dir></dir></dir></dir></dir></target><target name="magelocal"><dir name="Mage"><dir name="Adminhtml"><dir name="Block"><dir name="Sales"><dir name="Order"><dir name="View"><dir name="Tab"><file name="Info.php" hash="ce54f910bfcdf2b41b2663dadb7ba2fc"/></dir></dir></dir></dir></dir></dir><dir name="Dibs"><dir name="Block"><dir name="Standard"><file name="Form.php" hash="83d5b53a34224290eeea745a4c3a159f"/><file name="Redirect.php" hash="c14482ae1cd5d95dfed3644675413fdb"/></dir></dir><dir name="controllers"><file name="StandardController.php" hash="154a2389819bddb905bfdf45c1e1adb8"/></dir><dir name="etc"><file name="config.xml" hash="2bb179d49dc58df651eb083c128cdd3d"/><file name="system.xml" hash="edee3ab619eb80daddf20aef710d54e1"/></dir><dir name="Helper"><file name="Data.php" hash="4797bc2b45d818be26370fa21d540ed0"/></dir><dir name="Model"><dir name="Mysql4"><file name="Setup.php" hash="8840dcdcd6671d465c0e818d5dd673f9"/></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="Color.php" hash="78084ee39f49af7291ab0f6cb0ab7f8b"/><file name="Decorator.php" hash="29e5a6c1aa9f92b0542ad2381d5fbabc"/><file name="Dibslogos.php" hash="29a026f1229bafda94a04352e74739e8"/><file name="Lang.php" hash="842d86a353e0f5d1339bb38feea1ec00"/><file name="Paymentwindow.php" hash="0742db19898c94c777385ce2160e25f9"/></dir></dir></dir><file name="Standard.php" hash="f6bbc7ecb85a7aeb69d034abb906a183"/></dir><dir name="sql"><dir name="dibs_setup"><file name="mysql4-install-0.7.0.php" hash="d88086058012c15b9d9cf68251aa599a"/></dir></dir></dir><dir name="Sales"><dir name="Block"><dir name="Order"><file name="Info.php" hash="9e6166c1a038944900094a9dbde9a3a1"/><file name="Print.php" hash="990ab1545e691e8cdc4daf7a8e802069"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="dibs.xml" hash="8bd9e75f2ab5a6f258ea296caff89d7d"/></dir></target></contents>
43
  <compatible/>
44
  <dependencies/>
45
  </package>