Version Notes
Support for Shipping details in bundles display
Configuring bundles for the Store
Enhancements in Product description in Increasingly bundles
Cart Page bundle fixes
Support for multiple layouts of the bundle display for Product page,Category Page,Cart page
Download this release
Release Info
Developer | Increasingly |
Extension | increasingly_key |
Version | 1.0.4 |
Comparing to | |
See all releases |
Code changes from version 1.0.3 to 1.0.4
- app/code/community/Increasingly/Analytics/Block/Pagetype.php +5 -0
- app/code/community/Increasingly/Analytics/Helper/Data.php +19 -5
- app/code/community/Increasingly/Analytics/Helper/ProductFormatter.php +3 -2
- app/code/community/Increasingly/Analytics/Model/Observer.php +36 -0
- app/code/community/Increasingly/Analytics/controllers/AddbundletocartController.php +22 -0
- app/code/community/Increasingly/Analytics/controllers/ProductsApiController.php +1 -0
- app/code/community/Increasingly/Analytics/etc/config.xml +10 -1
- app/code/community/Increasingly/Analytics/sql/increasingly_analytics_setup/mysql4-install-1.0.4.php +29 -0
- app/design/frontend/base/default/template/increasingly/pagetype.phtml +2 -1
- package.xml +10 -21
app/code/community/Increasingly/Analytics/Block/Pagetype.php
CHANGED
@@ -77,4 +77,9 @@ class Increasingly_Analytics_Block_Pagetype extends Mage_Core_Block_Template
|
|
77 |
$formKey = Mage::getSingleton('core/session')->getFormKey();
|
78 |
return $formKey;
|
79 |
}
|
|
|
|
|
|
|
|
|
|
|
80 |
}
|
77 |
$formKey = Mage::getSingleton('core/session')->getFormKey();
|
78 |
return $formKey;
|
79 |
}
|
80 |
+
|
81 |
+
public function getStoreDetails(){
|
82 |
+
$store_url = Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_WEB);
|
83 |
+
return $store_url;
|
84 |
+
}
|
85 |
}
|
app/code/community/Increasingly/Analytics/Helper/Data.php
CHANGED
@@ -211,13 +211,24 @@ class Increasingly_Analytics_Helper_Data extends Mage_Core_Helper_Abstract
|
|
211 |
*/
|
212 |
public function deleteBundleOnProductDeleteFromCart($product_id){
|
213 |
try {
|
|
|
214 |
$cookieValue = Mage::getModel('core/cookie')->get('ivid');
|
215 |
$userBundleCollection = Mage::getModel('increasingly_analytics/bundle')->getCollection()->addFieldToFilter('increasingly_visitor_id',$cookieValue);
|
|
|
216 |
if(count($userBundleCollection) >= 1){
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
221 |
}
|
222 |
catch (Exception $e)
|
223 |
{
|
@@ -278,7 +289,8 @@ class Increasingly_Analytics_Helper_Data extends Mage_Core_Helper_Abstract
|
|
278 |
$jsonData = json_encode($postData);
|
279 |
$client->setRawData($jsonData, 'application/json');
|
280 |
$response = $client->request('POST');
|
281 |
-
$result = json_decode($response->getBody());
|
|
|
282 |
if ($response->isError()) {
|
283 |
Mage::log($response->getBody(), null, 'Increasingly_Analytics.log');
|
284 |
}
|
@@ -333,5 +345,7 @@ class Increasingly_Analytics_Helper_Data extends Mage_Core_Helper_Abstract
|
|
333 |
return Mage::getStoreConfig(self::XML_PATH_IMAGE_VERSION, $store);
|
334 |
}
|
335 |
|
|
|
|
|
336 |
|
337 |
}
|
211 |
*/
|
212 |
public function deleteBundleOnProductDeleteFromCart($product_id){
|
213 |
try {
|
214 |
+
|
215 |
$cookieValue = Mage::getModel('core/cookie')->get('ivid');
|
216 |
$userBundleCollection = Mage::getModel('increasingly_analytics/bundle')->getCollection()->addFieldToFilter('increasingly_visitor_id',$cookieValue);
|
217 |
+
|
218 |
if(count($userBundleCollection) >= 1){
|
219 |
+
|
220 |
+
foreach($userBundleCollection as $bundle){
|
221 |
+
|
222 |
+
$isProductInBundle = in_array($product_id, explode(',',$bundle->getProductIds()));
|
223 |
+
|
224 |
+
if(!is_null($isProductInBundle) && !empty($isProductInBundle) && $isProductInBundle == true)
|
225 |
+
{
|
226 |
+
$userBundle = Mage::getModel('increasingly_analytics/bundle');
|
227 |
+
$userBundle->setId($bundle->getId())->delete();
|
228 |
+
}
|
229 |
+
|
230 |
+
}
|
231 |
+
}
|
232 |
}
|
233 |
catch (Exception $e)
|
234 |
{
|
289 |
$jsonData = json_encode($postData);
|
290 |
$client->setRawData($jsonData, 'application/json');
|
291 |
$response = $client->request('POST');
|
292 |
+
$result = json_decode($response->getBody());
|
293 |
+
|
294 |
if ($response->isError()) {
|
295 |
Mage::log($response->getBody(), null, 'Increasingly_Analytics.log');
|
296 |
}
|
345 |
return Mage::getStoreConfig(self::XML_PATH_IMAGE_VERSION, $store);
|
346 |
}
|
347 |
|
348 |
+
|
349 |
+
|
350 |
|
351 |
}
|
app/code/community/Increasingly/Analytics/Helper/ProductFormatter.php
CHANGED
@@ -48,7 +48,8 @@ class Increasingly_Analytics_Helper_ProductFormatter extends Mage_Core_Helper_Ab
|
|
48 |
'product_price' => $priceFormatter->format($product->getPrice()),
|
49 |
'special_price' => $priceFormatter->format($product->getSpecialPrice()),
|
50 |
'product_url' => $product->getProductUrl(),
|
51 |
-
'description' => $product->
|
|
|
52 |
'status' => (int)$product->getStatus(),
|
53 |
'product_type' => $product->getTypeId(),
|
54 |
'created_at' => $dateFormatter->getFormattedDate($product->getCreatedAt()),
|
@@ -183,7 +184,7 @@ class Increasingly_Analytics_Helper_ProductFormatter extends Mage_Core_Helper_Ab
|
|
183 |
$productData['other_image_list'][] = $img->getUrl();
|
184 |
}
|
185 |
}
|
186 |
-
}
|
187 |
}
|
188 |
catch(Exception $e)
|
189 |
{
|
48 |
'product_price' => $priceFormatter->format($product->getPrice()),
|
49 |
'special_price' => $priceFormatter->format($product->getSpecialPrice()),
|
50 |
'product_url' => $product->getProductUrl(),
|
51 |
+
'description' => $product->getDescription(),
|
52 |
+
'short_description' => $product->getShortDescription(),
|
53 |
'status' => (int)$product->getStatus(),
|
54 |
'product_type' => $product->getTypeId(),
|
55 |
'created_at' => $dateFormatter->getFormattedDate($product->getCreatedAt()),
|
184 |
$productData['other_image_list'][] = $img->getUrl();
|
185 |
}
|
186 |
}
|
187 |
+
}
|
188 |
}
|
189 |
catch(Exception $e)
|
190 |
{
|
app/code/community/Increasingly/Analytics/Model/Observer.php
CHANGED
@@ -506,4 +506,40 @@ public function trackNewOrder(Varien_Event_Observer $observer)
|
|
506 |
Mage::log("Product delete tracking - " . $e->getMessage(), null, 'Increasingly_Analytics.log');
|
507 |
}
|
508 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
509 |
}
|
506 |
Mage::log("Product delete tracking - " . $e->getMessage(), null, 'Increasingly_Analytics.log');
|
507 |
}
|
508 |
}
|
509 |
+
|
510 |
+
public function importShippingDetails(Varien_Event_Observer $observer)
|
511 |
+
{
|
512 |
+
try
|
513 |
+
{
|
514 |
+
$helper = Mage::helper('increasingly_analytics');
|
515 |
+
$priceFormatter = Mage::helper('increasingly_analytics/PriceFormatter');
|
516 |
+
|
517 |
+
if ($helper->isEnabled())
|
518 |
+
{
|
519 |
+
$data = array();
|
520 |
+
$carriers = array();
|
521 |
+
$config = Mage::getStoreConfig('carriers', Mage::app()->getStore()->getId());
|
522 |
+
|
523 |
+
foreach ($config as $code => $carrierConfig)
|
524 |
+
{
|
525 |
+
if ($carrierConfig['model'] == 'shipping/carrier_freeshipping')
|
526 |
+
{
|
527 |
+
$data['is_free_shipping_active'] = Mage::getStoreConfigFlag('carriers/'.$code.'/active', $store);
|
528 |
+
$data['free_shipping_subtotal'] = $priceFormatter->format($carrierConfig['free_shipping_subtotal']);
|
529 |
+
$data['free_shipping_title'] = $carrierConfig['title'];
|
530 |
+
}
|
531 |
+
}
|
532 |
+
|
533 |
+
$helper->increasinglyApi($data,'shipping_details_import','track',$helper->getApiToken(),$helper->getApiSecret());
|
534 |
+
|
535 |
+
}
|
536 |
+
|
537 |
+
}
|
538 |
+
catch(Exception $e)
|
539 |
+
{
|
540 |
+
Mage::log("Import shipping details - " . $e->getMessage(), null, 'Increasingly_Analytics.log');
|
541 |
+
}
|
542 |
+
|
543 |
+
}
|
544 |
+
|
545 |
}
|
app/code/community/Increasingly/Analytics/controllers/AddbundletocartController.php
CHANGED
@@ -48,6 +48,7 @@ class Increasingly_Analytics_AddbundletocartController extends Mage_Core_Control
|
|
48 |
$outOfStockProducts = [];
|
49 |
$productErrorStr = "";
|
50 |
$productSuccessStr = "";
|
|
|
51 |
if($current_page == "checkout_cart_index"){
|
52 |
$quote = Mage::getModel('checkout/cart')->getQuote();
|
53 |
|
@@ -150,6 +151,27 @@ class Increasingly_Analytics_AddbundletocartController extends Mage_Core_Control
|
|
150 |
$product = Mage::getModel('catalog/product');
|
151 |
$product->load($productId);
|
152 |
$this->cart->addProduct($product,array('qty' => 1));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
153 |
}
|
154 |
}
|
155 |
catch(Exception $e)
|
48 |
$outOfStockProducts = [];
|
49 |
$productErrorStr = "";
|
50 |
$productSuccessStr = "";
|
51 |
+
|
52 |
if($current_page == "checkout_cart_index"){
|
53 |
$quote = Mage::getModel('checkout/cart')->getQuote();
|
54 |
|
151 |
$product = Mage::getModel('catalog/product');
|
152 |
$product->load($productId);
|
153 |
$this->cart->addProduct($product,array('qty' => 1));
|
154 |
+
|
155 |
+
for ($x = 0; $x < count($data[0]["params"]); $x++) {
|
156 |
+
$productIds[$x] = trim($data[0]["params"][$x]["product_id"]);
|
157 |
+
}
|
158 |
+
$productIdsStr = implode(',',$productIds);
|
159 |
+
|
160 |
+
$cookieValue = Mage::getModel('core/cookie')->get('ivid');
|
161 |
+
$userBundleCollection = Mage::getModel('increasingly_analytics/bundle')->getCollection()
|
162 |
+
->addFieldToFilter('bundle_id', $bundle_id)
|
163 |
+
->addFieldToFilter('increasingly_visitor_id',$cookieValue);
|
164 |
+
|
165 |
+
//Check if bundle already exists,add if not already present
|
166 |
+
if(count($userBundleCollection) < 1){
|
167 |
+
$userBundle = Mage::getModel('increasingly_analytics/bundle');
|
168 |
+
$userBundle->setBundleId(intval($bundle_id));
|
169 |
+
$userBundle->setProductIds($productIdsStr);
|
170 |
+
$userBundle->setIncreasinglyVisitorId($cookieValue);
|
171 |
+
$userBundle->setDiscountPrice($discountPrice);
|
172 |
+
$userBundle->setTotalPrice($totalPrice);
|
173 |
+
$userBundle->save();
|
174 |
+
}
|
175 |
}
|
176 |
}
|
177 |
catch(Exception $e)
|
app/code/community/Increasingly/Analytics/controllers/ProductsApiController.php
CHANGED
@@ -53,6 +53,7 @@ class Increasingly_Analytics_ProductsApiController extends Mage_Core_Controller_
|
|
53 |
'price',
|
54 |
'final_price',
|
55 |
'special_price',
|
|
|
56 |
'short_description',
|
57 |
'color',
|
58 |
'weight',
|
53 |
'price',
|
54 |
'final_price',
|
55 |
'special_price',
|
56 |
+
'description',
|
57 |
'short_description',
|
58 |
'color',
|
59 |
'weight',
|
app/code/community/Increasingly/Analytics/etc/config.xml
CHANGED
@@ -117,7 +117,16 @@
|
|
117 |
<method>productDelete</method>
|
118 |
</product_delete>
|
119 |
</observers>
|
120 |
-
</catalog_product_delete_commit_after>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
121 |
</events>
|
122 |
<models>
|
123 |
<increasingly_analytics>
|
117 |
<method>productDelete</method>
|
118 |
</product_delete>
|
119 |
</observers>
|
120 |
+
</catalog_product_delete_commit_after>
|
121 |
+
<admin_system_config_changed_section_carriers>
|
122 |
+
<observers>
|
123 |
+
<import_shipping_details>
|
124 |
+
<type>singleton</type>
|
125 |
+
<class>Increasingly_Analytics_Model_Observer</class>
|
126 |
+
<method>importShippingDetails</method>
|
127 |
+
</import_shipping_details>
|
128 |
+
</observers>
|
129 |
+
</admin_system_config_changed_section_carriers>
|
130 |
</events>
|
131 |
<models>
|
132 |
<increasingly_analytics>
|
app/code/community/Increasingly/Analytics/sql/increasingly_analytics_setup/mysql4-install-1.0.4.php
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
$installer = $this;
|
4 |
+
|
5 |
+
$installer->startSetup();
|
6 |
+
|
7 |
+
$installer->run("
|
8 |
+
|
9 |
+
CREATE TABLE IF NOT EXISTS {$this->getTable('increasingly_analytics_bundle')} (
|
10 |
+
|
11 |
+
`id` int NOT NULL auto_increment,
|
12 |
+
|
13 |
+
`bundle_id` int NOT NULL default 0,
|
14 |
+
|
15 |
+
`product_ids` varchar(100) NOT NULL,
|
16 |
+
|
17 |
+
`increasingly_visitor_id` varchar(100) NOT NULL,
|
18 |
+
|
19 |
+
`discount_price` decimal(12,4) NULL,
|
20 |
+
|
21 |
+
`total_price` decimal(12,4) NOT NULL,
|
22 |
+
|
23 |
+
PRIMARY KEY (`id`)
|
24 |
+
|
25 |
+
);
|
26 |
+
|
27 |
+
");
|
28 |
+
|
29 |
+
$installer->endSetup();
|
app/design/frontend/base/default/template/increasingly/pagetype.phtml
CHANGED
@@ -62,4 +62,5 @@
|
|
62 |
<!-- Increasingly Page Tags -->
|
63 |
<div name="increasingly-page-type" content="<?php echo $this->getCurrentPageType(); ?>"></div>
|
64 |
<div id="increasingly-api-key" content="<?php echo $helper->getApiToken(); ?>"></div>
|
65 |
-
<div id="increasingly-form-key" content="<?php echo $this->getFormKey(); ?>"></div>
|
|
62 |
<!-- Increasingly Page Tags -->
|
63 |
<div name="increasingly-page-type" content="<?php echo $this->getCurrentPageType(); ?>"></div>
|
64 |
<div id="increasingly-api-key" content="<?php echo $helper->getApiToken(); ?>"></div>
|
65 |
+
<div id="increasingly-form-key" content="<?php echo $this->getFormKey(); ?>"></div>
|
66 |
+
<div id="increasingly-store-url" content="<?php echo $this->getStoreDetails(); ?>"></div>
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>increasingly_key</name>
|
4 |
-
<version>1.0.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="https://opensource.org/licenses/osl-3.0.php">Open Software License (OSL)</license>
|
7 |
<channel>community</channel>
|
@@ -44,26 +44,15 @@ It's free to try & we have a 14-day trial where you can test it for no-risk
|
|
44 |

|
45 |
We have a dashboard which provides you with in depth analytics and insights on what's sells together & allows you to administer and manage your bundles.
|
46 |
</description>
|
47 |
-
<notes>
|
48 |
-

|
49 |
-
|
50 |
-

|
51 |
-
|
52 |
-

|
53 |
-
Dynamic Discounting: You can set discounts on bundles or allow our system to determine instances for discounting based on the user’s likelihood to buy.
|
54 |
-

|
55 |
-
Stock responsive: Out-of-stock bundles are automatically & instantly eliminated, giving your users the best experience possible.
|
56 |
-

|
57 |
-
Mobile ready: Works on any device, any screen size & can also be integrated into a mobile app.
|
58 |
-

|
59 |
-
On page optimisation: Bundles are constantly tested on page to make sure that only the best performing bundles are shown.
|
60 |
-

|
61 |
-
Category/Brand filtering: Don’t want to run bundles on a category, SKU or a brand? Increasingly has filtering built in to protect any filtering you may require.
|
62 |
-
</notes>
|
63 |
<authors><author><name>Increasingly</name><user>Increasingly</user><email>renu@increasingly.co</email></author><author><name>Increasingly</name><user>Increasingly</user><email>shree@increasingly.co</email></author><author><name>Increasingly</name><user>Increasingly</user><email>satish@increasingly.co</email></author></authors>
|
64 |
-
<date>2016-07-
|
65 |
-
<time>
|
66 |
-
<contents><target name="magecommunity"><dir name="Increasingly"><dir name="Analytics"><dir name="Block"><file name="Addtocart.php" hash="3429b60b501c7681a3c79fd46138b787"/><dir name="Adminhtml"><file name="DataIntegration.php" hash="b7c543b33f563ef458d403df94c62a4c"/></dir><file name="Cart.php" hash="56c9f503b7c55d835cbd93c675dcc338"/><file name="Category.php" hash="3b87f305e0957dd1fdace455c1f0fa7c"/><file name="Element.php" hash="8d533705e7a3c1ada7d775a6d9282f43"/><file name="Embed.php" hash="5ba08a6642ed22d8bb1a84ab0501f8dc"/><file name="Pagetype.php" hash="
|
67 |
<compatible/>
|
68 |
-
<dependencies><required><php><min>5.2.0</min><max>
|
69 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>increasingly_key</name>
|
4 |
+
<version>1.0.4</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="https://opensource.org/licenses/osl-3.0.php">Open Software License (OSL)</license>
|
7 |
<channel>community</channel>
|
44 |

|
45 |
We have a dashboard which provides you with in depth analytics and insights on what's sells together & allows you to administer and manage your bundles.
|
46 |
</description>
|
47 |
+
<notes>Support for Shipping details in bundles display
|
48 |
+
Configuring bundles for the Store
|
49 |
+
Enhancements in Product description in Increasingly bundles
|
50 |
+
Cart Page bundle fixes
|
51 |
+
Support for multiple layouts of the bundle display for Product page,Category Page,Cart page</notes>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
<authors><author><name>Increasingly</name><user>Increasingly</user><email>renu@increasingly.co</email></author><author><name>Increasingly</name><user>Increasingly</user><email>shree@increasingly.co</email></author><author><name>Increasingly</name><user>Increasingly</user><email>satish@increasingly.co</email></author></authors>
|
53 |
+
<date>2016-07-28</date>
|
54 |
+
<time>10:24:05</time>
|
55 |
+
<contents><target name="magecommunity"><dir name="Increasingly"><dir name="Analytics"><dir name="Block"><file name="Addtocart.php" hash="3429b60b501c7681a3c79fd46138b787"/><dir name="Adminhtml"><file name="DataIntegration.php" hash="b7c543b33f563ef458d403df94c62a4c"/></dir><file name="Cart.php" hash="56c9f503b7c55d835cbd93c675dcc338"/><file name="Category.php" hash="3b87f305e0957dd1fdace455c1f0fa7c"/><file name="Element.php" hash="8d533705e7a3c1ada7d775a6d9282f43"/><file name="Embed.php" hash="5ba08a6642ed22d8bb1a84ab0501f8dc"/><file name="Pagetype.php" hash="f670440a3f90bfa9a48b406fc37d538c"/><file name="Product.php" hash="2da759eb9bd2bf13e5a8a92087981206"/><file name="Track.php" hash="aa6a9d870f14c4e3721675658dfb276e"/></dir><dir name="Helper"><file name="Data.php" hash="5040e70b54e323a88a319d4b8088a47c"/><file name="DateFormatter.php" hash="d8f963bd1f9fe390e038a2065fd5c4c4"/><file name="PriceFormatter.php" hash="9bc46d3afb4612131a29b9a1c2b82fad"/><file name="ProductFormatter.php" hash="4bb2579b007700a808cdcea4fdb978c8"/></dir><dir name="Model"><file name="Base.php" hash="957cc5bb083e9b49b5468c986a1e846a"/><file name="Bundle.php" hash="767a26eaefaed893d163737d64930933"/><file name="DataIntegration.php" hash="ff9dc202ea17e49ceaba09c6190492cd"/><dir name="Meta"><file name="Product.php" hash="6a037e5325193fae3147fc1a9891606c"/></dir><dir name="Mysql4"><dir name="Bundle"><file name="Collection.php" hash="021c49a92767b78e238477a3dc8da783"/></dir><file name="Bundle.php" hash="83ad548248f3ebcfc73158ab672cb683"/><file name="Setup.php" hash="664019080c6c0ebdbc50b889eac1e1e0"/></dir><file name="Observer.php" hash="f069d141e1bdae7c18a711b04aafa996"/><file name="Product.php" hash="f473c25a470a2509b00a4a15ed8b857f"/></dir><dir name="controllers"><file name="AddbundletocartController.php" hash="e882a7d9802c0b0b649bd7e3b27bccc8"/><dir name="Adminhtml"><file name="DataIntegrationController.php" hash="0758d4716d337002a8c49f843e06cec2"/></dir><file name="ProductsApiController.php" hash="3c5d188b650fe9f1d435e9ba9ffbd35d"/></dir><dir name="etc"><file name="config.xml" hash="c3451058d06bbfc8ec37bd422a84ca12"/></dir><dir name="sql"><dir name="increasingly_analytics_setup"><file name="mysql-install-1.0.0.php" hash="bddf4e67e7b69c5604b448e3b1fa27a0"/><file name="mysql4-install-1.0.3.php" hash="e857df177cfbb887cece6de0ff5498b6"/><file name="mysql4-install-1.0.4.php" hash="e857df177cfbb887cece6de0ff5498b6"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="increasingly"><file name="dataintegration.phtml" hash="8a730e566c21b2155d6f3e4ca73a1b6d"/></dir></dir><dir name="layout"><file name="increasingly_analytics.xml" hash="d859a26dba5142f02e514f28f507891c"/></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="increasingly"><file name="addtocart.phtml" hash="e3af2445ac014887b3072cf85dd81d4f"/><file name="cart.phtml" hash="1c5ee986109cfb4600d3e15057263d36"/><file name="category.phtml" hash="75e77b9d1cbbd1e0129c0c10737461e6"/><file name="element.phtml" hash="c5f1cbbc02801009247409890172ca4e"/><file name="embed.phtml" hash="52cde76a239e3084ce3a1254b004a742"/><file name="pagetype.phtml" hash="fe1a7f313c82f355f14d5f13c284cb28"/><file name="product.phtml" hash="14d24b0ced5abc85619aa3538b21f2f7"/><file name="track.phtml" hash="4473f97cc5aa3a02bf0a87877b14b5eb"/></dir></dir><dir name="layout"><file name="increasingly_analytics.xml" hash="78766218deed3d60d4ab0fdee7729b91"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Increasingly_Analytics.xml" hash="d285a9ae62b5b0624b727e341fe8e005"/></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="increasingly"><file name="loader.gif" hash="a51c5608d01acf32df728f299767f82b"/></dir></dir></dir></dir></target></contents>
|
56 |
<compatible/>
|
57 |
+
<dependencies><required><php><min>5.2.0</min><max>7.0.7</max></php></required></dependencies>
|
58 |
</package>
|