Ometria_Magento_Extension - Version 1.1.6

Version Notes

Change method of observing checkout cart updates to prevent being triggered during backend cart updates.

Download this release

Release Info

Developer Alastair James
Extension Ometria_Magento_Extension
Version 1.1.6
Comparing to
See all releases


Code changes from version 1.1.5 to 1.1.6

app/code/community/Ometria/AbandonedCarts/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <Ometria_AbandonedCarts>
5
- <version>1.1.4</version>
6
  </Ometria_AbandonedCarts>
7
  </modules>
8
 
2
  <config>
3
  <modules>
4
  <Ometria_AbandonedCarts>
5
+ <version>1.1.6</version>
6
  </Ometria_AbandonedCarts>
7
  </modules>
8
 
app/code/community/Ometria/Api/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <Ometria_Api>
5
- <version>1.1.5</version>
6
  </Ometria_Api>
7
  </modules>
8
 
2
  <config>
3
  <modules>
4
  <Ometria_Api>
5
+ <version>1.1.6</version>
6
  </Ometria_Api>
7
  </modules>
8
 
app/code/community/Ometria/Core/Helper/Cookiechannel.php CHANGED
@@ -11,7 +11,7 @@ class Ometria_Core_Helper_Cookiechannel extends Mage_Core_Helper_Abstract {
11
 
12
  // Return if admin area or API call
13
  if (Mage::app()->getStore()->isAdmin()) return;
14
- //if (Mage::getSingleton('api/server')->getAdapter() != null) return;
15
  if (isset($_SERVER['REQUEST_URI']) && stripos($_SERVER['REQUEST_URI'], "/api")) return;
16
 
17
  $ometria_config_helper = Mage::helper('ometria/config');
11
 
12
  // Return if admin area or API call
13
  if (Mage::app()->getStore()->isAdmin()) return;
14
+ if (Mage::getSingleton('api/server')->getAdapter() != null) return;
15
  if (isset($_SERVER['REQUEST_URI']) && stripos($_SERVER['REQUEST_URI'], "/api")) return;
16
 
17
  $ometria_config_helper = Mage::helper('ometria/config');
app/code/community/Ometria/Core/Model/Observer/Cart.php CHANGED
@@ -4,33 +4,38 @@ class Ometria_Core_Model_Observer_Cart {
4
 
5
 
6
  public function basketUpdated(Varien_Event_Observer $observer){
 
 
 
 
7
  // Return if admin area or API call
8
  if (Mage::app()->getStore()->isAdmin()) return;
9
  if (Mage::getSingleton('api/server')->getAdapter() != null) return;
10
 
11
- $this->updateBasketCookie();
 
 
 
 
12
  }
13
 
14
- public function updateBasketCookie() {
15
 
16
  $ometria_product_helper = Mage::helper('ometria/product');
17
  $ometria_cookiechannel_helper = Mage::helper('ometria/cookiechannel');
18
 
19
- # Might not be updated @BUG
20
- $cart = Mage::getModel('checkout/cart')->getQuote();
21
-
22
- $cart_token = substr(md5($cart->created_at.$cart->getId()),0,12);
23
 
24
  $command = array(
25
  'basket',
26
- $cart->getId(),
27
- $cart->getGrandTotal(),
28
  Mage::app()->getStore()->getCurrentCurrencyCode(),
29
  $cart_token
30
  );
31
 
32
  $count = 0;
33
- foreach($cart->getAllVisibleItems() as $item){
34
 
35
  $product = Mage::getModel('catalog/product')->load($item->getProductId());
36
  $buffer = array(
@@ -50,9 +55,9 @@ class Ometria_Core_Model_Observer_Cart {
50
  $ometria_cookiechannel_helper->addCommand($command, true);
51
 
52
  // Identify if needed
53
- if ($cart->getCustomerEmail()) {
54
  $identify_type = 'checkout_billing';
55
- $data = array('e'=>$cart->getCustomerEmail());
56
  $command = array('identify', $identify_type, http_build_query($data));
57
  $ometria_cookiechannel_helper->addCommand($command, true);
58
  }
@@ -62,6 +67,9 @@ class Ometria_Core_Model_Observer_Cart {
62
 
63
  public function orderPlaced(Varien_Event_Observer $observer){
64
 
 
 
 
65
  $ometria_session_helper = Mage::helper('ometria/session');
66
  $ometria_cookiechannel_helper = Mage::helper('ometria/cookiechannel');
67
 
4
 
5
 
6
  public function basketUpdated(Varien_Event_Observer $observer){
7
+
8
+ $ometria_config_helper = Mage::helper('ometria/config');
9
+ if (!$ometria_config_helper->isConfigured()) return;
10
+
11
  // Return if admin area or API call
12
  if (Mage::app()->getStore()->isAdmin()) return;
13
  if (Mage::getSingleton('api/server')->getAdapter() != null) return;
14
 
15
+ $cart = $observer->getEvent()->getCart();
16
+ if ($cart){
17
+ $quote = $cart->getQuote();
18
+ if ($quote) $this->updateBasketCookie($quote);
19
+ }
20
  }
21
 
22
+ public function updateBasketCookie($quote) {
23
 
24
  $ometria_product_helper = Mage::helper('ometria/product');
25
  $ometria_cookiechannel_helper = Mage::helper('ometria/cookiechannel');
26
 
27
+ $cart_token = substr(md5($quote->created_at.$quote->getId()),0,12);
 
 
 
28
 
29
  $command = array(
30
  'basket',
31
+ $quote->getId(),
32
+ $quote->getGrandTotal(),
33
  Mage::app()->getStore()->getCurrentCurrencyCode(),
34
  $cart_token
35
  );
36
 
37
  $count = 0;
38
+ foreach($quote->getAllVisibleItems() as $item){
39
 
40
  $product = Mage::getModel('catalog/product')->load($item->getProductId());
41
  $buffer = array(
55
  $ometria_cookiechannel_helper->addCommand($command, true);
56
 
57
  // Identify if needed
58
+ if ($quote->getCustomerEmail()) {
59
  $identify_type = 'checkout_billing';
60
+ $data = array('e'=>$quote->getCustomerEmail());
61
  $command = array('identify', $identify_type, http_build_query($data));
62
  $ometria_cookiechannel_helper->addCommand($command, true);
63
  }
67
 
68
  public function orderPlaced(Varien_Event_Observer $observer){
69
 
70
+ $ometria_config_helper = Mage::helper('ometria/config');
71
+ if (!$ometria_config_helper->isConfigured()) return;
72
+
73
  $ometria_session_helper = Mage::helper('ometria/session');
74
  $ometria_cookiechannel_helper = Mage::helper('ometria/cookiechannel');
75
 
app/code/community/Ometria/Core/Model/Observer/Customer.php CHANGED
@@ -6,6 +6,9 @@ class Ometria_Core_Model_Observer_Customer {
6
 
7
  public function customerSaveAfter(Varien_Event_Observer $observer) {
8
 
 
 
 
9
  $ometria_ping_helper = Mage::helper('ometria/ping');
10
  $customer = $observer->getEvent()->getCustomer();
11
  $ometria_ping_helper->sendPing('customer', $customer->getId(), array(), $customer->getStoreId());
@@ -14,14 +17,23 @@ class Ometria_Core_Model_Observer_Customer {
14
  }
15
 
16
  public function loggedOut(Varien_Event_Observer $observer){
 
 
 
17
  $this->identify('logout');
18
  }
19
 
20
  public function loggedIn(Varien_Event_Observer $observer){
 
 
 
21
  $this->identify('login');
22
  }
23
 
24
  public function registered(Varien_Event_Observer $observer){
 
 
 
25
  $this->did_register = true;
26
  $this->identify('register');
27
  }
@@ -34,10 +46,10 @@ class Ometria_Core_Model_Observer_Customer {
34
  }
35
 
36
  $customer = Mage::getSingleton('customer/session')->getCustomer();
37
- //if (!$customer) return;
38
- $data = array('e'=>$customer->getEmail(),'i'=>$customer->getId());
39
- $command = array('identify', $event, http_build_query($data));
40
-
41
- $ometria_cookiechannel_helper->addCommand($command, true);
42
  }
43
  }
6
 
7
  public function customerSaveAfter(Varien_Event_Observer $observer) {
8
 
9
+ $ometria_config_helper = Mage::helper('ometria/config');
10
+ if (!$ometria_config_helper->isConfigured()) return;
11
+
12
  $ometria_ping_helper = Mage::helper('ometria/ping');
13
  $customer = $observer->getEvent()->getCustomer();
14
  $ometria_ping_helper->sendPing('customer', $customer->getId(), array(), $customer->getStoreId());
17
  }
18
 
19
  public function loggedOut(Varien_Event_Observer $observer){
20
+ $ometria_config_helper = Mage::helper('ometria/config');
21
+ if (!$ometria_config_helper->isConfigured()) return;
22
+
23
  $this->identify('logout');
24
  }
25
 
26
  public function loggedIn(Varien_Event_Observer $observer){
27
+ $ometria_config_helper = Mage::helper('ometria/config');
28
+ if (!$ometria_config_helper->isConfigured()) return;
29
+
30
  $this->identify('login');
31
  }
32
 
33
  public function registered(Varien_Event_Observer $observer){
34
+ $ometria_config_helper = Mage::helper('ometria/config');
35
+ if (!$ometria_config_helper->isConfigured()) return;
36
+
37
  $this->did_register = true;
38
  $this->identify('register');
39
  }
46
  }
47
 
48
  $customer = Mage::getSingleton('customer/session')->getCustomer();
49
+ if ($customer) {
50
+ $data = array('e'=>$customer->getEmail(),'i'=>$customer->getId());
51
+ $command = array('identify', $event, http_build_query($data));
52
+ $ometria_cookiechannel_helper->addCommand($command, true);
53
+ }
54
  }
55
  }
app/code/community/Ometria/Core/Model/Observer/Newsletter.php CHANGED
@@ -2,6 +2,9 @@
2
 
3
  class Ometria_Core_Model_Observer_Newsletter {
4
  public function handleSubscriberUpdate(Varien_Event_Observer $observer){
 
 
 
5
  $ometria_ping_helper = Mage::helper('ometria/ping');
6
 
7
  $subscriber = $observer->getEvent()->getSubscriber();
2
 
3
  class Ometria_Core_Model_Observer_Newsletter {
4
  public function handleSubscriberUpdate(Varien_Event_Observer $observer){
5
+ $ometria_config_helper = Mage::helper('ometria/config');
6
+ if (!$ometria_config_helper->isConfigured()) return;
7
+
8
  $ometria_ping_helper = Mage::helper('ometria/ping');
9
 
10
  $subscriber = $observer->getEvent()->getSubscriber();
app/code/community/Ometria/Core/Model/Observer/Order.php CHANGED
@@ -10,6 +10,9 @@ class Ometria_Core_Model_Observer_Order {
10
  */
11
  public function salesOrderSaveAfter(Varien_Event_Observer $observer) {
12
 
 
 
 
13
  $ometria_ping_helper = Mage::helper('ometria/ping');
14
  $order = $observer->getEvent()->getOrder();
15
  $ometria_ping_helper->sendPing('transaction', $order->getIncrementId(), array(), $order->getStoreId());
10
  */
11
  public function salesOrderSaveAfter(Varien_Event_Observer $observer) {
12
 
13
+ $ometria_config_helper = Mage::helper('ometria/config');
14
+ if (!$ometria_config_helper->isConfigured()) return;
15
+
16
  $ometria_ping_helper = Mage::helper('ometria/ping');
17
  $order = $observer->getEvent()->getOrder();
18
  $ometria_ping_helper->sendPing('transaction', $order->getIncrementId(), array(), $order->getStoreId());
app/code/community/Ometria/Core/Model/Observer/Product.php CHANGED
@@ -13,6 +13,9 @@ class Ometria_Core_Model_Observer_Product {
13
  public function catalogProductDeleteAfter(Varien_Event_Observer $observer) {
14
  Varien_Profiler::start("Ometria::" . __METHOD__);
15
 
 
 
 
16
  $product = $observer->getEvent()->getProduct();
17
  $this->updateProducts($product->getId());
18
 
@@ -30,6 +33,9 @@ class Ometria_Core_Model_Observer_Product {
30
  public function catalogProductSaveAfter(Varien_Event_Observer $observer) {
31
  Varien_Profiler::start("Ometria::" . __METHOD__);
32
 
 
 
 
33
  $product = $observer->getEvent()->getProduct();
34
  $this->updateProducts($product->getId());
35
 
@@ -47,6 +53,9 @@ class Ometria_Core_Model_Observer_Product {
47
  public function catalogProductUpdateAttributes(Varien_Event_Observer $observer) {
48
  Varien_Profiler::start("Ometria::" . __METHOD__);
49
 
 
 
 
50
  $productIds = Mage::helper('adminhtml/catalog_product_edit_action_attribute')->getProductIds();
51
  $this->updateProducts($productIds);
52
 
@@ -64,6 +73,9 @@ class Ometria_Core_Model_Observer_Product {
64
  public function catalogProductUpdateStatus(Varien_Event_Observer $observer) {
65
  Varien_Profiler::start("Ometria::" . __METHOD__);
66
 
 
 
 
67
  $productIds = Mage::app()->getFrontController()->getRequest()->getParam('product');
68
  $this->updateProducts($productIds);
69
 
13
  public function catalogProductDeleteAfter(Varien_Event_Observer $observer) {
14
  Varien_Profiler::start("Ometria::" . __METHOD__);
15
 
16
+ $ometria_config_helper = Mage::helper('ometria/config');
17
+ if (!$ometria_config_helper->isConfigured()) return;
18
+
19
  $product = $observer->getEvent()->getProduct();
20
  $this->updateProducts($product->getId());
21
 
33
  public function catalogProductSaveAfter(Varien_Event_Observer $observer) {
34
  Varien_Profiler::start("Ometria::" . __METHOD__);
35
 
36
+ $ometria_config_helper = Mage::helper('ometria/config');
37
+ if (!$ometria_config_helper->isConfigured()) return;
38
+
39
  $product = $observer->getEvent()->getProduct();
40
  $this->updateProducts($product->getId());
41
 
53
  public function catalogProductUpdateAttributes(Varien_Event_Observer $observer) {
54
  Varien_Profiler::start("Ometria::" . __METHOD__);
55
 
56
+ $ometria_config_helper = Mage::helper('ometria/config');
57
+ if (!$ometria_config_helper->isConfigured()) return;
58
+
59
  $productIds = Mage::helper('adminhtml/catalog_product_edit_action_attribute')->getProductIds();
60
  $this->updateProducts($productIds);
61
 
73
  public function catalogProductUpdateStatus(Varien_Event_Observer $observer) {
74
  Varien_Profiler::start("Ometria::" . __METHOD__);
75
 
76
+ $ometria_config_helper = Mage::helper('ometria/config');
77
+ if (!$ometria_config_helper->isConfigured()) return;
78
+
79
  $productIds = Mage::app()->getFrontController()->getRequest()->getParam('product');
80
  $this->updateProducts($productIds);
81
 
app/code/community/Ometria/Core/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <Ometria_Core>
5
- <version>1.1.5</version>
6
  </Ometria_Core>
7
  </modules>
8
 
@@ -77,7 +77,8 @@
77
  </ometria_customer_save_after>
78
  </observers>
79
  </customer_save_after>
80
- <sales_quote_save_after>
 
81
  <observers>
82
  <ometria_sales_quote_save_after>
83
  <type>singleton</type>
@@ -85,7 +86,8 @@
85
  <method>basketUpdated</method>
86
  </ometria_sales_quote_save_after>
87
  </observers>
88
- </sales_quote_save_after>
 
89
  <customer_login>
90
  <observers>
91
  <ometria_customer_login>
2
  <config>
3
  <modules>
4
  <Ometria_Core>
5
+ <version>1.1.6</version>
6
  </Ometria_Core>
7
  </modules>
8
 
77
  </ometria_customer_save_after>
78
  </observers>
79
  </customer_save_after>
80
+
81
+ <checkout_cart_save_after>
82
  <observers>
83
  <ometria_sales_quote_save_after>
84
  <type>singleton</type>
86
  <method>basketUpdated</method>
87
  </ometria_sales_quote_save_after>
88
  </observers>
89
+ </checkout_cart_save_after>
90
+
91
  <customer_login>
92
  <observers>
93
  <ometria_customer_login>
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Ometria_Magento_Extension</name>
4
- <version>1.1.5</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">Open Source License (OSL)</license>
7
  <channel>community</channel>
@@ -21,11 +21,11 @@ Enough Data already. Tell me what to do!&#xD;
21
  We don't just pull the right data together in one place, we also create insights. Our team of data scientists have created a set of algorithms to spot weaknesses, under-performance and opportunities, so every time a retailer logs into their dashboards we present a short list of top revenue wins.&#xD;
22
  &#xD;
23
  Whether it's with our multi-dimension funnel analysis which flags up specific channels that may be under-performing, or our customer dashboard which spots channels that deliver customers with the best CLV, our 'actionable insights' come ready to go.</description>
24
- <notes>Fix potential issue with long cookies being dropped by nginx in the case of many model saves per request. </notes>
25
  <authors><author><name>Alastair James</name><user>aljames1981</user><email>al.james@gmail.com</email></author></authors>
26
- <date>2016-02-16</date>
27
- <time>11:03:40</time>
28
- <contents><target name="magecommunity"><dir name="Ometria"><dir name="AbandonedCarts"><dir name="Helper"><file name="Config.php" hash="4ea2f9de193a510a1438a1911f6e9a8d"/><file name="Data.php" hash="1348c35f00b49b2b30034f0d9a819ae8"/></dir><dir name="controllers"><file name="CartlinkController.php" hash="e46a511a87ca264a8df96829905545dc"/></dir><dir name="etc"><file name="config.xml" hash="7e296832bbf7db6a8f1891675c57c4d3"/><file name="system.xml" hash="11db59f5c2f864525e4c1cdd06283ac1"/></dir></dir><dir name="Api"><dir name="Helper"><file name="Data.php" hash="8a19a3bf39de93fab7d2e1333c3c0806"/></dir><dir name="Model"><file name="Api.php" hash="792413443cc6f22152904fb58873c27c"/><file name="Api2.php" hash="e34e5530d8e828fcdb2ce09f6abef01d"/><file name="FixedCouponGenerator.php" hash="b37f5df7471dca9437a7aed70b4c53c0"/></dir><dir name="etc"><file name="api.xml" hash="51d02f0154ac396ef90f4ff484253af3"/><file name="config.xml" hash="461fe8010f21c3e28ee78feb9a99eb3d"/></dir></dir><dir name="Core"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Startwizard.php" hash="48c0cc3736f8a7fbd871d92d1aed9a81"/></dir></dir><dir name="Wizard"><file name="Finished.php" hash="3325319ce22b23c3661a15b7ab6cbb83"/><dir name="Start"><file name="Form.php" hash="e5d6f86a9718da044104245b46230674"/></dir><file name="Start.php" hash="befc4575e361b7a9916f929e2fc58c45"/></dir></dir><file name="Head.php" hash="1b00336f0bd24d46c56b6ced4c0515a6"/></dir><dir name="Helper"><file name="Config.php" hash="2d9a42f28c768aac826a590aaf571488"/><file name="Cookiechannel.php" hash="70ede1f794faeb43412445172b791beb"/><file name="Data.php" hash="26c20107047db9e3911118efbf083135"/><file name="Ping.php" hash="d81761aa5908e3683918fac5d27742fe"/><file name="Product.php" hash="60e3b6bcb43884af7e4a4ed48c3e3411"/><file name="Session.php" hash="798245d7d20c523b3c386c8bf25979d2"/></dir><dir name="Model"><dir name="Config"><dir name="Source"><file name="Productmode.php" hash="3b37b999e8d49fc23af6229bcae86bb9"/></dir></dir><dir name="Observer"><file name="Cart.php" hash="674264fb7825a8867cdf5b1a63bd64ca"/><file name="Customer.php" hash="9da9e4c69b631c08066e7461d9786113"/><file name="Newsletter.php" hash="263acdd139355f562fec961cbbbda633"/><file name="Order.php" hash="673a50e7674277fea9e774857d01c431"/><file name="Product.php" hash="e988fbf3dcf5ef6ea898b2668f2c4f55"/></dir><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="Test"><dir name="Config"><file name="Base.php" hash="997583679f0981fbd2f0560cf40855d1"/></dir><dir name="Model"><dir name="Observer"><file name="Order.php" hash="d4655e7789a87b3fe8093355e862bfc4"/><file name="Product.php" hash="b9d3920d0d489c39245f747f15187085"/></dir></dir></dir><dir name="controllers"><file name="WizardController.php" hash="558e829a66e2ad9a7b7c1ad9d7d4a530"/></dir><dir name="etc"><file name="config.xml" hash="9c7b5164d4eb83c3e0fbe7a7621615d3"/><file name="system.xml" hash="f494e9ed2da1f2554196847753629cb4"/></dir><file name=".DS_Store" hash="d8b910e9c4677fce43c430c2bb123061"/></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><dir name="ometria"><file name="core.xml" hash="d8d696fec5b40262b9307a0bb89bcede"/></dir></dir><dir name="template"><dir name="ometria"><file name="head.phtml" hash="1ef17e826431c85e14532d7660b38ee8"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><dir name="ometria"><file name="core.xml" hash="4fd702d8159187002eebb40c9b3ebe1b"/></dir></dir><dir name="template"><dir name="ometria"><dir name="system"><dir name="config"><file name="start_wizard.phtml" hash="d4a4e6d6ab16048f1e436793cb24a668"/></dir></dir><dir name="wizard"><file name="finished.phtml" hash="e475e0a7fb28b2b054a1b26cae5fd9b8"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Ometria_Core.xml" hash="f8ec0ef46b669bf0070d9064300fc0fd"/><file name="Ometria_Api.xml" hash="e9309a378992b51f710a9fca17a3055e"/><file name="Ometria_AbandonedCarts.xml" hash="a69a03804840e784362410c2596c0a08"/></dir></target><target name="mageweb"><dir name="js"><dir name="ometria"><file name="checkout.js" hash="78b5fed53276d65a42c5cad4bf92a35f"/></dir></dir></target></contents>
29
  <compatible/>
30
  <dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
31
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Ometria_Magento_Extension</name>
4
+ <version>1.1.6</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">Open Source License (OSL)</license>
7
  <channel>community</channel>
21
  We don't just pull the right data together in one place, we also create insights. Our team of data scientists have created a set of algorithms to spot weaknesses, under-performance and opportunities, so every time a retailer logs into their dashboards we present a short list of top revenue wins.&#xD;
22
  &#xD;
23
  Whether it's with our multi-dimension funnel analysis which flags up specific channels that may be under-performing, or our customer dashboard which spots channels that deliver customers with the best CLV, our 'actionable insights' come ready to go.</description>
24
+ <notes>Change method of observing checkout cart updates to prevent being triggered during backend cart updates.</notes>
25
  <authors><author><name>Alastair James</name><user>aljames1981</user><email>al.james@gmail.com</email></author></authors>
26
+ <date>2016-02-23</date>
27
+ <time>17:40:50</time>
28
+ <contents><target name="magecommunity"><dir name="Ometria"><dir name="AbandonedCarts"><dir name="Helper"><file name="Config.php" hash="4ea2f9de193a510a1438a1911f6e9a8d"/><file name="Data.php" hash="1348c35f00b49b2b30034f0d9a819ae8"/></dir><dir name="controllers"><file name="CartlinkController.php" hash="e46a511a87ca264a8df96829905545dc"/></dir><dir name="etc"><file name="config.xml" hash="f6728e5d6c41772852d80ddbea50e617"/><file name="system.xml" hash="11db59f5c2f864525e4c1cdd06283ac1"/></dir></dir><dir name="Api"><dir name="Helper"><file name="Data.php" hash="8a19a3bf39de93fab7d2e1333c3c0806"/></dir><dir name="Model"><file name="Api.php" hash="792413443cc6f22152904fb58873c27c"/><file name="Api2.php" hash="e34e5530d8e828fcdb2ce09f6abef01d"/><file name="FixedCouponGenerator.php" hash="b37f5df7471dca9437a7aed70b4c53c0"/></dir><dir name="etc"><file name="api.xml" hash="51d02f0154ac396ef90f4ff484253af3"/><file name="config.xml" hash="d24d88ea82f43aff21c49ee5c53079b2"/></dir></dir><dir name="Core"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Startwizard.php" hash="48c0cc3736f8a7fbd871d92d1aed9a81"/></dir></dir><dir name="Wizard"><file name="Finished.php" hash="3325319ce22b23c3661a15b7ab6cbb83"/><dir name="Start"><file name="Form.php" hash="e5d6f86a9718da044104245b46230674"/></dir><file name="Start.php" hash="befc4575e361b7a9916f929e2fc58c45"/></dir></dir><file name="Head.php" hash="1b00336f0bd24d46c56b6ced4c0515a6"/></dir><dir name="Helper"><file name="Config.php" hash="2d9a42f28c768aac826a590aaf571488"/><file name="Cookiechannel.php" hash="d8d7343a0e641bf59051b8ab5a06045f"/><file name="Data.php" hash="26c20107047db9e3911118efbf083135"/><file name="Ping.php" hash="d81761aa5908e3683918fac5d27742fe"/><file name="Product.php" hash="60e3b6bcb43884af7e4a4ed48c3e3411"/><file name="Session.php" hash="798245d7d20c523b3c386c8bf25979d2"/></dir><dir name="Model"><dir name="Config"><dir name="Source"><file name="Productmode.php" hash="3b37b999e8d49fc23af6229bcae86bb9"/></dir></dir><dir name="Observer"><file name="Cart.php" hash="1365cb141e1c43f9303256e1343b873a"/><file name="Customer.php" hash="c801c52474228cc56857505d38fa9db7"/><file name="Newsletter.php" hash="34a956a381ba9f5d723f49edc8cdacdf"/><file name="Order.php" hash="a93bd9b9dc73f1c48f70beee71aff7fc"/><file name="Product.php" hash="9bf6ec5b2be5103da7b1585db8cc9beb"/></dir><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="Test"><dir name="Config"><file name="Base.php" hash="997583679f0981fbd2f0560cf40855d1"/></dir><dir name="Model"><dir name="Observer"><file name="Order.php" hash="d4655e7789a87b3fe8093355e862bfc4"/><file name="Product.php" hash="b9d3920d0d489c39245f747f15187085"/></dir></dir></dir><dir name="controllers"><file name="WizardController.php" hash="558e829a66e2ad9a7b7c1ad9d7d4a530"/></dir><dir name="etc"><file name="config.xml" hash="96b5237e4fc5a977143571b002301377"/><file name="system.xml" hash="f494e9ed2da1f2554196847753629cb4"/></dir><file name=".DS_Store" hash="d8b910e9c4677fce43c430c2bb123061"/></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><dir name="ometria"><file name="core.xml" hash="d8d696fec5b40262b9307a0bb89bcede"/></dir></dir><dir name="template"><dir name="ometria"><file name="head.phtml" hash="1ef17e826431c85e14532d7660b38ee8"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><dir name="ometria"><file name="core.xml" hash="4fd702d8159187002eebb40c9b3ebe1b"/></dir></dir><dir name="template"><dir name="ometria"><dir name="system"><dir name="config"><file name="start_wizard.phtml" hash="d4a4e6d6ab16048f1e436793cb24a668"/></dir></dir><dir name="wizard"><file name="finished.phtml" hash="e475e0a7fb28b2b054a1b26cae5fd9b8"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Ometria_Core.xml" hash="f8ec0ef46b669bf0070d9064300fc0fd"/><file name="Ometria_Api.xml" hash="e9309a378992b51f710a9fca17a3055e"/><file name="Ometria_AbandonedCarts.xml" hash="a69a03804840e784362410c2596c0a08"/></dir></target><target name="mageweb"><dir name="js"><dir name="ometria"><file name="checkout.js" hash="78b5fed53276d65a42c5cad4bf92a35f"/></dir></dir></target></contents>
29
  <compatible/>
30
  <dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
31
  </package>