VantageAnalytics_Analytics - Version 1.0.0

Version Notes

Re-package for Magento Connect 2.0.

Download this release

Release Info

Developer Brandon Kane
Extension VantageAnalytics_Analytics
Version 1.0.0
Comparing to
See all releases


Code changes from version 0.9.1 to 1.0.0

app/code/community/VantageAnalytics/Analytics/Helper/Tracking.php CHANGED
@@ -15,6 +15,9 @@ class VantageAnalytics_Analytics_Helper_Tracking extends Mage_Core_Helper_Abstra
15
 
16
  public function setInitialCookie($request)
17
  {
 
 
 
18
  if ($this->hasTrackingCookie()) {
19
  return;
20
  }
15
 
16
  public function setInitialCookie($request)
17
  {
18
+ if(!Mage::helper('analytics/account')->isVerified()){
19
+ return;
20
+ }
21
  if ($this->hasTrackingCookie()) {
22
  return;
23
  }
app/code/community/VantageAnalytics/Analytics/Model/Api/Request.php CHANGED
@@ -65,12 +65,11 @@ class VantageAnalytics_Analytics_Model_Api_Request
65
 
66
  protected function wait($attempt)
67
  {
68
- if ($attempt == 10) {
69
  Mage::helper('analytics/log')->logError("Tried $attempt times, giving up");
70
  throw new VantageAnalytics_Analytics_Model_Api_Exceptions_MaxRetries("Maximum retries exceeded");
71
  }
72
- $waitTimes = array(30, 60, 5*60, 10*60, 30*60, 60*60,
73
- 2*60*60, 5*60*60, 12*60*60, 24*60*60);
74
  $seconds = $waitTimes[$attempt];
75
  Mage::helper('analytics/log')->logWarn("Waiting for {$seconds} seconds.");
76
  sleep($seconds);
@@ -80,7 +79,7 @@ class VantageAnalytics_Analytics_Model_Api_Request
80
  {
81
  $attempts = 0;
82
  $success = false;
83
- while ($attempts < 10 && !$success) {
84
  try {
85
  $channel = $this->setupCurl($method, $entityData);
86
  $response = curl_exec($channel);
65
 
66
  protected function wait($attempt)
67
  {
68
+ if ($attempt == 5) {
69
  Mage::helper('analytics/log')->logError("Tried $attempt times, giving up");
70
  throw new VantageAnalytics_Analytics_Model_Api_Exceptions_MaxRetries("Maximum retries exceeded");
71
  }
72
+ $waitTimes = array(5, 30, 60, 5*60, 10*60, 30*60, 60*60);
 
73
  $seconds = $waitTimes[$attempt];
74
  Mage::helper('analytics/log')->logWarn("Waiting for {$seconds} seconds.");
75
  sleep($seconds);
79
  {
80
  $attempts = 0;
81
  $success = false;
82
+ while ($attempts < 5 && !$success) {
83
  try {
84
  $channel = $this->setupCurl($method, $entityData);
85
  $response = curl_exec($channel);
app/code/community/VantageAnalytics/Analytics/Model/Cron.php CHANGED
@@ -14,13 +14,23 @@ class VantageAnalytics_Analytics_Model_Cron
14
 
15
  protected function jitter()
16
  {
17
- $seconds = rand(0, 5*60);
18
  $this->log("Sleeping for {$seconds} seconds");
19
  sleep($seconds);
20
  }
21
 
 
 
 
 
 
 
 
 
22
  protected function getCronLockfile()
23
  {
 
 
24
  if (is_null($this->lockfile)) {
25
  $this->log('lock file opened');
26
  $this->lockfile = fopen(Mage::getBaseDir('var').DS.'locks'.DS.'vantage_cron_lock', 'w');
@@ -55,6 +65,9 @@ class VantageAnalytics_Analytics_Model_Cron
55
 
56
  public function run()
57
  {
 
 
 
58
  $this->jitter();
59
 
60
  if (!$this->acquireCronLock()) {
14
 
15
  protected function jitter()
16
  {
17
+ $seconds = rand(0, 30);
18
  $this->log("Sleeping for {$seconds} seconds");
19
  sleep($seconds);
20
  }
21
 
22
+ protected function ensureLockDirectoryExists()
23
+ {
24
+ $dir = Mage::getBaseDir('var').DS.'locks';
25
+ if (!file_exists($dir)) {
26
+ mkdir($dir);
27
+ }
28
+ }
29
+
30
  protected function getCronLockfile()
31
  {
32
+ $this->ensureLockDirectoryExists();
33
+
34
  if (is_null($this->lockfile)) {
35
  $this->log('lock file opened');
36
  $this->lockfile = fopen(Mage::getBaseDir('var').DS.'locks'.DS.'vantage_cron_lock', 'w');
65
 
66
  public function run()
67
  {
68
+ if (!$this->accountIsVerified()) {
69
+ return;
70
+ }
71
  $this->jitter();
72
 
73
  if (!$this->acquireCronLock()) {
app/code/community/VantageAnalytics/Analytics/Model/Heartbeat.php CHANGED
@@ -9,8 +9,10 @@ class VantageAnalytics_Analytics_Model_Heartbeat
9
 
10
  public function send()
11
  {
12
- $data = VantageAnalytics_Analytics_Model_Debug::factory()->toVantage();
 
13
 
14
- $this->api->send('create', $data);
 
15
  }
16
  }
9
 
10
  public function send()
11
  {
12
+ if (Mage::helper('analytics/account')->isVerified()) {
13
+ $data = VantageAnalytics_Analytics_Model_Debug::factory()->toVantage();
14
 
15
+ $this->api->send('create', $data);
16
+ }
17
  }
18
  }
app/code/community/VantageAnalytics/Analytics/Model/Observer/Base.php CHANGED
@@ -12,6 +12,9 @@ abstract class VantageAnalytics_Analytics_Model_Observer_Base
12
 
13
  protected function collectData($entity)
14
  {
 
 
 
15
  $transform = Mage::getModel("analytics/Transformer_{$this->transformer}", $entity);
16
  return $transform->toVantage();
17
  }
@@ -24,6 +27,9 @@ abstract class VantageAnalytics_Analytics_Model_Observer_Base
24
 
25
  public function performSave($observer)
26
  {
 
 
 
27
  try {
28
  $entity = $this->getEntity($observer->getEvent());
29
  $data = $this->collectData($entity);
@@ -35,6 +41,9 @@ abstract class VantageAnalytics_Analytics_Model_Observer_Base
35
 
36
  public function performDelete($observer)
37
  {
 
 
 
38
  try {
39
  $entity = $this->getEntity($observer->getEvent());
40
  $data = $this->collectData($entity);
12
 
13
  protected function collectData($entity)
14
  {
15
+ if(!Mage::helper('analytics/account')->isVerified()){
16
+ return array();
17
+ }
18
  $transform = Mage::getModel("analytics/Transformer_{$this->transformer}", $entity);
19
  return $transform->toVantage();
20
  }
27
 
28
  public function performSave($observer)
29
  {
30
+ if(!Mage::helper('analytics/account')->isVerified()){
31
+ return;
32
+ }
33
  try {
34
  $entity = $this->getEntity($observer->getEvent());
35
  $data = $this->collectData($entity);
41
 
42
  public function performDelete($observer)
43
  {
44
+ if(!Mage::helper('analytics/account')->isVerified()){
45
+ return;
46
+ }
47
  try {
48
  $entity = $this->getEntity($observer->getEvent());
49
  $data = $this->collectData($entity);
app/code/community/VantageAnalytics/Analytics/Model/Observer/SalesOrder.php CHANGED
@@ -13,6 +13,9 @@ class VantageAnalytics_Analytics_Model_Observer_SalesOrder extends VantageAnalyt
13
 
14
  protected function collectData($entity)
15
  {
 
 
 
16
  $data = parent::collectData($entity);
17
 
18
  // Collect cookies from real shoppers and not site admins.
13
 
14
  protected function collectData($entity)
15
  {
16
+ if(!Mage::helper('analytics/account')->isVerified()){
17
+ return array();
18
+ }
19
  $data = parent::collectData($entity);
20
 
21
  // Collect cookies from real shoppers and not site admins.
app/code/community/VantageAnalytics/Analytics/Model/Observer/SalesQuote.php CHANGED
@@ -13,6 +13,9 @@ class VantageAnalytics_Analytics_Model_Observer_SalesQuote extends VantageAnalyt
13
 
14
  protected function collectData($entity)
15
  {
 
 
 
16
  $data = parent::collectData($entity);
17
  if (!$this->isAdmin()) { // Get cookies from real shoppers, not site admins
18
  $tracking = Mage::helper('analytics/tracking')->getTrackingFromCookie();
13
 
14
  protected function collectData($entity)
15
  {
16
+ if(!Mage::helper('analytics/account')->isVerified()){
17
+ return array();
18
+ }
19
  $data = parent::collectData($entity);
20
  if (!$this->isAdmin()) { // Get cookies from real shoppers, not site admins
21
  $tracking = Mage::helper('analytics/tracking')->getTrackingFromCookie();
app/code/community/VantageAnalytics/Analytics/Model/Observer/Tracking.php CHANGED
@@ -10,6 +10,9 @@ class VantageAnalytics_Analytics_Model_Observer_Tracking
10
 
11
  public function controllerFrontInitBefore($observer)
12
  {
 
 
 
13
  try {
14
  if ($this->isAdmin()) {
15
  return;
10
 
11
  public function controllerFrontInitBefore($observer)
12
  {
13
+ if(!Mage::helper('analytics/account')->isVerified()){
14
+ return;
15
+ }
16
  try {
17
  if ($this->isAdmin()) {
18
  return;
app/code/community/VantageAnalytics/Analytics/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <VantageAnalytics_Analytics>
5
- <version>0.9.0</version>
6
  </VantageAnalytics_Analytics>
7
  </modules>
8
  <phpunit>
2
  <config>
3
  <modules>
4
  <VantageAnalytics_Analytics>
5
+ <version>1.0.0</version>
6
  </VantageAnalytics_Analytics>
7
  </modules>
8
  <phpunit>
package.xml CHANGED
@@ -1,8 +1,8 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>VantageAnalytics_Analytics</name>
4
- <version>0.9.1</version>
5
- <stability>beta</stability>
6
  <license uri="http://vantageanalytics.com/legal/terms-of-use/">Commercial - Vantage</license>
7
  <channel>community</channel>
8
  <extends/>
@@ -27,9 +27,9 @@ With the customer segmentation tools Vantage offers, you can export a list of yo
27
  For store owners with multiple locations or multiple ecommerce stores, we offer a multi-store management panel to monitor each store&#x2019;s performance.</description>
28
  <notes>Re-package for Magento Connect 2.0.</notes>
29
  <authors><author><name>Brandon Kane</name><user>brandon</user><email>brandon@vantageanalytics.com</email></author></authors>
30
- <date>2015-01-17</date>
31
- <time>07:41:26</time>
32
- <contents><target name="magecommunity"><dir name="VantageAnalytics"><dir name="Analytics"><dir name="Block"><dir name="Adminhtml"><file name="Analyticsbackend.php" hash="e305f2e7b0bfad28d84da570b27e7ab7"/><file name="Reset.php" hash="6863822bc8654d1df59e9e6bbe0e067b"/></dir></dir><dir name="Helper"><file name="Account.php" hash="d27fdc873b1d504753e846820b6c079e"/><file name="Data.php" hash="e2368bb846dc4e8090a31c2cd9b4dd64"/><file name="DateFormatter.php" hash="6e98a6efb5263f01a9d463faa1043d6e"/><dir name="Extension"><file name="Lister.php" hash="bcd42cde1226011937276f35b84043b0"/><file name="Pool.php" hash="198c0585d60c9c3cd0d161de43eed4cc"/></dir><file name="Log.php" hash="393f22705307f3253332b2845f291426"/><file name="Queue.php" hash="2d9b23e9b7d6f9847a444c2837ca1f2e"/><file name="Statuses.php" hash="9527eb737121cd34530c813aea52e962"/><file name="Tracking.php" hash="6776a0af3ed0b1fefc91a34d5924f3a1"/></dir><dir name="Model"><file name="AddressRetriever.php" hash="6d6761b08aa8d50f5473ee79b5211254"/><dir name="Api"><dir name="Exceptions"><file name="BadRequest.php" hash="90e31638b100c1f160b04a06a96c75f7"/><file name="CurlError.php" hash="cf82c3b693522cf86c02f9d1f1e83217"/><file name="MaxRetries.php" hash="2f2be83f975277cca1a5c0442d1e0cb3"/><file name="ServerError.php" hash="d68761c5e4e5e9666a4aa992db74a611"/></dir><file name="Request.php" hash="c0caaffbb1b9bfbb1322dde5c15e2c77"/><file name="RequestQueue.php" hash="147d2b63d329baa0afbca75d963dfb6c"/><file name="Secret.php" hash="7056e3d3ae2d54dda82191d9e51832f2"/><file name="Signature.php" hash="9769075f75e55e60442f6e7afe0964d6"/><file name="Username.php" hash="8e8b3b0ae689b615aa19db8608741db9"/><file name="Webhook.php" hash="e75bc24138854f57e3467d98303487a1"/></dir><file name="Cron.php" hash="677b36129ace58629710aeedb9701a05"/><file name="Debug.php" hash="c24900a7e9ecbfeb8c0d9509f3f8e44d"/><dir name="Export"><file name="Base.php" hash="94c85e0918141f25f05ba3f525919608"/><file name="Customer.php" hash="8b06c4fb062e0a7ef0dceea299a632f8"/><file name="Order.php" hash="b019beb39d722ddb66055100a52d8e80"/><file name="Product.php" hash="26a5c6ca05b0eebce9bfc42c089f0b49"/><file name="Runner.php" hash="2c2dbb0da3ea9955a866d76c782ead7f"/><file name="Store.php" hash="d48abe7899dde0026c27a04317984d7e"/></dir><file name="Heartbeat.php" hash="1a61d8c006c2dd394ff0711a50e1e525"/><dir name="Observer"><file name="Base.php" hash="f338ff2150b88b81243fb2592b1dcff4"/><file name="CatalogProduct.php" hash="c6e553ed6feb5173f0405e771a1203d3"/><file name="Customer.php" hash="0686ca80283a14d98358b8e7179c1269"/><file name="SalesOrder.php" hash="d8c271e7a528cac7c00f50d400830a52"/><file name="SalesQuote.php" hash="a9ea93aa1b0f9a96f6ce0a3fbc92341d"/><file name="Tracking.php" hash="0bdf7f4a2253c03362dbffdf82ee5643"/></dir><file name="ParentProduct.php" hash="e15d56807edb680a7c880f88d3cc654c"/><file name="ProductCategories.php" hash="b53d842897083c2ae4b4c4970c3d4c16"/><file name="ProductImages.php" hash="608c0444218733661dc94c214887cadd"/><file name="ProductOptions.php" hash="42fedb046f2ec7deb730239f8b9427d6"/><dir name="Queue"><dir name="Adapter"><file name="Db.php" hash="a1733dc68647c1f812afaf98ce3a26d9"/></dir></dir><dir name="Resource"><dir name="Mysql4"><file name="Setup.php" hash="a115284cf544ad06b799c552b1f8c5c1"/></dir></dir><file name="SubscriberInformation.php" hash="67816c4724238f275a73058553010e83"/><dir name="Transformer"><file name="Address.php" hash="f9f0f27abf5597d89763b55ea9946cd3"/><file name="Base.php" hash="8f766b0d85187de732db44b26a210773"/><file name="BaseSales.php" hash="7e248d70f07b24e50a92999696833101"/><file name="BaseSalesItem.php" hash="aa281fe585defda3844baffeb6dfa9f9"/><file name="Customer.php" hash="481e0972f572340c96a59da8f582dba9"/><file name="Product.php" hash="37d2546adf4af53598c7876f23fae86b"/><file name="SalesOrder.php" hash="9fb3aa63042873fa0f2f6dedc108e4f1"/><file name="SalesOrderLineItem.php" hash="b9ffe0e6278a700a851ee2256e24965b"/><file name="SalesQuote.php" hash="c1712d7eb2b440b4d9c77d9dab96717d"/><file name="SalesQuoteLineItem.php" hash="27687eba35dab7fdadad438aeb63bf03"/><file name="Store.php" hash="cde2395de468981b3b964184dd214afb"/></dir></dir><dir name="Test"><dir name="Model"><dir name="Api"><file name="Signature.php" hash="5db3d5f9456c7948ecb636c9fe2d4850"/></dir><file name="Base.php" hash="fa7cb987301c0d1f092146447bac1d35"/><file name="Config.php" hash="84a1043ecfe94e1ff52de06b1c63254e"/><dir name="Customer"><dir name="fixtures"><file name="simpleCustomer.yaml" hash="e6b22424ddc0940226344bcccf13c745"/></dir></dir><file name="Customer.php" hash="722d0096e8211b4b57485b24efced031"/><file name="DateFormatterTest.php" hash="b7f0ff0cddfb0cce1b73c6a8de8d74dc"/><dir name="LineItem"><dir name="fixtures"><file name="simpleOrder.yaml" hash="8d6ff7b4cf8c434631305b51fca7884c"/></dir></dir><file name="LineItem.php" hash="e35411c7d970af0b5913807830ffe45e"/><dir name="Order"><dir name="fixtures"><file name="orderStatus.yaml" hash="a2786f2eda68ce0035f9edc8beaf9fee"/><file name="orderStatusCanceled.yaml" hash="800fcb6ee04f912e3e3f27efdbdafde3"/><file name="orderStatusComplete.yaml" hash="1c912c447d255f0afd096e6f32eace1c"/><file name="paymentStatusUnpaid.yaml" hash="c0d0a55eec973ad3ee3730ebc143a3b7"/></dir><dir name="providers"><file name="orderStatus.yaml" hash="e88ed6c1b39272f3f4767810a427613c"/></dir></dir><file name="Order.php" hash="24cefdde2b5bf68452f5c6301c1d5efc"/><dir name="Product"><dir name="fixtures"><file name="parentProduct.yaml" hash="931604baf487baa33cf78dc26548431c"/><file name="simpleProduct.yaml" hash="56b88f052816173a79780f43779df4ff"/></dir></dir><file name="Product.php" hash="9f22904ec0015355f6fbf2f287d5574d"/><file name="Webhook.php" hash="d34e01e88599529cf79b8cc27efad550"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="AnalyticsbackendController.php" hash="930611f09144ef049e1d301623cdd4a7"/><file name="ResetController.php" hash="eb640d29682265f0b33aff6fa2559a6d"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="cdfb6a37810355796f416784ce7f5584"/><file name="config.xml" hash="de9854d952810c6868a1ac61d93d2eca"/><file name="system.xml" hash="96810a47632dbee35df743615ced3c41"/></dir><dir name="sql"><dir name="vantageanalytics_analytics_setup"><file name="install-0.1.0.php" hash="0e7150e283f1ece9251af3e3d2ce76aa"/><file name="mysql4-upgrade-0.1.0-0.2.0.php" hash="e61c872d2e3527d8fa9e8daf21d8fc2e"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="VantageAnalytics_Analytics.xml" hash="69ca3371e05fff3d8b1e89849e3fab32"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="analytics.xml" hash="54f3ead5c5c96cc323684335cccbb140"/></dir><dir name="template"><dir name="analytics"><file name="analyticsbackend.phtml" hash="09e58ba423c3ad883483a7cf30ac0656"/></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="css"><file name="register.css" hash="704cc1e177a9353715d065cb0b8841d4"/></dir></dir></dir><dir name="base"><dir name="default"><dir name="images"><file name="vantage-for-magento.png" hash="36604b9b28ca5d8a7ff0ead39323eae9"/></dir></dir></dir></dir></target></contents>
33
  <compatible/>
34
  <dependencies><required><php><min>5.3.0</min><max>6.0.0</max></php></required></dependencies>
35
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>VantageAnalytics_Analytics</name>
4
+ <version>1.0.0</version>
5
+ <stability>stable</stability>
6
  <license uri="http://vantageanalytics.com/legal/terms-of-use/">Commercial - Vantage</license>
7
  <channel>community</channel>
8
  <extends/>
27
  For store owners with multiple locations or multiple ecommerce stores, we offer a multi-store management panel to monitor each store&#x2019;s performance.</description>
28
  <notes>Re-package for Magento Connect 2.0.</notes>
29
  <authors><author><name>Brandon Kane</name><user>brandon</user><email>brandon@vantageanalytics.com</email></author></authors>
30
+ <date>2015-05-06</date>
31
+ <time>15:05:49</time>
32
+ <contents><target name="magecommunity"><dir name="VantageAnalytics"><dir name="Analytics"><dir name="Block"><dir name="Adminhtml"><file name="Analyticsbackend.php" hash="e305f2e7b0bfad28d84da570b27e7ab7"/><file name="Reset.php" hash="6863822bc8654d1df59e9e6bbe0e067b"/></dir></dir><dir name="Helper"><file name="Account.php" hash="d27fdc873b1d504753e846820b6c079e"/><file name="Data.php" hash="e2368bb846dc4e8090a31c2cd9b4dd64"/><file name="DateFormatter.php" hash="6e98a6efb5263f01a9d463faa1043d6e"/><dir name="Extension"><file name="Lister.php" hash="bcd42cde1226011937276f35b84043b0"/><file name="Pool.php" hash="198c0585d60c9c3cd0d161de43eed4cc"/></dir><file name="Log.php" hash="393f22705307f3253332b2845f291426"/><file name="Queue.php" hash="2d9b23e9b7d6f9847a444c2837ca1f2e"/><file name="Statuses.php" hash="9527eb737121cd34530c813aea52e962"/><file name="Tracking.php" hash="27ac8e7d194cb4b18712da1a6a8cf5be"/></dir><dir name="Model"><file name="AddressRetriever.php" hash="6d6761b08aa8d50f5473ee79b5211254"/><dir name="Api"><dir name="Exceptions"><file name="BadRequest.php" hash="90e31638b100c1f160b04a06a96c75f7"/><file name="CurlError.php" hash="cf82c3b693522cf86c02f9d1f1e83217"/><file name="MaxRetries.php" hash="2f2be83f975277cca1a5c0442d1e0cb3"/><file name="ServerError.php" hash="d68761c5e4e5e9666a4aa992db74a611"/></dir><file name="Request.php" hash="4b9b912067e5f62a66b664791d68bf5f"/><file name="RequestQueue.php" hash="147d2b63d329baa0afbca75d963dfb6c"/><file name="Secret.php" hash="7056e3d3ae2d54dda82191d9e51832f2"/><file name="Signature.php" hash="9769075f75e55e60442f6e7afe0964d6"/><file name="Username.php" hash="8e8b3b0ae689b615aa19db8608741db9"/><file name="Webhook.php" hash="e75bc24138854f57e3467d98303487a1"/></dir><file name="Cron.php" hash="174d44cff8c07dfaeb706f2d734cc6f5"/><file name="Debug.php" hash="c24900a7e9ecbfeb8c0d9509f3f8e44d"/><dir name="Export"><file name="Base.php" hash="94c85e0918141f25f05ba3f525919608"/><file name="Customer.php" hash="8b06c4fb062e0a7ef0dceea299a632f8"/><file name="Order.php" hash="b019beb39d722ddb66055100a52d8e80"/><file name="Product.php" hash="26a5c6ca05b0eebce9bfc42c089f0b49"/><file name="Runner.php" hash="2c2dbb0da3ea9955a866d76c782ead7f"/><file name="Store.php" hash="d48abe7899dde0026c27a04317984d7e"/></dir><file name="Heartbeat.php" hash="110d7158f12a86e2dcc877b40c9a44d4"/><dir name="Observer"><file name="Base.php" hash="fe4e5cbf998a457805834ddd006f1a53"/><file name="CatalogProduct.php" hash="c6e553ed6feb5173f0405e771a1203d3"/><file name="Customer.php" hash="0686ca80283a14d98358b8e7179c1269"/><file name="SalesOrder.php" hash="e406749cf6b8e74e341968f2707af82f"/><file name="SalesQuote.php" hash="834cdbfba06a554aaf24b29cf0f2818b"/><file name="Tracking.php" hash="a8a95092168e0c917109bb4ce9c6d9a9"/></dir><file name="ParentProduct.php" hash="e15d56807edb680a7c880f88d3cc654c"/><file name="ProductCategories.php" hash="b53d842897083c2ae4b4c4970c3d4c16"/><file name="ProductImages.php" hash="608c0444218733661dc94c214887cadd"/><file name="ProductOptions.php" hash="42fedb046f2ec7deb730239f8b9427d6"/><dir name="Queue"><dir name="Adapter"><file name="Db.php" hash="a1733dc68647c1f812afaf98ce3a26d9"/></dir></dir><dir name="Resource"><dir name="Mysql4"><file name="Setup.php" hash="a115284cf544ad06b799c552b1f8c5c1"/></dir></dir><file name="SubscriberInformation.php" hash="67816c4724238f275a73058553010e83"/><dir name="Transformer"><file name="Address.php" hash="f9f0f27abf5597d89763b55ea9946cd3"/><file name="Base.php" hash="8f766b0d85187de732db44b26a210773"/><file name="BaseSales.php" hash="7e248d70f07b24e50a92999696833101"/><file name="BaseSalesItem.php" hash="aa281fe585defda3844baffeb6dfa9f9"/><file name="Customer.php" hash="481e0972f572340c96a59da8f582dba9"/><file name="Product.php" hash="37d2546adf4af53598c7876f23fae86b"/><file name="SalesOrder.php" hash="9fb3aa63042873fa0f2f6dedc108e4f1"/><file name="SalesOrderLineItem.php" hash="b9ffe0e6278a700a851ee2256e24965b"/><file name="SalesQuote.php" hash="c1712d7eb2b440b4d9c77d9dab96717d"/><file name="SalesQuoteLineItem.php" hash="27687eba35dab7fdadad438aeb63bf03"/><file name="Store.php" hash="cde2395de468981b3b964184dd214afb"/></dir></dir><dir name="Test"><dir name="Model"><dir name="Api"><file name="Signature.php" hash="5db3d5f9456c7948ecb636c9fe2d4850"/></dir><file name="Base.php" hash="fa7cb987301c0d1f092146447bac1d35"/><file name="Config.php" hash="84a1043ecfe94e1ff52de06b1c63254e"/><dir name="Customer"><dir name="fixtures"><file name="simpleCustomer.yaml" hash="e6b22424ddc0940226344bcccf13c745"/></dir></dir><file name="Customer.php" hash="722d0096e8211b4b57485b24efced031"/><file name="DateFormatterTest.php" hash="b7f0ff0cddfb0cce1b73c6a8de8d74dc"/><dir name="LineItem"><dir name="fixtures"><file name="simpleOrder.yaml" hash="8d6ff7b4cf8c434631305b51fca7884c"/></dir></dir><file name="LineItem.php" hash="e35411c7d970af0b5913807830ffe45e"/><dir name="Order"><dir name="fixtures"><file name="orderStatus.yaml" hash="a2786f2eda68ce0035f9edc8beaf9fee"/><file name="orderStatusCanceled.yaml" hash="800fcb6ee04f912e3e3f27efdbdafde3"/><file name="orderStatusComplete.yaml" hash="1c912c447d255f0afd096e6f32eace1c"/><file name="paymentStatusUnpaid.yaml" hash="c0d0a55eec973ad3ee3730ebc143a3b7"/></dir><dir name="providers"><file name="orderStatus.yaml" hash="e88ed6c1b39272f3f4767810a427613c"/></dir></dir><file name="Order.php" hash="24cefdde2b5bf68452f5c6301c1d5efc"/><dir name="Product"><dir name="fixtures"><file name="parentProduct.yaml" hash="931604baf487baa33cf78dc26548431c"/><file name="simpleProduct.yaml" hash="56b88f052816173a79780f43779df4ff"/></dir></dir><file name="Product.php" hash="9f22904ec0015355f6fbf2f287d5574d"/><file name="Webhook.php" hash="d34e01e88599529cf79b8cc27efad550"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="AnalyticsbackendController.php" hash="930611f09144ef049e1d301623cdd4a7"/><file name="ResetController.php" hash="eb640d29682265f0b33aff6fa2559a6d"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="cdfb6a37810355796f416784ce7f5584"/><file name="config.xml" hash="9435d4b0bcc86b43fe2b46745755b84e"/><file name="system.xml" hash="96810a47632dbee35df743615ced3c41"/></dir><dir name="sql"><dir name="vantageanalytics_analytics_setup"><file name="install-0.1.0.php" hash="0e7150e283f1ece9251af3e3d2ce76aa"/><file name="mysql4-upgrade-0.1.0-0.2.0.php" hash="e61c872d2e3527d8fa9e8daf21d8fc2e"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="VantageAnalytics_Analytics.xml" hash="69ca3371e05fff3d8b1e89849e3fab32"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="analytics.xml" hash="54f3ead5c5c96cc323684335cccbb140"/></dir><dir name="template"><dir name="analytics"><file name="analyticsbackend.phtml" hash="09e58ba423c3ad883483a7cf30ac0656"/></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="css"><file name="register.css" hash="704cc1e177a9353715d065cb0b8841d4"/></dir></dir></dir><dir name="base"><dir name="default"><dir name="images"><file name="vantage-for-magento.png" hash="36604b9b28ca5d8a7ff0ead39323eae9"/></dir></dir></dir></dir></target></contents>
33
  <compatible/>
34
  <dependencies><required><php><min>5.3.0</min><max>6.0.0</max></php></required></dependencies>
35
  </package>