Mage_Econda - Version 1.6.0

Version Notes

Integration of econda Web Controlling functions.

Download this release

Release Info

Developer ecdev
Extension Mage_Econda
Version 1.6.0
Comparing to
See all releases


Code changes from version 1.5.9.1 to 1.6.0

app/code/local/Mage/Econda/Block/Econda.php CHANGED
@@ -237,7 +237,7 @@ class Mage_Econda_Block_Econda extends Mage_Core_Block_Template
237
  /**
238
  * Display script code
239
  */
240
- $emosString = "\n\n<!-- Start Econda-Monitor M1591 -->\n";
241
  $emosString .= $emos->toString();
242
  $emosString .= "<!-- End Econda-Monitor -->\n\n";
243
 
237
  /**
238
  * Display script code
239
  */
240
+ $emosString = "\n\n<!-- Start Econda-Monitor M160 -->\n";
241
  $emosString .= $emos->toString();
242
  $emosString .= "<!-- End Econda-Monitor -->\n\n";
243
 
app/code/local/Mage/Econda/Block/EcondaOp.php CHANGED
@@ -66,7 +66,7 @@ class Mage_Econda_Block_EcondaOp extends Mage_Core_Block_Template
66
  $emosLogin .= " emospro.login = [['".$customerId."','0']];\n";
67
  $opsession->setData('econda_logged','2');
68
  }
69
- $emosOut = "\n\n<!-- Start Econda-Monitor M1591 -->\n";
70
  $emosOut .= "<script type=\"text/javascript\">\n//<![CDATA[\n";
71
  $emosOut .= " window.emosTrackVersion = 2;\n";
72
  $emosOut .= "//]]>\n</script>";
66
  $emosLogin .= " emospro.login = [['".$customerId."','0']];\n";
67
  $opsession->setData('econda_logged','2');
68
  }
69
+ $emosOut = "\n\n<!-- Start Econda-Monitor M160 -->\n";
70
  $emosOut .= "<script type=\"text/javascript\">\n//<![CDATA[\n";
71
  $emosOut .= " window.emosTrackVersion = 2;\n";
72
  $emosOut .= "//]]>\n</script>";
app/code/local/Mage/Econda/Model/Basket.php CHANGED
@@ -61,7 +61,7 @@ class Mage_Econda_Model_Basket extends Mage_Core_Model_Abstract
61
  $rootCat = Mage::app()->getStore()->getRootCategoryId();
62
  if(sizeof($getCatId) > 0) {
63
  $catLevel = 0;
64
- $catPath = array();
65
  for($i=0;$i<sizeof($getCatId);$i++) {
66
  $level = Mage::getModel('catalog/category')->load($getCatId[$i])->getLevel();
67
  $catPathPa = Mage::getModel('catalog/category')->load($getCatId[$i])->getPathIds();
@@ -148,8 +148,7 @@ class Mage_Econda_Model_Basket extends Mage_Core_Model_Abstract
148
  else {
149
  $prodGroup = $this->eLang[39][$this->lang];
150
  }
151
-
152
-
153
  if(Mage::getStoreConfig($billingOption, $storeId) == '1') {
154
  if(Mage::helper('tax')->getPrice($item, $item->getFinalPrice(), false) != 0) {
155
  $priceTax = Mage::helper('tax')->getPrice($item, $item->getFinalPrice(), false);
@@ -164,11 +163,16 @@ class Mage_Econda_Model_Basket extends Mage_Core_Model_Abstract
164
  }
165
  else {
166
  $priceTax = Mage::helper('tax')->getPrice($item, $item->getPrice(), true);
167
- }
168
  }
169
  $eItem = Mage::getModel('econda/item');
170
  $eItem->productName = trim($item->getName());
171
- $eItem->productID = $item->getId();
 
 
 
 
 
172
  $eItem->price = $this->convertPrice($priceTax);
173
  $eItem->quantity = '1';
174
  $eItem->productGroup = $prodGroup.'/'.trim($item->getName());
@@ -184,13 +188,19 @@ class Mage_Econda_Model_Basket extends Mage_Core_Model_Abstract
184
  {
185
  $isAddBasket = false;
186
  $billingOption = 'econda/econda_settings/billing_total';
 
187
  $basketActions = Array();
188
  $nIdArray = array();
189
  $nQtyArray = array();
190
  $nNmeArray = array();
191
  $counter = 1;
192
  foreach($this->session->getQuote()->getAllItems() as $item) {
193
- $nIdArray[$counter] = $item->getproductId();
 
 
 
 
 
194
  $nQtyArray[$counter] = $item->getQty();
195
  $nNmeArray[$counter] = $item->getItemId();
196
  $counter += 1;
@@ -218,7 +228,14 @@ class Mage_Econda_Model_Basket extends Mage_Core_Model_Abstract
218
  else $prodGroup = $this->eLang[39][$this->lang];
219
  $eItem = Mage::getModel('econda/item');
220
  $eItem->productName = trim($item->getName());
221
- $eItem->productID = $item->getproductId();
 
 
 
 
 
 
 
222
  // calculate tax
223
  if(Mage::getStoreConfig($billingOption, $storeId) == '1') {
224
  if(Mage::helper('tax')->getPrice($item, $item->getFinalPrice(), true, null, null, $item->getTaxClassId(), $storeId, true) != 0) {
@@ -272,7 +289,12 @@ class Mage_Econda_Model_Basket extends Mage_Core_Model_Abstract
272
  else $prodGroup = $this->eLang[39][$this->lang];
273
  $eItem = Mage::getModel('econda/item');
274
  $eItem->productName = trim($item->getName());
275
- $eItem->productID = $item->getproductId();
 
 
 
 
 
276
  if(Mage::getStoreConfig($billingOption, $storeId) == '1') {
277
  if(Mage::helper('tax')->getPrice($item, $item->getFinalPrice(), true, null, null, $item->getTaxClassId(), $storeId, true) != 0) {
278
  $priceTax = Mage::helper('tax')->getPrice($item, $item->getFinalPrice(), true, null, null, $item->getTaxClassId(), $storeId, true); // with tax
@@ -329,7 +351,7 @@ class Mage_Econda_Model_Basket extends Mage_Core_Model_Abstract
329
  $prefix = Mage::getConfig()->getTablePrefix();
330
  $db = Mage::getSingleton('core/resource')->getConnection('core_write');
331
  $table = $prefix.'sales_flat_quote_item';
332
- $result = $db->query("SELECT product_id,name,qty,price,parent_item_id FROM $table WHERE quote_id = $entityId");
333
  while ($row = $result->fetch(PDO::FETCH_ASSOC)) {
334
  if($row['parent_item_id'] == '') {
335
  $getGroup = Mage::getModel('econda/basket')->getProductCategory($row['product_id']);
@@ -342,7 +364,12 @@ class Mage_Econda_Model_Basket extends Mage_Core_Model_Abstract
342
  $item = Mage::getModel('catalog/product')->load($row['product_id']);
343
  $eItem = Mage::getModel('econda/item');
344
  $eItem->productName = trim($row['name']);
345
- $eItem->productID = $row['product_id'];
 
 
 
 
 
346
  $eItem->quantity = number_format($row['qty'],0);
347
  $discount = $row['product_id'];
348
  $table = $prefix.'catalog_product_entity_tier_price';
@@ -384,7 +411,7 @@ class Mage_Econda_Model_Basket extends Mage_Core_Model_Abstract
384
  }
385
  return $basket;
386
  } catch (Exception $error) {
387
- Mage::log("Econda on success no basket available"); // Write something into log for later support
388
  }
389
  return null;
390
  }
@@ -409,7 +436,7 @@ class Mage_Econda_Model_Basket extends Mage_Core_Model_Abstract
409
  // fallback if there is no result
410
  if(empty($entityId)) {
411
  $table = $prefix.'sales_flat_quote';
412
- $result = $db->fetchRow("SELECT entity_id FROM $table WHERE reserved_order_id = $lastOrder");
413
  $entityId = $result['entity_id'];
414
  }
415
  }
@@ -453,7 +480,7 @@ class Mage_Econda_Model_Basket extends Mage_Core_Model_Abstract
453
  $custAdress = $custCountry.'/'.substr($custPostCode,0,1).'/'.substr($custPostCode,0,2).'/'.$custCity.'/'.$custPostCode;
454
  return Array($ordId,$custId,$priceTotal,$custCountry,$custPostCode,$custCity,$entityId);
455
  } catch (Exception $error) {
456
- Mage::log("Econda on success no billing available"); // Write something into log for later support
457
  }
458
  return null;
459
  }
61
  $rootCat = Mage::app()->getStore()->getRootCategoryId();
62
  if(sizeof($getCatId) > 0) {
63
  $catLevel = 0;
64
+ $catPath = array();
65
  for($i=0;$i<sizeof($getCatId);$i++) {
66
  $level = Mage::getModel('catalog/category')->load($getCatId[$i])->getLevel();
67
  $catPathPa = Mage::getModel('catalog/category')->load($getCatId[$i])->getPathIds();
148
  else {
149
  $prodGroup = $this->eLang[39][$this->lang];
150
  }
151
+
 
152
  if(Mage::getStoreConfig($billingOption, $storeId) == '1') {
153
  if(Mage::helper('tax')->getPrice($item, $item->getFinalPrice(), false) != 0) {
154
  $priceTax = Mage::helper('tax')->getPrice($item, $item->getFinalPrice(), false);
163
  }
164
  else {
165
  $priceTax = Mage::helper('tax')->getPrice($item, $item->getPrice(), true);
166
+ }
167
  }
168
  $eItem = Mage::getModel('econda/item');
169
  $eItem->productName = trim($item->getName());
170
+ if(Mage::getStoreConfig('econda/econda_settings/product_id', $storeId) == '1' && trim($item->getSKU()) != "") {
171
+ $eItem->productID = $item->getSKU();
172
+ }
173
+ else {
174
+ $eItem->productID = $item->getId();
175
+ }
176
  $eItem->price = $this->convertPrice($priceTax);
177
  $eItem->quantity = '1';
178
  $eItem->productGroup = $prodGroup.'/'.trim($item->getName());
188
  {
189
  $isAddBasket = false;
190
  $billingOption = 'econda/econda_settings/billing_total';
191
+ $isSku = Mage::getStoreConfig('econda/econda_settings/product_id', $storeId);
192
  $basketActions = Array();
193
  $nIdArray = array();
194
  $nQtyArray = array();
195
  $nNmeArray = array();
196
  $counter = 1;
197
  foreach($this->session->getQuote()->getAllItems() as $item) {
198
+ if($isSku == '1' && trim($item->getSku()) != "") {
199
+ $nIdArray[$counter] = $item->getSku();
200
+ }
201
+ else{
202
+ $nIdArray[$counter] = $item->getproductId();
203
+ }
204
  $nQtyArray[$counter] = $item->getQty();
205
  $nNmeArray[$counter] = $item->getItemId();
206
  $counter += 1;
228
  else $prodGroup = $this->eLang[39][$this->lang];
229
  $eItem = Mage::getModel('econda/item');
230
  $eItem->productName = trim($item->getName());
231
+
232
+ if($isSku == '1' && trim($item->getSku()) != "") {
233
+ $eItem->productID = $item->getSku();
234
+ }
235
+ else{
236
+ $eItem->productID = $item->getproductId();
237
+ }
238
+
239
  // calculate tax
240
  if(Mage::getStoreConfig($billingOption, $storeId) == '1') {
241
  if(Mage::helper('tax')->getPrice($item, $item->getFinalPrice(), true, null, null, $item->getTaxClassId(), $storeId, true) != 0) {
289
  else $prodGroup = $this->eLang[39][$this->lang];
290
  $eItem = Mage::getModel('econda/item');
291
  $eItem->productName = trim($item->getName());
292
+ if($isSku == '1' && trim($item->getSku()) != "") {
293
+ $eItem->productID = $item->getSku();
294
+ }
295
+ else{
296
+ $eItem->productID = $item->getproductId();
297
+ }
298
  if(Mage::getStoreConfig($billingOption, $storeId) == '1') {
299
  if(Mage::helper('tax')->getPrice($item, $item->getFinalPrice(), true, null, null, $item->getTaxClassId(), $storeId, true) != 0) {
300
  $priceTax = Mage::helper('tax')->getPrice($item, $item->getFinalPrice(), true, null, null, $item->getTaxClassId(), $storeId, true); // with tax
351
  $prefix = Mage::getConfig()->getTablePrefix();
352
  $db = Mage::getSingleton('core/resource')->getConnection('core_write');
353
  $table = $prefix.'sales_flat_quote_item';
354
+ $result = $db->query("SELECT product_id,name,qty,price,parent_item_id,sku FROM $table WHERE quote_id = $entityId");
355
  while ($row = $result->fetch(PDO::FETCH_ASSOC)) {
356
  if($row['parent_item_id'] == '') {
357
  $getGroup = Mage::getModel('econda/basket')->getProductCategory($row['product_id']);
364
  $item = Mage::getModel('catalog/product')->load($row['product_id']);
365
  $eItem = Mage::getModel('econda/item');
366
  $eItem->productName = trim($row['name']);
367
+ if(Mage::getStoreConfig('econda/econda_settings/product_id', $storeId) == '1' && trim($row['sku']) != "") {
368
+ $eItem->productID = trim($row['sku']);
369
+ }
370
+ else{
371
+ $eItem->productID = $row['product_id'];
372
+ }
373
  $eItem->quantity = number_format($row['qty'],0);
374
  $discount = $row['product_id'];
375
  $table = $prefix.'catalog_product_entity_tier_price';
411
  }
412
  return $basket;
413
  } catch (Exception $error) {
414
+ Mage::log("Econda on success no basket available: ".$error); // Write something into log for later support
415
  }
416
  return null;
417
  }
436
  // fallback if there is no result
437
  if(empty($entityId)) {
438
  $table = $prefix.'sales_flat_quote';
439
+ $result = $db->fetchRow("SELECT entity_id FROM $table WHERE reserved_order_id = '".$lastOrder."'");
440
  $entityId = $result['entity_id'];
441
  }
442
  }
480
  $custAdress = $custCountry.'/'.substr($custPostCode,0,1).'/'.substr($custPostCode,0,2).'/'.$custCity.'/'.$custPostCode;
481
  return Array($ordId,$custId,$priceTotal,$custCountry,$custPostCode,$custCity,$entityId);
482
  } catch (Exception $error) {
483
+ Mage::log("Econda on success no billing available: ".$error); // Write something into log for later support
484
  }
485
  return null;
486
  }
app/code/local/Mage/Econda/Model/System/Config/Source/Product.php CHANGED
@@ -22,7 +22,7 @@ class Mage_Econda_Model_System_Config_Source_Product
22
 
23
  /**
24
  * returns the value for billing select in backend
25
- */
26
  public function toOptionArray()
27
  {
28
  return array(
22
 
23
  /**
24
  * returns the value for billing select in backend
25
+ */
26
  public function toOptionArray()
27
  {
28
  return array(
app/code/local/Mage/Econda/etc/config.xml CHANGED
@@ -11,7 +11,7 @@
11
  <config>
12
  <modules>
13
  <Mage_Econda>
14
- <version>1.5.9.1</version>
15
  </Mage_Econda>
16
  </modules>
17
  <frontend>
11
  <config>
12
  <modules>
13
  <Mage_Econda>
14
+ <version>1.6.0</version>
15
  </Mage_Econda>
16
  </modules>
17
  <frontend>
app/code/local/Mage/Econda/etc/system.xml CHANGED
@@ -245,7 +245,7 @@
245
  <show_in_default>1</show_in_default>
246
  <show_in_website>1</show_in_website>
247
  <show_in_store>1</show_in_store>
248
- </tracking_langid>
249
  <billing_total>
250
  <label>Billing and Prices</label>
251
  <comment>Get Billing and Prices with or without Tax and Shipping</comment>
@@ -256,6 +256,16 @@
256
  <show_in_website>1</show_in_website>
257
  <show_in_store>0</show_in_store>
258
  </billing_total>
 
 
 
 
 
 
 
 
 
 
259
  </fields>
260
  </econda_settings>
261
  </groups>
245
  <show_in_default>1</show_in_default>
246
  <show_in_website>1</show_in_website>
247
  <show_in_store>1</show_in_store>
248
+ </tracking_langid>
249
  <billing_total>
250
  <label>Billing and Prices</label>
251
  <comment>Get Billing and Prices with or without Tax and Shipping</comment>
256
  <show_in_website>1</show_in_website>
257
  <show_in_store>0</show_in_store>
258
  </billing_total>
259
+ <product_id>
260
+ <label>Product ID</label>
261
+ <comment>Use the Magento product ID or SKU for product tracking.</comment>
262
+ <frontend_type>select</frontend_type>
263
+ <source_model>econda/system_config_source_product</source_model>
264
+ <sort_order>6</sort_order>
265
+ <show_in_default>1</show_in_default>
266
+ <show_in_website>1</show_in_website>
267
+ <show_in_store>0</show_in_store>
268
+ </product_id>
269
  </fields>
270
  </econda_settings>
271
  </groups>
app/locale/de_AT/Mage_Econda.csv CHANGED
@@ -1,5 +1,6 @@
1
  "Used Language","Verwendete Sprache"
2
  "Settings","Einstellungen"
 
3
  "Select only the language, which at the time of initial activation of your econda product has been selected.","Nur die Sprache verwenden, welche bei der ersten Aktivierung Ihres econda Produktes ausgew&#228hlt wurde."
4
  "Total Price (Grand Total)","Gesamtpreis (Grand Total)"
5
  "Value of Goods without Tax (Subtotal)","Warenwert ohne Steuer (Subtotal)"
@@ -8,4 +9,5 @@
8
  "Billing and Prices","Rechnung und Preise"
9
  "Set Siteid manually. Only change this in agreement with econda. Leave empty, if not used.","Manuelle Festlegung der Siteid. Nur in Abstimmung mit econda vornehmen. Frei lassen, falls nicht ben&#246tigt."
10
  "Set Langid manually. Only change this in agreement with econda. Leave empty, if not used.","Manuelle Festlegung der Langid. Nur in Abstimmung mit econda vornehmen. Frei lassen, falls nicht ben&#246tigt."
 
11
  "Test it for free","Jetzt kostenlos testen"
1
  "Used Language","Verwendete Sprache"
2
  "Settings","Einstellungen"
3
+ "Activation","Aktivierung"
4
  "Select only the language, which at the time of initial activation of your econda product has been selected.","Nur die Sprache verwenden, welche bei der ersten Aktivierung Ihres econda Produktes ausgew&#228hlt wurde."
5
  "Total Price (Grand Total)","Gesamtpreis (Grand Total)"
6
  "Value of Goods without Tax (Subtotal)","Warenwert ohne Steuer (Subtotal)"
9
  "Billing and Prices","Rechnung und Preise"
10
  "Set Siteid manually. Only change this in agreement with econda. Leave empty, if not used.","Manuelle Festlegung der Siteid. Nur in Abstimmung mit econda vornehmen. Frei lassen, falls nicht ben&#246tigt."
11
  "Set Langid manually. Only change this in agreement with econda. Leave empty, if not used.","Manuelle Festlegung der Langid. Nur in Abstimmung mit econda vornehmen. Frei lassen, falls nicht ben&#246tigt."
12
+ "Use the Magento product ID or SKU for product tracking.","Die Magento Produkt ID oder die SKU f&#252r die Produkterfassung verwenden."
13
  "Test it for free","Jetzt kostenlos testen"
app/locale/de_CH/Mage_Econda.csv CHANGED
@@ -1,5 +1,6 @@
1
  "Used Language","Verwendete Sprache"
2
  "Settings","Einstellungen"
 
3
  "Select only the language, which at the time of initial activation of your econda product has been selected.","Nur die Sprache verwenden, welche bei der ersten Aktivierung Ihres econda Produktes ausgew&#228hlt wurde."
4
  "Total Price (Grand Total)","Gesamtpreis (Grand Total)"
5
  "Value of Goods without Tax (Subtotal)","Warenwert ohne Steuer (Subtotal)"
@@ -8,4 +9,5 @@
8
  "Billing and Prices","Rechnung und Preise"
9
  "Set Siteid manually. Only change this in agreement with econda. Leave empty, if not used.","Manuelle Festlegung der Siteid. Nur in Abstimmung mit econda vornehmen. Frei lassen, falls nicht ben&#246tigt."
10
  "Set Langid manually. Only change this in agreement with econda. Leave empty, if not used.","Manuelle Festlegung der Langid. Nur in Abstimmung mit econda vornehmen. Frei lassen, falls nicht ben&#246tigt."
 
11
  "Test it for free","Jetzt kostenlos testen"
1
  "Used Language","Verwendete Sprache"
2
  "Settings","Einstellungen"
3
+ "Activation","Aktivierung"
4
  "Select only the language, which at the time of initial activation of your econda product has been selected.","Nur die Sprache verwenden, welche bei der ersten Aktivierung Ihres econda Produktes ausgew&#228hlt wurde."
5
  "Total Price (Grand Total)","Gesamtpreis (Grand Total)"
6
  "Value of Goods without Tax (Subtotal)","Warenwert ohne Steuer (Subtotal)"
9
  "Billing and Prices","Rechnung und Preise"
10
  "Set Siteid manually. Only change this in agreement with econda. Leave empty, if not used.","Manuelle Festlegung der Siteid. Nur in Abstimmung mit econda vornehmen. Frei lassen, falls nicht ben&#246tigt."
11
  "Set Langid manually. Only change this in agreement with econda. Leave empty, if not used.","Manuelle Festlegung der Langid. Nur in Abstimmung mit econda vornehmen. Frei lassen, falls nicht ben&#246tigt."
12
+ "Use the Magento product ID or SKU for product tracking.","Die Magento Produkt ID oder die SKU f&#252r die Produkterfassung verwenden."
13
  "Test it for free","Jetzt kostenlos testen"
app/locale/de_DE/Mage_Econda.csv CHANGED
@@ -1,5 +1,6 @@
1
  "Used Language","Verwendete Sprache"
2
  "Settings","Einstellungen"
 
3
  "Select only the language, which at the time of initial activation of your econda product has been selected.","Nur die Sprache verwenden, welche bei der ersten Aktivierung Ihres econda Produktes ausgew&#228hlt wurde."
4
  "Total Price (Grand Total)","Gesamtpreis (Grand Total)"
5
  "Value of Goods without Tax (Subtotal)","Warenwert ohne Steuer (Subtotal)"
@@ -8,4 +9,5 @@
8
  "Billing and Prices","Rechnung und Preise"
9
  "Set Siteid manually. Only change this in agreement with econda. Leave empty, if not used.","Manuelle Festlegung der Siteid. Nur in Abstimmung mit econda vornehmen. Frei lassen, falls nicht ben&#246tigt."
10
  "Set Langid manually. Only change this in agreement with econda. Leave empty, if not used.","Manuelle Festlegung der Langid. Nur in Abstimmung mit econda vornehmen. Frei lassen, falls nicht ben&#246tigt."
 
11
  "Test it for free","Jetzt kostenlos testen"
1
  "Used Language","Verwendete Sprache"
2
  "Settings","Einstellungen"
3
+ "Activation","Aktivierung"
4
  "Select only the language, which at the time of initial activation of your econda product has been selected.","Nur die Sprache verwenden, welche bei der ersten Aktivierung Ihres econda Produktes ausgew&#228hlt wurde."
5
  "Total Price (Grand Total)","Gesamtpreis (Grand Total)"
6
  "Value of Goods without Tax (Subtotal)","Warenwert ohne Steuer (Subtotal)"
9
  "Billing and Prices","Rechnung und Preise"
10
  "Set Siteid manually. Only change this in agreement with econda. Leave empty, if not used.","Manuelle Festlegung der Siteid. Nur in Abstimmung mit econda vornehmen. Frei lassen, falls nicht ben&#246tigt."
11
  "Set Langid manually. Only change this in agreement with econda. Leave empty, if not used.","Manuelle Festlegung der Langid. Nur in Abstimmung mit econda vornehmen. Frei lassen, falls nicht ben&#246tigt."
12
+ "Use the Magento product ID or SKU for product tracking.","Die Magento Produkt ID oder die SKU f&#252r die Produkterfassung verwenden."
13
  "Test it for free","Jetzt kostenlos testen"
app/locale/en_US/Mage_Econda.csv CHANGED
@@ -1,5 +1,6 @@
1
  "Used Language","Used Language"
2
  "Settings","Settings"
 
3
  "Select only the language, which at the time of initial activation of your econda product has been selected.","Select only the language, which at the time of initial activation of your econda product has been selected."
4
  "Total Price (Grand Total)","Total Price (Grand Total)"
5
  "Value of Goods without Tax (Subtotal)","Value of Goods without Tax (Subtotal)"
@@ -8,4 +9,5 @@
8
  "Billing and Prices","Billing and Prices"
9
  "Set Siteid manually. Only change this in agreement with econda. Leave empty, if not used.","Set Siteid manually. Only change this in agreement with econda. Leave empty, if not used."
10
  "Set Langid manually. Only change this in agreement with econda. Leave empty, if not used.","Set Langid manually. Only change this in agreement with econda. Leave empty, if not used."
 
11
  "Test it for free","Test it for free"
1
  "Used Language","Used Language"
2
  "Settings","Settings"
3
+ "Activation","Activation"
4
  "Select only the language, which at the time of initial activation of your econda product has been selected.","Select only the language, which at the time of initial activation of your econda product has been selected."
5
  "Total Price (Grand Total)","Total Price (Grand Total)"
6
  "Value of Goods without Tax (Subtotal)","Value of Goods without Tax (Subtotal)"
9
  "Billing and Prices","Billing and Prices"
10
  "Set Siteid manually. Only change this in agreement with econda. Leave empty, if not used.","Set Siteid manually. Only change this in agreement with econda. Leave empty, if not used."
11
  "Set Langid manually. Only change this in agreement with econda. Leave empty, if not used.","Set Langid manually. Only change this in agreement with econda. Leave empty, if not used."
12
+ "Die Magento Produkt ID oder die SKU f&#252r die Produkterfassung verwenden.","Use the Magento product ID or SKU for product tracking."
13
  "Test it for free","Test it for free"
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Mage_Econda</name>
4
- <version>1.5.9.1</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
7
  <channel>community</channel>
@@ -10,9 +10,9 @@
10
  <description>Bindet econda Web Shop Controlling in Magento ein. Weitere Informationen unter http://www.econda.de. Inserts econda Web Shop Contolling into Magento. For further information visit http://www.econda.de/</description>
11
  <notes>Integration of econda Web Controlling functions.</notes>
12
  <authors><author><name>ecdev</name><user>orgonflow</user><email>bebop30@gmx.net</email></author></authors>
13
- <date>2012-10-17</date>
14
- <time>12:09:30</time>
15
- <contents><target name="magelocal"><dir name="Mage"><dir name="Econda"><dir name="Block"><file name="Econda.php" hash="9334aa983e6139949f26174ef54c1260"/><file name="EcondaOp.php" hash="9f1287c340e12787d5f425f9cb43d8bb"/><file name="Emos.php" hash="c52641f152e4f75898f1eecbf9135ba0"/></dir><dir name="Helper"><file name="Data.php" hash="2d50748fa3d1808ea099972920978608"/></dir><dir name="Model"><file name="Base.php" hash="06bd83bfe7560cbbf38ed41d3c048745"/><file name="Basket.php" hash="b26c5a015fe622ea2569fe9aaf91449e"/><file name="Item.php" hash="9618a9100ea8dc320117eb085f1a3e8f"/><dir name="System"><dir name="Config"><dir name="Source"><file name="Billing.php" hash="76be1f2dd15b4a5ef0da884b8b14064a"/><file name="Langid.php" hash="3a7417848f5290bdfd847be1048f0282"/><file name="Language.php" hash="9213fdd301cd1bd06cc2d630b8a48f17"/><file name="Product.php" hash="27b467589cea700f5ba71fe16c11afa4"/><file name="Siteid.php" hash="8ba8e62ef049507f7a16217b7dc5bb52"/></dir></dir></dir></dir><dir name="etc"><file name="config.xml" hash="a57231e188d0c72f85b7d1bd4e7e0f51"/><file name="system.xml" hash="ea2e2f9febe8fdb01cf2730f9139e671"/></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="default"><dir name="template"><dir name="econda"><file name="tracker.phtml" hash="1fce4699f3f8c3cf285a77514a59dd9f"/></dir></dir><dir name="layout"><file name="econda.xml" hash="abb9e9cebc5c19beb3e3adbca92d9785"/></dir></dir></dir><dir name="base"><dir name="default"><dir name="template"><dir name="econda"><file name="tracker.phtml" hash="1fce4699f3f8c3cf285a77514a59dd9f"/></dir></dir><dir name="layout"><file name="econda.xml" hash="abb9e9cebc5c19beb3e3adbca92d9785"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Mage_Econda.xml" hash="a2b5aef713dd6df06ec41792ce51adf9"/></dir></target><target name="mageweb"><dir name="js"><dir name="tracker"><file name="emosop.js" hash="228bdef1308a698a0c864f43aac4a717"/><file name="emos2.js" hash="9063366f40aa9cb4065d5f1091a47f6a"/></dir></dir></target><target name="magelocale"><dir name="de_DE"><file name="Mage_Econda.csv" hash="de7eaf349d6691de31ce3c878e55400a"/></dir><dir name="de_AT"><file name="Mage_Econda.csv" hash="de7eaf349d6691de31ce3c878e55400a"/></dir><dir name="de_CH"><file name="Mage_Econda.csv" hash="de7eaf349d6691de31ce3c878e55400a"/></dir><dir name="en_US"><file name="Mage_Econda.csv" hash="40739a9b0e7638e83173a952b738a0dd"/></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Mage_Econda</name>
4
+ <version>1.6.0</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
7
  <channel>community</channel>
10
  <description>Bindet econda Web Shop Controlling in Magento ein. Weitere Informationen unter http://www.econda.de. Inserts econda Web Shop Contolling into Magento. For further information visit http://www.econda.de/</description>
11
  <notes>Integration of econda Web Controlling functions.</notes>
12
  <authors><author><name>ecdev</name><user>orgonflow</user><email>bebop30@gmx.net</email></author></authors>
13
+ <date>2012-11-22</date>
14
+ <time>14:48:19</time>
15
+ <contents><target name="magelocal"><dir name="Mage"><dir name="Econda"><dir name="Block"><file name="Econda.php" hash="3c6e5f10247575ce59c973942b079d04"/><file name="EcondaOp.php" hash="08d16d4efcbcd81865872ba76df914f1"/><file name="Emos.php" hash="c52641f152e4f75898f1eecbf9135ba0"/></dir><dir name="Helper"><file name="Data.php" hash="2d50748fa3d1808ea099972920978608"/></dir><dir name="Model"><file name="Base.php" hash="06bd83bfe7560cbbf38ed41d3c048745"/><file name="Basket.php" hash="bf6504e542f9ea67847f380be03207d1"/><file name="Item.php" hash="9618a9100ea8dc320117eb085f1a3e8f"/><dir name="System"><dir name="Config"><dir name="Source"><file name="Billing.php" hash="76be1f2dd15b4a5ef0da884b8b14064a"/><file name="Langid.php" hash="3a7417848f5290bdfd847be1048f0282"/><file name="Language.php" hash="9213fdd301cd1bd06cc2d630b8a48f17"/><file name="Product.php" hash="1e176dc62800bf2b72114f13b4746fbe"/><file name="Siteid.php" hash="8ba8e62ef049507f7a16217b7dc5bb52"/></dir></dir></dir></dir><dir name="etc"><file name="config.xml" hash="0e50be8a6a33296844583ed013f4e133"/><file name="system.xml" hash="76c4b1c4c0e2ba3cac8ad21e12850769"/></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="default"><dir name="template"><dir name="econda"><file name="tracker.phtml" hash="1fce4699f3f8c3cf285a77514a59dd9f"/></dir></dir><dir name="layout"><file name="econda.xml" hash="abb9e9cebc5c19beb3e3adbca92d9785"/></dir></dir></dir><dir name="base"><dir name="default"><dir name="template"><dir name="econda"><file name="tracker.phtml" hash="1fce4699f3f8c3cf285a77514a59dd9f"/></dir></dir><dir name="layout"><file name="econda.xml" hash="abb9e9cebc5c19beb3e3adbca92d9785"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Mage_Econda.xml" hash="a2b5aef713dd6df06ec41792ce51adf9"/></dir></target><target name="mageweb"><dir name="js"><dir name="tracker"><file name="emosop.js" hash="228bdef1308a698a0c864f43aac4a717"/><file name="emos2.js" hash="9063366f40aa9cb4065d5f1091a47f6a"/></dir></dir></target><target name="magelocale"><dir name="de_DE"><file name="Mage_Econda.csv" hash="942312acf13a4c973a47566b5ca37b1d"/></dir><dir name="de_AT"><file name="Mage_Econda.csv" hash="942312acf13a4c973a47566b5ca37b1d"/></dir><dir name="de_CH"><file name="Mage_Econda.csv" hash="942312acf13a4c973a47566b5ca37b1d"/></dir><dir name="en_US"><file name="Mage_Econda.csv" hash="66a03ed8c951ee3c7f413d7e5c8419fc"/></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
18
  </package>