Mage_Econda - Version 1.1.6

Version Notes

Release for econda Web Controlling functions.

Download this release

Release Info

Developer Magento Core Team
Extension Mage_Econda
Version 1.1.6
Comparing to
See all releases


Code changes from version 1.1.5 to 1.1.6

app/code/local/Mage/Econda/Block/Econda.php CHANGED
@@ -42,12 +42,13 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
42
  * ECONDA Tracking into Magento Shop-Systems.
43
  */
44
 
45
- //require_once("app/Mage.php");
46
- require_once Mage::getBaseDir().DS.'/app/Mage.php';
47
- Mage::app ();
48
 
49
  class Mage_Econda_Block_Econda extends Mage_Core_Block_Template
50
  {
 
 
51
  public function __construct()
52
  {
53
  parent::__construct();
@@ -56,8 +57,7 @@ class Mage_Econda_Block_Econda extends Mage_Core_Block_Template
56
 
57
  public function getEmos()
58
  {
59
- require Mage::getModuleDir('', 'Mage_Econda').DS.'Block'.DS.'emos.php';
60
-
61
  /*
62
  * config get language
63
  */
@@ -101,7 +101,7 @@ class Mage_Econda_Block_Econda extends Mage_Core_Block_Template
101
  /*
102
  * start of emos string
103
  */
104
- $emosString = "\n\n<!-- Start Econda-Monitor M115 -->\n\n";
105
 
106
  $emos = new EMOS($pathToFile);
107
 
@@ -156,7 +156,7 @@ class Mage_Econda_Block_Econda extends Mage_Core_Block_Template
156
  $contentCheckout = $eLang[5];
157
  $stepCheckout = 'PAYMENT';
158
  }
159
- if(stristr($realUrl,'checkout/multishipping/overview/') != false) {
160
  $contentCheckout = $eLang[36];
161
  $stepCheckout = 'REVIEW';
162
  }
@@ -572,7 +572,7 @@ class Mage_Econda_Block_Econda extends Mage_Core_Block_Template
572
  $emos->addLogin($customerId,1);
573
  }
574
  }
575
-
576
  /*
577
  * emos orderProcess multishipping checkout
578
  */
@@ -598,126 +598,138 @@ class Mage_Econda_Block_Econda extends Mage_Core_Block_Template
598
  $session->setData('econda_order_id',$actOrder);
599
  break;
600
  case 'SUCCESS':
601
- $emos->addOrderProcess("7_".$eLang[41]);
602
 
603
  /*
604
  * addEmosBillingPageArray checkout
605
  */
606
- if(stristr($realUrl,'checkout/onepage/success/') != false || stristr($realUrl,'uospayment/success/') != false) {//onepage
607
- $lastOrder = Mage::getSingleton('checkout/type_onepage')->getLastOrderId();
608
- $lastOrderId = $lastOrder;
609
- $quote = Mage::getSingleton('checkout/type_onepage')->getQuote();
610
- $entityId = $quote->getData('entity_id');
611
-
612
- if(empty($entityId)) {
613
- $tableSfq = $tablePrefix.'sales_flat_quote';
614
- $result = $db->query("SELECT entity_id FROM $tableSfq WHERE reserved_order_id = $lastOrder");
615
- $row = $result->fetch(PDO::FETCH_ASSOC);
616
- $entityId = $row['entity_id'];
617
- }
618
- }
619
- else{//multipage
620
- $entityId = intval($session->getData('econda_order_id'));
621
- $orderIds = Mage::getSingleton('core/session')->getOrderIds(false);
622
- if($orderIds && is_array($orderIds)) {
623
- $lastOrderId = implode(' / ', $orderIds);
624
- }
625
- else {
626
- $customerId = Mage::getSingleton('customer/session')->getCustomerId();
627
- $tableSfqos = $tablePrefix.'sales_order';
628
- $result = $db->query("SELECT increment_id FROM $tableSfqos WHERE customer_id = $customerId");
629
- while($row = $result->fetch(PDO::FETCH_ASSOC)) {
630
- $lastOrderId = $row['increment_id'];
631
  }
632
- }
633
- }
634
- $tableSfqa = $tablePrefix.'sales_flat_quote_address';
635
- $result = $db->query("SELECT customer_id,city,postcode,country_id,base_grand_total,base_subtotal,base_tax_amount,base_shipping_tax_amount FROM $tableSfqa WHERE quote_id = $entityId and address_type = 'shipping'");
636
- $priceTotal = 0;
 
 
 
 
 
 
 
 
637
 
638
- while($row = $result->fetch(PDO::FETCH_ASSOC)) {
639
- $custCountry = $row['country_id'];
640
- $custPostCode = $row['postcode'];
641
- $custCity = $row['city'];
642
- $custId = $row['customer_id'];
643
- $ordId = $lastOrderId;
644
- if(Mage::getStoreConfig($billingOption, $storeId) == '1') {
645
- $priceTotal += $row['base_subtotal'];
646
- }
647
- else if(Mage::getStoreConfig($billingOption, $storeId) == '2') {
648
- $priceTotal += $row['base_subtotal'] + $row['base_tax_amount'] - $row['base_shipping_tax_amount'];
 
 
 
 
649
  }
650
- else {
651
- $priceTotal += $row['base_grand_total'];
652
- }
653
- }
654
 
655
- $priceTotal = $this->convertPrice($priceTotal);
656
- $custAdress = $custCountry.'/'.substr($custPostCode,0,1).'/'.substr($custPostCode,0,2).'/'.$custCity.'/'.$custPostCode;
657
- $emos->addEmosBillingPageArray($ordId,$custId,$priceTotal,$custCountry,$custPostCode,$custCity);
658
 
659
  /*
660
  * addEmosBasketPageArray checkout
661
  */
662
- $basket = array();
663
- $bCounter = 0;
664
- $tableSfqi = $tablePrefix.'sales_flat_quote_item';
665
- $result = $db->query("SELECT product_id,name,qty,price,parent_item_id FROM $tableSfqi WHERE quote_id = $entityId");
666
 
667
- while ($row = $result->fetch(PDO::FETCH_ASSOC)) {
668
- if($row['parent_item_id'] == '') {
669
- $getGroup = $this->getProductCategory($row['product_id']);
670
- if($getGroup) $prodGroup = $getGroup;
671
- else $prodGroup = $eLang[39];
672
- $item = Mage::getModel('catalog/product')->load($row['product_id']);
673
- $eItem = new EMOS_Item();
674
- $eItem->productName = trim($row['name']);
675
- $eItem->productID = $row['product_id'];
676
- $eItem->quantity = number_format($row['qty'],0);
677
- $discount = $row['product_id'];
678
- $tablePrpr = $tablePrefix.'catalog_product_entity_tier_price';
679
- $resultp = $db->query("SELECT qty,value FROM $tablePrpr WHERE entity_id = $discount");
680
- $rowp = $resultp->fetch(PDO::FETCH_ASSOC);
681
- $discountcheck = 0;
682
- if($rowp) {
683
- if($eItem->quantity >= $rowp['qty']) {
684
- $discountcheck = $rowp['value'];
685
- }
686
- }
687
- if(Mage::getStoreConfig($billingOption, $storeId) == '1') {
688
- if($discountcheck > 0) {
689
- $priceTax = Mage::helper('tax')->getPrice($item, $discountcheck, false, null, null, $item->getTaxClassId(), $storeId, true);
690
- }
691
- else if(Mage::helper('tax')->getPrice($item, $item->getFinalPrice(), false, null, null, $item->getTaxClassId(), $storeId, true) != 0) {
692
- $priceTax = Mage::helper('tax')->getPrice($item, $item->getFinalPrice(), false, null, null, $item->getTaxClassId(), $storeId, true);
693
- }
694
- else {
695
- $priceTax = Mage::helper('tax')->getPrice($item, $item->getPrice(), false, null, null, $item->getTaxClassId(), $storeId, true);
696
- }
697
- }
698
- else {
699
- if($discountcheck > 0) {
700
- $priceTax = Mage::helper('tax')->getPrice($item, $discountcheck, false, null, null, $item->getTaxClassId(), $storeId, false);
701
- }
702
- else if(Mage::helper('tax')->getPrice($item, $item->getFinalPrice(), false, null, null, $item->getTaxClassId(), $storeId, false) != 0) {
703
- $priceTax = Mage::helper('tax')->getPrice($item, $item->getFinalPrice(), false, null, null, $item->getTaxClassId(), $storeId, false);
704
- }
705
- else {
706
- $priceTax = Mage::helper('tax')->getPrice($item, $item->getPrice(), false, null, null, $item->getTaxClassId(), $storeId, false);
707
- }
708
- }
709
- $eItem->price = $this->convertPrice($priceTax);
710
- $eItem->productGroup = $prodGroup.'/'.trim($row['name']);
711
- $basket[$bCounter] = $eItem;
712
- $bCounter += 1;
713
- }
714
- }
715
- $emos->addEmosBasketPageArray($basket);
 
 
 
 
716
  }
717
 
718
  $emosString .= $emos->toString();
719
  $emosString .= "\n<!-- End Econda-Monitor -->\n\n";
720
- return $emosString;
 
 
 
 
 
 
721
  }
722
 
723
  /*
42
  * ECONDA Tracking into Magento Shop-Systems.
43
  */
44
 
45
+ //require_once Mage::getBaseDir().DS.'/app/Mage.php';
46
+ //Mage::app ();
 
47
 
48
  class Mage_Econda_Block_Econda extends Mage_Core_Block_Template
49
  {
50
+ var $econdaInt = false;
51
+
52
  public function __construct()
53
  {
54
  parent::__construct();
57
 
58
  public function getEmos()
59
  {
60
+ require_once Mage::getModuleDir('', 'Mage_Econda').DS.'Block'.DS.'emos.php';
 
61
  /*
62
  * config get language
63
  */
101
  /*
102
  * start of emos string
103
  */
104
+ $emosString = "\n\n<!-- Start Econda-Monitor M116 -->\n\n";
105
 
106
  $emos = new EMOS($pathToFile);
107
 
156
  $contentCheckout = $eLang[5];
157
  $stepCheckout = 'PAYMENT';
158
  }
159
+ if(stristr($realUrl,'checkout/multishipping/overview/') != false || stristr($realUrl,'paypal/express/review/') != false) {
160
  $contentCheckout = $eLang[36];
161
  $stepCheckout = 'REVIEW';
162
  }
572
  $emos->addLogin($customerId,1);
573
  }
574
  }
575
+
576
  /*
577
  * emos orderProcess multishipping checkout
578
  */
598
  $session->setData('econda_order_id',$actOrder);
599
  break;
600
  case 'SUCCESS':
601
+ $emos->addOrderProcess("7_".$eLang[41]);
602
 
603
  /*
604
  * addEmosBillingPageArray checkout
605
  */
606
+
607
+ try {
608
+ if(stristr($realUrl,'checkout/onepage/success/') != false || stristr($realUrl,'uospayment/success/') != false) {//onepage
609
+ $lastOrder = Mage::getSingleton('checkout/type_onepage')->getLastOrderId();
610
+ $lastOrderId = $lastOrder;
611
+ $quote = Mage::getSingleton('checkout/type_onepage')->getQuote();
612
+ $entityId = $quote->getData('entity_id');
613
+ if(empty($entityId)) {
614
+ $tableSfq = $tablePrefix.'sales_flat_quote';
615
+ $result = $db->query("SELECT entity_id FROM $tableSfq WHERE reserved_order_id = $lastOrder");
616
+ $row = $result->fetch(PDO::FETCH_ASSOC);
617
+ $entityId = $row['entity_id'];
618
+ }
619
+ }
620
+ else{//multipage
621
+ $entityId = intval($session->getData('econda_order_id'));
622
+ $orderIds = Mage::getSingleton('core/session')->getOrderIds(false);
623
+ if($orderIds && is_array($orderIds)) {
624
+ $lastOrderId = implode(' / ', $orderIds);
 
 
 
 
 
 
625
  }
626
+ else {
627
+ $customerId = Mage::getSingleton('customer/session')->getCustomerId();
628
+ $tableSfqos = $tablePrefix.'sales_order';
629
+ $result = $db->query("SELECT increment_id FROM $tableSfqos WHERE customer_id = $customerId");
630
+ while($row = $result->fetch(PDO::FETCH_ASSOC)) {
631
+ $lastOrderId = $row['increment_id'];
632
+ }
633
+ }
634
+ }
635
+
636
+ $tableSfqa = $tablePrefix.'sales_flat_quote_address';
637
+ $result = $db->query("SELECT customer_id,city,postcode,country_id,base_grand_total,base_subtotal,base_tax_amount,base_shipping_tax_amount FROM $tableSfqa WHERE quote_id = $entityId and address_type = 'shipping'");
638
+ $priceTotal = 0;
639
 
640
+ while($row = $result->fetch(PDO::FETCH_ASSOC)) {
641
+ $custCountry = $row['country_id'];
642
+ $custPostCode = $row['postcode'];
643
+ $custCity = $row['city'];
644
+ $custId = $row['customer_id'];
645
+ $ordId = $lastOrderId;
646
+ if(Mage::getStoreConfig($billingOption, $storeId) == '1') {
647
+ $priceTotal += $row['base_subtotal'];
648
+ }
649
+ else if(Mage::getStoreConfig($billingOption, $storeId) == '2') {
650
+ $priceTotal += $row['base_subtotal'] + $row['base_tax_amount'] - $row['base_shipping_tax_amount'];
651
+ }
652
+ else {
653
+ $priceTotal += $row['base_grand_total'];
654
+ }
655
  }
 
 
 
 
656
 
657
+ $priceTotal = $this->convertPrice($priceTotal);
658
+ $custAdress = $custCountry.'/'.substr($custPostCode,0,1).'/'.substr($custPostCode,0,2).'/'.$custCity.'/'.$custPostCode;
659
+ $emos->addEmosBillingPageArray($ordId,$custId,$priceTotal,$custCountry,$custPostCode,$custCity);
660
 
661
  /*
662
  * addEmosBasketPageArray checkout
663
  */
664
+ $basket = array();
665
+ $bCounter = 0;
666
+ $tableSfqi = $tablePrefix.'sales_flat_quote_item';
667
+ $result = $db->query("SELECT product_id,name,qty,price,parent_item_id FROM $tableSfqi WHERE quote_id = $entityId");
668
 
669
+ while ($row = $result->fetch(PDO::FETCH_ASSOC)) {
670
+ if($row['parent_item_id'] == '') {
671
+ $getGroup = $this->getProductCategory($row['product_id']);
672
+ if($getGroup) $prodGroup = $getGroup;
673
+ else $prodGroup = $eLang[39];
674
+ $item = Mage::getModel('catalog/product')->load($row['product_id']);
675
+ $eItem = new EMOS_Item();
676
+ $eItem->productName = trim($row['name']);
677
+ $eItem->productID = $row['product_id'];
678
+ $eItem->quantity = number_format($row['qty'],0);
679
+ $discount = $row['product_id'];
680
+ $tablePrpr = $tablePrefix.'catalog_product_entity_tier_price';
681
+ $resultp = $db->query("SELECT qty,value FROM $tablePrpr WHERE entity_id = $discount");
682
+ $rowp = $resultp->fetch(PDO::FETCH_ASSOC);
683
+ $discountcheck = 0;
684
+ if($rowp) {
685
+ if($eItem->quantity >= $rowp['qty']) {
686
+ $discountcheck = $rowp['value'];
687
+ }
688
+ }
689
+ if(Mage::getStoreConfig($billingOption, $storeId) == '1') {
690
+ if($discountcheck > 0) {
691
+ $priceTax = Mage::helper('tax')->getPrice($item, $discountcheck, false, null, null, $item->getTaxClassId(), $storeId, true);
692
+ }
693
+ else if(Mage::helper('tax')->getPrice($item, $item->getFinalPrice(), false, null, null, $item->getTaxClassId(), $storeId, true) != 0) {
694
+ $priceTax = Mage::helper('tax')->getPrice($item, $item->getFinalPrice(), false, null, null, $item->getTaxClassId(), $storeId, true);
695
+ }
696
+ else {
697
+ $priceTax = Mage::helper('tax')->getPrice($item, $item->getPrice(), false, null, null, $item->getTaxClassId(), $storeId, true);
698
+ }
699
+ }
700
+ else {
701
+ if($discountcheck > 0) {
702
+ $priceTax = Mage::helper('tax')->getPrice($item, $discountcheck, false, null, null, $item->getTaxClassId(), $storeId, false);
703
+ }
704
+ else if(Mage::helper('tax')->getPrice($item, $item->getFinalPrice(), false, null, null, $item->getTaxClassId(), $storeId, false) != 0) {
705
+ $priceTax = Mage::helper('tax')->getPrice($item, $item->getFinalPrice(), false, null, null, $item->getTaxClassId(), $storeId, false);
706
+ }
707
+ else {
708
+ $priceTax = Mage::helper('tax')->getPrice($item, $item->getPrice(), false, null, null, $item->getTaxClassId(), $storeId, false);
709
+ }
710
+ }
711
+ $eItem->price = $this->convertPrice($priceTax);
712
+ $eItem->productGroup = $prodGroup.'/'.trim($row['name']);
713
+ $basket[$bCounter] = $eItem;
714
+ $bCounter += 1;
715
+ }
716
+ }
717
+ $emos->addEmosBasketPageArray($basket);
718
+ } catch (Exception $e) {
719
+ Mage::log("Econda on success no billing available");
720
+ }
721
+ break;
722
  }
723
 
724
  $emosString .= $emos->toString();
725
  $emosString .= "\n<!-- End Econda-Monitor -->\n\n";
726
+ if(!$this->econdaInt) {
727
+ $this->econdaInt = true;
728
+ return $emosString;
729
+ }
730
+ else {
731
+ return "";
732
+ }
733
  }
734
 
735
  /*
app/code/local/Mage/Econda/Block/emos.php CHANGED
@@ -712,6 +712,8 @@ class EMOS {
712
  /* EMOS class end */
713
 
714
  /* global Functions */
 
 
715
  function getEmosECEvent($item, $event) {
716
  $item = $this->emos_ItemFormat($item);
717
  $out = "";
@@ -749,6 +751,8 @@ function getEMOSBasketEventArray($basket) {
749
  return $b->getEmosBasketArray($basket, "emosBasketArray");
750
  }
751
 
 
 
752
  /* A Class to hold products as well a basket items
753
  * If you want to track a product view, set the quantity to 1.
754
  * For "real" basket items, the quantity should be given in your
712
  /* EMOS class end */
713
 
714
  /* global Functions */
715
+
716
+ /*
717
  function getEmosECEvent($item, $event) {
718
  $item = $this->emos_ItemFormat($item);
719
  $out = "";
751
  return $b->getEmosBasketArray($basket, "emosBasketArray");
752
  }
753
 
754
+ */
755
+
756
  /* A Class to hold products as well a basket items
757
  * If you want to track a product view, set the quantity to 1.
758
  * For "real" basket items, the quantity should be given in your
app/code/local/Mage/Econda/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <Mage_Econda>
5
- <version>1.1.5</version>
6
  </Mage_Econda>
7
  </modules>
8
  <frontend>
2
  <config>
3
  <modules>
4
  <Mage_Econda>
5
+ <version>1.1.6</version>
6
  </Mage_Econda>
7
  </modules>
8
  <frontend>
app/design/frontend/default/default/template/econda/trackerop.phtml CHANGED
@@ -51,7 +51,7 @@ if(stristr($realUrlOp,'checkout/onepage/') != false) {
51
  }
52
 
53
  if($emVersion == '2') {
54
- $emosOut = "\n<!-- Start Econda-Monitor M115 -->\n";
55
  $emosOut .= "\n<script type=\"text/javascript\">\n//<![CDATA[\n";
56
  $emosOut .= " window.emosTrackVersion = 2;\n";
57
  $emosOut .= "//]]>\n</script>";
@@ -66,7 +66,7 @@ if(stristr($realUrlOp,'checkout/onepage/') != false) {
66
  $emosOut .= $emosLogin;
67
  }
68
  else {
69
- $emosOut = "\n<!-- Start Econda-Monitor M115 -->\n";
70
  $emosOut .= "\n<a name=\"emos_name\" title=\"content\" rel=\"Start/".$eLang[38]."\" rev=\"\"></a>\n";
71
  $emosOut .= "<script type=\"text/javascript\">\n//<![CDATA[\n";
72
  $emosOut .= " window.emosPageId = '".$setPageId."'; \n";
51
  }
52
 
53
  if($emVersion == '2') {
54
+ $emosOut = "\n<!-- Start Econda-Monitor M116 -->\n";
55
  $emosOut .= "\n<script type=\"text/javascript\">\n//<![CDATA[\n";
56
  $emosOut .= " window.emosTrackVersion = 2;\n";
57
  $emosOut .= "//]]>\n</script>";
66
  $emosOut .= $emosLogin;
67
  }
68
  else {
69
+ $emosOut = "\n<!-- Start Econda-Monitor M116 -->\n";
70
  $emosOut .= "\n<a name=\"emos_name\" title=\"content\" rel=\"Start/".$eLang[38]."\" rev=\"\"></a>\n";
71
  $emosOut .= "<script type=\"text/javascript\">\n//<![CDATA[\n";
72
  $emosOut .= " window.emosPageId = '".$setPageId."'; \n";
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Mage_Econda</name>
4
- <version>1.1.5</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 Controlling in Magento ein. Weitere Informationen unter http://www.econda.de. Inserts econda Web Contolling into Magento. For further information visit http://www.econda.de/</description>
11
  <notes>Release for econda Web Controlling functions.</notes>
12
  <authors><author><name>ecdev</name><user>auto-converted</user><email>bebop30@gmx.net</email></author></authors>
13
- <date>2010-06-10</date>
14
- <time>11:49:11</time>
15
- <contents><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="econda.xml" hash="cbb5b0bc56602498ea5fc0af88a847ab"/></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="econda.xml" hash="78b79b11372bcad10d2878de1e37e940"/></dir><dir name="template"><dir name="econda"><file name="tracker.phtml" hash="bcfc890d1f3629c9d5b257a4db25bdc3"/><file name="trackerms.phtml" hash="211ec314e674bf87688e4ee2f12c1cec"/><file name="trackerop.phtml" hash="7d20735fe9764a927e804f238558e0f9"/></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="de_AT"><file name="Mage_Econda.csv" hash="bfba4d67b0d62c47a26aeb404f40b17c"/></dir><dir name="de_CH"><file name="Mage_Econda.csv" hash="bfba4d67b0d62c47a26aeb404f40b17c"/></dir><dir name="de_DE"><file name="Mage_Econda.csv" hash="bfba4d67b0d62c47a26aeb404f40b17c"/></dir><dir name="en_US"><file name="Mage_Econda.csv" hash="64d8975467674af7f73ad538073e5a51"/></dir></target><target name="mageweb"><dir name="js"><dir name="tracker"><file name="emosop.js" hash="ffedf0cf5e271d4e984ac6135cbfe2b8"/></dir></dir></target><target name="magelocal"><dir name="Mage"><dir name="Econda"><dir name="Block"><file name="Econda.php" hash="04ef553d127b271c9e8edf74b5428b02"/><file name="emos.php" hash="ce0028bd1b9230ab7e10df24e957a07a"/><dir name="Adminhtml"><file name="Econda.php" hash="dfe2f3270e832a0f9952e262a26a12ee"/><file name="Tracker.php" hash="9a8820c2f5d1b105dfeb023926e0d368"/><dir name="Econda"><file name="Edit.php" hash="43a19bcffd20b3e4c4b497503f7adf2a"/><file name="Grid.php" hash="d92771738a4e196a9ebb255e94e5c8eb"/><dir name="Edit"><file name="Form.php" hash="8e765540fc4aaaf487cbc976b74147bc"/><file name="Tabs.php" hash="86e7ac45dfaa6ac89e30c709f5311538"/><dir name="Tab"><file name="Form.php" hash="eb9530cada5105bf190b927b970744b7"/></dir></dir></dir><dir name="Tracker"><file name="Edit.php" hash="c0496415a5f1d0021b1d2d2313ed0eff"/><file name="Grid.php" hash="3318d472ac71cce739696b287cb81557"/><dir name="Edit"><file name="Form.php" hash="f292fa68f4782eadcac34d757fdce073"/><file name="Tabs.php" hash="c02f68b55b22d77158b841c89af5b230"/><dir name="Tab"><file name="Form.php" hash="3f463742e5f9c61e88c929c70502bf22"/></dir></dir></dir></dir></dir><dir name="controllers"><file name="IndexController.php" hash="253cbb1316220834b9c6222792e59fc4"/><dir name="Adminhtml"><file name="EcondaController.php" hash="8dad3d7cb5ec59fadc5bb1ba5aafae14"/><file name="TrackerController.php" hash="12fdf5c3b1c9ca04cc899faf3272a3e0"/></dir></dir><dir name="etc"><file name="config.xml" hash="4ca574b6f296c9a6a59bc8f9dba27421"/><file name="system.xml" hash="0374fe72e57873f8be4b4fba6cdc9adb"/></dir><dir name="Helper"><file name="Data.php" hash="a2e8e8cc0b42886d8e7fdf6239ac5180"/></dir><dir name="Language"><file name="english.php" hash="d0fa9b08a9cfb9e7c5e8003a5839a22f"/><file name="german.php" hash="d181289a8024e2b4d9f69150fad54ddc"/></dir><dir name="Model"><file name="Econda.php" hash="2129423b43edaa5ad86ca1ce2925f4d5"/><file name="Status.php" hash="8c73ee6feba08a3a9c9cf73105751cbd"/><dir name="Mysql4"><file name="Econda.php" hash="9e3244467bdb6bef7519e90c7b8b9dd8"/><file name="Tracker.php" hash="d0493cdc60d3b3fd7d3e548480641823"/><dir name="Econda"><file name="Collection.php" hash="78207d4301d2d3b6a63121f8b57ae989"/></dir><dir name="Tracker"><file name="Collection.php" hash="411183409afca6ec33aff08fa4884d0f"/></dir></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="Billing.php" hash="13b88fbca03555fc6e5ac8ce82cb0b63"/><file name="Language.php" hash="47d570575b7251fb0f022add31210de1"/><file name="Siteid.php" hash="8d9b69845dd851a60e16ed7e38574720"/><file name="Tracking.php" hash="0040d7a07d501751b8d589d25d98c99d"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Mage_Econda.xml" hash="4857a6367896368610cda11f31de2822"/></dir></target></contents>
16
  <compatible/>
17
  <dependencies/>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Mage_Econda</name>
4
+ <version>1.1.6</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 Controlling in Magento ein. Weitere Informationen unter http://www.econda.de. Inserts econda Web Contolling into Magento. For further information visit http://www.econda.de/</description>
11
  <notes>Release for econda Web Controlling functions.</notes>
12
  <authors><author><name>ecdev</name><user>auto-converted</user><email>bebop30@gmx.net</email></author></authors>
13
+ <date>2010-07-07</date>
14
+ <time>13:37:56</time>
15
+ <contents><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="econda.xml" hash="cbb5b0bc56602498ea5fc0af88a847ab"/></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="econda.xml" hash="78b79b11372bcad10d2878de1e37e940"/></dir><dir name="template"><dir name="econda"><file name="tracker.phtml" hash="bcfc890d1f3629c9d5b257a4db25bdc3"/><file name="trackerms.phtml" hash="211ec314e674bf87688e4ee2f12c1cec"/><file name="trackerop.phtml" hash="9adb4ccdd19cf3b15cd2770ad8d9325d"/></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="de_AT"><file name="Mage_Econda.csv" hash="bfba4d67b0d62c47a26aeb404f40b17c"/></dir><dir name="de_CH"><file name="Mage_Econda.csv" hash="bfba4d67b0d62c47a26aeb404f40b17c"/></dir><dir name="de_DE"><file name="Mage_Econda.csv" hash="bfba4d67b0d62c47a26aeb404f40b17c"/></dir><dir name="en_US"><file name="Mage_Econda.csv" hash="64d8975467674af7f73ad538073e5a51"/></dir></target><target name="mageweb"><dir name="js"><dir name="tracker"><file name="emosop.js" hash="ffedf0cf5e271d4e984ac6135cbfe2b8"/></dir></dir></target><target name="magelocal"><dir name="Mage"><dir name="Econda"><dir name="Block"><file name="Econda.php" hash="ded14aa2a3a08157d51e5869a811a7de"/><file name="emos.php" hash="eb9f4c896d1798b55697aa9f20870c14"/><dir name="Adminhtml"><file name="Econda.php" hash="dfe2f3270e832a0f9952e262a26a12ee"/><file name="Tracker.php" hash="9a8820c2f5d1b105dfeb023926e0d368"/><dir name="Econda"><file name="Edit.php" hash="43a19bcffd20b3e4c4b497503f7adf2a"/><file name="Grid.php" hash="d92771738a4e196a9ebb255e94e5c8eb"/><dir name="Edit"><file name="Form.php" hash="8e765540fc4aaaf487cbc976b74147bc"/><file name="Tabs.php" hash="86e7ac45dfaa6ac89e30c709f5311538"/><dir name="Tab"><file name="Form.php" hash="eb9530cada5105bf190b927b970744b7"/></dir></dir></dir><dir name="Tracker"><file name="Edit.php" hash="c0496415a5f1d0021b1d2d2313ed0eff"/><file name="Grid.php" hash="3318d472ac71cce739696b287cb81557"/><dir name="Edit"><file name="Form.php" hash="f292fa68f4782eadcac34d757fdce073"/><file name="Tabs.php" hash="c02f68b55b22d77158b841c89af5b230"/><dir name="Tab"><file name="Form.php" hash="3f463742e5f9c61e88c929c70502bf22"/></dir></dir></dir></dir></dir><dir name="controllers"><file name="IndexController.php" hash="253cbb1316220834b9c6222792e59fc4"/><dir name="Adminhtml"><file name="EcondaController.php" hash="8dad3d7cb5ec59fadc5bb1ba5aafae14"/><file name="TrackerController.php" hash="12fdf5c3b1c9ca04cc899faf3272a3e0"/></dir></dir><dir name="etc"><file name="config.xml" hash="d4b7535cda8bd78dd0b2ca630fec9937"/><file name="system.xml" hash="0374fe72e57873f8be4b4fba6cdc9adb"/></dir><dir name="Helper"><file name="Data.php" hash="a2e8e8cc0b42886d8e7fdf6239ac5180"/></dir><dir name="Language"><file name="english.php" hash="d0fa9b08a9cfb9e7c5e8003a5839a22f"/><file name="german.php" hash="d181289a8024e2b4d9f69150fad54ddc"/></dir><dir name="Model"><file name="Econda.php" hash="2129423b43edaa5ad86ca1ce2925f4d5"/><file name="Status.php" hash="8c73ee6feba08a3a9c9cf73105751cbd"/><dir name="Mysql4"><file name="Econda.php" hash="9e3244467bdb6bef7519e90c7b8b9dd8"/><file name="Tracker.php" hash="d0493cdc60d3b3fd7d3e548480641823"/><dir name="Econda"><file name="Collection.php" hash="78207d4301d2d3b6a63121f8b57ae989"/></dir><dir name="Tracker"><file name="Collection.php" hash="411183409afca6ec33aff08fa4884d0f"/></dir></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="Billing.php" hash="13b88fbca03555fc6e5ac8ce82cb0b63"/><file name="Language.php" hash="47d570575b7251fb0f022add31210de1"/><file name="Siteid.php" hash="8d9b69845dd851a60e16ed7e38574720"/><file name="Tracking.php" hash="0040d7a07d501751b8d589d25d98c99d"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Mage_Econda.xml" hash="4857a6367896368610cda11f31de2822"/></dir></target></contents>
16
  <compatible/>
17
  <dependencies/>
18
  </package>