Version Notes
1.0.3
-------
Minor bug fix, do not send empty array() objects to Vantage Analytics
1.0.2
-------
Stop sending empty sales quotes to Vantage Analytics.
1.0.1
-------
Improved robustness of historical data export process and report historical data export issues to Vantage Analytics.
1.0.0
-------
First stable release.
Download this release
Release Info
Developer | Brandon Kane |
Extension | VantageAnalytics_Analytics |
Version | 1.0.3 |
Comparing to | |
See all releases |
Code changes from version 1.0.0 to 1.0.3
- app/code/community/VantageAnalytics/Analytics/Helper/Account.php +5 -0
- app/code/community/VantageAnalytics/Analytics/Helper/Log.php +35 -2
- app/code/community/VantageAnalytics/Analytics/Model/Api/Request.php +1 -0
- app/code/community/VantageAnalytics/Analytics/Model/Export/Runner.php +8 -2
- app/code/community/VantageAnalytics/Analytics/Model/Observer/Base.php +6 -2
- app/code/community/VantageAnalytics/Analytics/Model/Observer/SalesQuote.php +3 -0
- app/code/community/VantageAnalytics/Analytics/Test/Model/Observer/SalesQuote.php +13 -0
- app/code/community/VantageAnalytics/Analytics/controllers/Adminhtml/AnalyticsbackendController.php +2 -0
- app/code/community/VantageAnalytics/Analytics/etc/config.xml +1 -1
- package.xml +25 -5
app/code/community/VantageAnalytics/Analytics/Helper/Account.php
CHANGED
@@ -34,6 +34,11 @@ class VantageAnalytics_Analytics_Helper_Account extends Mage_Core_Helper_Abstrac
|
|
34 |
return dirname($this->vantageUrl()) . '/register/';
|
35 |
}
|
36 |
|
|
|
|
|
|
|
|
|
|
|
37 |
public function setVantageUrl($url)
|
38 |
{
|
39 |
Mage::getConfig()->saveConfig('vantageanalytics/accountoptions/vantageurl', $url);
|
34 |
return dirname($this->vantageUrl()) . '/register/';
|
35 |
}
|
36 |
|
37 |
+
public function notifyVantageUrl()
|
38 |
+
{
|
39 |
+
return dirname($this->vantageUrl()) . '/notify/';
|
40 |
+
}
|
41 |
+
|
42 |
public function setVantageUrl($url)
|
43 |
{
|
44 |
Mage::getConfig()->saveConfig('vantageanalytics/accountoptions/vantageurl', $url);
|
app/code/community/VantageAnalytics/Analytics/Helper/Log.php
CHANGED
@@ -28,12 +28,45 @@ class VantageAnalytics_Analytics_Helper_Log extends Mage_Core_Helper_Abstract
|
|
28 |
|
29 |
public function logError($msg)
|
30 |
{
|
31 |
-
|
|
|
|
|
32 |
}
|
33 |
|
34 |
public function logException($e)
|
35 |
{
|
36 |
-
|
|
|
|
|
37 |
Mage::logException($e); // These always make it to a file named exception.log
|
38 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
}
|
28 |
|
29 |
public function logError($msg)
|
30 |
{
|
31 |
+
$formattedMsg = $this->format($msg, true);
|
32 |
+
$this->notifyVantage($formattedMsg);
|
33 |
+
Mage::log($formattedMsg, Zend_Log::ERR, self::LOGFILE, true);
|
34 |
}
|
35 |
|
36 |
public function logException($e)
|
37 |
{
|
38 |
+
$msg = $this->format("\n" . $e->__toString(), true);
|
39 |
+
$this->notifyVantage($msg);
|
40 |
+
Mage::log($msg, Zend_Log::ERR, self::LOGFILE, true);
|
41 |
Mage::logException($e); // These always make it to a file named exception.log
|
42 |
}
|
43 |
+
|
44 |
+
protected function notifyVantage($message)
|
45 |
+
{
|
46 |
+
try {
|
47 |
+
$username = Mage::helper("analytics/account")->username();
|
48 |
+
|
49 |
+
$url = Mage::helper("analytics/account")->notifyVantageUrl();
|
50 |
+
$channel = curl_init($url);
|
51 |
+
curl_setopt($channel, CURLOPT_SSL_VERIFYHOST, 2);
|
52 |
+
curl_setopt($channel, CURLOPT_CUSTOMREQUEST, 'POST');
|
53 |
+
curl_setopt($channel, CURLOPT_RETURNTRANSFER, true);
|
54 |
+
curl_setopt($channel, CURLOPT_CONNECTTIMEOUT_MS, 3200);
|
55 |
+
curl_setopt($channel, CURLOPT_TIMEOUT_MS, 6200);
|
56 |
+
|
57 |
+
$body = json_encode(array('username' => $username, 'message' => $message));
|
58 |
+
curl_setopt($channel, CURLOPT_POSTFIELDS, $body);
|
59 |
+
|
60 |
+
$headers = array(
|
61 |
+
'Content-type: application/json',
|
62 |
+
'Content-length: ' . strlen($body)
|
63 |
+
);
|
64 |
+
|
65 |
+
curl_setopt($channel, CURLOPT_HTTPHEADER, $headers);
|
66 |
+
$result = curl_exec($channel);
|
67 |
+
} catch (Exception $e) {
|
68 |
+
// Don't raise exceptions from an exception handler.
|
69 |
+
}
|
70 |
+
}
|
71 |
+
|
72 |
}
|
app/code/community/VantageAnalytics/Analytics/Model/Api/Request.php
CHANGED
@@ -29,6 +29,7 @@ class VantageAnalytics_Analytics_Model_Api_Request
|
|
29 |
curl_setopt($channel, CURLOPT_SSL_VERIFYHOST, 2);
|
30 |
curl_setopt($channel, CURLOPT_CUSTOMREQUEST, $method);
|
31 |
curl_setopt($channel, CURLOPT_RETURNTRANSFER, true);
|
|
|
32 |
|
33 |
$entityData['username'] = $this->apiUsername;
|
34 |
$body = json_encode($entityData);
|
29 |
curl_setopt($channel, CURLOPT_SSL_VERIFYHOST, 2);
|
30 |
curl_setopt($channel, CURLOPT_CUSTOMREQUEST, $method);
|
31 |
curl_setopt($channel, CURLOPT_RETURNTRANSFER, true);
|
32 |
+
curl_setopt($channel, CURLOPT_CONNECTTIMEOUT_MS, 24000);
|
33 |
|
34 |
$entityData['username'] = $this->apiUsername;
|
35 |
$body = json_encode($entityData);
|
app/code/community/VantageAnalytics/Analytics/Model/Export/Runner.php
CHANGED
@@ -22,8 +22,14 @@ class VantageAnalytics_Analytics_Model_Export_Runner
|
|
22 |
$entities = array('Store', 'Customer', 'Product', 'Order');
|
23 |
Mage::helper('analytics/log')->logInfo("Start exporting all entities");
|
24 |
foreach ($entities as $entity) {
|
25 |
-
|
26 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
}
|
28 |
|
29 |
$this->notifyExportComplete();
|
22 |
$entities = array('Store', 'Customer', 'Product', 'Order');
|
23 |
Mage::helper('analytics/log')->logInfo("Start exporting all entities");
|
24 |
foreach ($entities as $entity) {
|
25 |
+
try {
|
26 |
+
Mage::helper('analytics/log')->logInfo("Exporting ". $entity);
|
27 |
+
$exporter = Mage::getModel('analytics/Export_' . $entity);
|
28 |
+
$exporter->run();
|
29 |
+
} catch (Exception $e) {
|
30 |
+
Mage::helper('analytics/log')->logError("Failed to export ". $entity);
|
31 |
+
Mage::helper('analytics/log')->logException($e);
|
32 |
+
}
|
33 |
}
|
34 |
|
35 |
$this->notifyExportComplete();
|
app/code/community/VantageAnalytics/Analytics/Model/Observer/Base.php
CHANGED
@@ -33,7 +33,9 @@ abstract class VantageAnalytics_Analytics_Model_Observer_Base
|
|
33 |
try {
|
34 |
$entity = $this->getEntity($observer->getEvent());
|
35 |
$data = $this->collectData($entity);
|
36 |
-
|
|
|
|
|
37 |
} catch (Exception $e) {
|
38 |
Mage::helper('analytics/log')->logException($e);
|
39 |
}
|
@@ -47,7 +49,9 @@ abstract class VantageAnalytics_Analytics_Model_Observer_Base
|
|
47 |
try {
|
48 |
$entity = $this->getEntity($observer->getEvent());
|
49 |
$data = $this->collectData($entity);
|
50 |
-
|
|
|
|
|
51 |
} catch (Exception $e) {
|
52 |
Mage::helper('analytics/log')->logException($e);
|
53 |
}
|
33 |
try {
|
34 |
$entity = $this->getEntity($observer->getEvent());
|
35 |
$data = $this->collectData($entity);
|
36 |
+
if (!empty($data)) {
|
37 |
+
$this->api->enqueue('create', $data);
|
38 |
+
}
|
39 |
} catch (Exception $e) {
|
40 |
Mage::helper('analytics/log')->logException($e);
|
41 |
}
|
49 |
try {
|
50 |
$entity = $this->getEntity($observer->getEvent());
|
51 |
$data = $this->collectData($entity);
|
52 |
+
if (!empty($data)) {
|
53 |
+
$this->api->enqueue('delete', $data);
|
54 |
+
}
|
55 |
} catch (Exception $e) {
|
56 |
Mage::helper('analytics/log')->logException($e);
|
57 |
}
|
app/code/community/VantageAnalytics/Analytics/Model/Observer/SalesQuote.php
CHANGED
@@ -17,6 +17,9 @@ class VantageAnalytics_Analytics_Model_Observer_SalesQuote extends VantageAnalyt
|
|
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();
|
22 |
if ($tracking) {
|
17 |
return array();
|
18 |
}
|
19 |
$data = parent::collectData($entity);
|
20 |
+
if (!array_key_exists('total_quantity', $data) || $data['total_quantity'] == 0) {
|
21 |
+
return array();
|
22 |
+
}
|
23 |
if (!$this->isAdmin()) { // Get cookies from real shoppers, not site admins
|
24 |
$tracking = Mage::helper('analytics/tracking')->getTrackingFromCookie();
|
25 |
if ($tracking) {
|
app/code/community/VantageAnalytics/Analytics/Test/Model/Observer/SalesQuote.php
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class VantageAnalytics_Analytics_Test_Model_Observer_SalesQuote extends VantageAnalytics_Analytics_Test_Model_Base
|
4 |
+
{
|
5 |
+
/**
|
6 |
+
* *test
|
7 |
+
*/
|
8 |
+
public function testEmptySalesQuote()
|
9 |
+
{
|
10 |
+
$observer = new VantageAnalytics_Analytics_Model_Observer_SalesQuote();
|
11 |
+
}
|
12 |
+
|
13 |
+
}
|
app/code/community/VantageAnalytics/Analytics/controllers/Adminhtml/AnalyticsbackendController.php
CHANGED
@@ -34,6 +34,8 @@ class VantageAnalytics_Analytics_Adminhtml_AnalyticsbackendController extends Ma
|
|
34 |
curl_setopt($channel, CURLOPT_SSL_VERIFYHOST, 2);
|
35 |
curl_setopt($channel, CURLOPT_CUSTOMREQUEST, 'POST');
|
36 |
curl_setopt($channel, CURLOPT_RETURNTRANSFER, true);
|
|
|
|
|
37 |
|
38 |
$account = array(
|
39 |
'username' => $params['username'],
|
34 |
curl_setopt($channel, CURLOPT_SSL_VERIFYHOST, 2);
|
35 |
curl_setopt($channel, CURLOPT_CUSTOMREQUEST, 'POST');
|
36 |
curl_setopt($channel, CURLOPT_RETURNTRANSFER, true);
|
37 |
+
curl_setopt($channel, CURLOPT_CONNECTTIMEOUT_MS, 12200);
|
38 |
+
curl_setopt($channel, CURLOPT_TIMEOUT_MS, 15000);
|
39 |
|
40 |
$account = array(
|
41 |
'username' => $params['username'],
|
app/code/community/VantageAnalytics/Analytics/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<VantageAnalytics_Analytics>
|
5 |
-
<version>1.0.
|
6 |
</VantageAnalytics_Analytics>
|
7 |
</modules>
|
8 |
<phpunit>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<VantageAnalytics_Analytics>
|
5 |
+
<version>1.0.2</version>
|
6 |
</VantageAnalytics_Analytics>
|
7 |
</modules>
|
8 |
<phpunit>
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>VantageAnalytics_Analytics</name>
|
4 |
-
<version>1.0.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://vantageanalytics.com/legal/terms-of-use/">Commercial - Vantage</license>
|
7 |
<channel>community</channel>
|
@@ -25,11 +25,31 @@ Vantage also offers financial insights, such as month to date revenue, that show
|
|
25 |
With the customer segmentation tools Vantage offers, you can export a list of your highest value customers to offer discounts or exclusive offers in as little as 3 clicks!
|
26 |

|
27 |
For store owners with multiple locations or multiple ecommerce stores, we offer a multi-store management panel to monitor each store’s performance.</description>
|
28 |
-
<notes>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
<authors><author><name>Brandon Kane</name><user>brandon</user><email>brandon@vantageanalytics.com</email></author></authors>
|
30 |
-
<date>2015-
|
31 |
-
<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="
|
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.3</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://vantageanalytics.com/legal/terms-of-use/">Commercial - Vantage</license>
|
7 |
<channel>community</channel>
|
25 |
With the customer segmentation tools Vantage offers, you can export a list of your highest value customers to offer discounts or exclusive offers in as little as 3 clicks!
|
26 |

|
27 |
For store owners with multiple locations or multiple ecommerce stores, we offer a multi-store management panel to monitor each store’s performance.</description>
|
28 |
+
<notes>1.0.3
|
29 |
+
-------
|
30 |
+

|
31 |
+
Minor bug fix, do not send empty array() objects to Vantage Analytics
|
32 |
+

|
33 |
+

|
34 |
+
1.0.2
|
35 |
+
-------
|
36 |
+

|
37 |
+
Stop sending empty sales quotes to Vantage Analytics. 
|
38 |
+

|
39 |
+

|
40 |
+
1.0.1
|
41 |
+
-------
|
42 |
+

|
43 |
+
Improved robustness of historical data export process and report historical data export issues to Vantage Analytics.
|
44 |
+

|
45 |
+
1.0.0
|
46 |
+
-------
|
47 |
+

|
48 |
+
First stable release.</notes>
|
49 |
<authors><author><name>Brandon Kane</name><user>brandon</user><email>brandon@vantageanalytics.com</email></author></authors>
|
50 |
+
<date>2015-08-22</date>
|
51 |
+
<time>21:48:56</time>
|
52 |
+
<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="051efa20b28d3a8bf713e93a6db6e216"/><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="eeb557a144f1254d2f01970530eded32"/><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="a555926364401f8c0e00474587399854"/><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="bcd2bb5bfa68741dd35b571e591b3375"/><file name="Store.php" hash="d48abe7899dde0026c27a04317984d7e"/></dir><file name="Heartbeat.php" hash="110d7158f12a86e2dcc877b40c9a44d4"/><dir name="Observer"><file name="Base.php" hash="060b2bc4ae4a6d0cee00d1cf21556d83"/><file name="CatalogProduct.php" hash="c6e553ed6feb5173f0405e771a1203d3"/><file name="Customer.php" hash="0686ca80283a14d98358b8e7179c1269"/><file name="SalesOrder.php" hash="e406749cf6b8e74e341968f2707af82f"/><file name="SalesQuote.php" hash="0bae57dbbdf65f10b8dbb59314861cc9"/><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="Observer"><file name="SalesQuote.php" hash="1a6380469b28386dfe42ed7bd3ee39f5"/></dir><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="848501c2e85164464df2a3885cef7dfa"/><file name="ResetController.php" hash="eb640d29682265f0b33aff6fa2559a6d"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="cdfb6a37810355796f416784ce7f5584"/><file name="config.xml" hash="966cecae33bb9f3d07753b059703f3c6"/><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>
|
53 |
<compatible/>
|
54 |
<dependencies><required><php><min>5.3.0</min><max>6.0.0</max></php></required></dependencies>
|
55 |
</package>
|