Version Notes
Increase plugin support for magento 1.5 and 1.6 version,Fix some issues in compiler mode and multishop
Download this release
Release Info
Developer | jitendra |
Extension | Betaout |
Version | 2.1.0 |
Comparing to | |
See all releases |
Code changes from version 2.0.0 to 2.1.0
app/code/community/Betaout/Amplify/Model/Amplify.php
CHANGED
@@ -34,7 +34,7 @@
|
|
34 |
/**
|
35 |
* amplify.to API
|
36 |
*/
|
37 |
-
require_once('app/Mage.php');
|
38 |
|
39 |
class Amplify {
|
40 |
/*
|
@@ -766,17 +766,17 @@ class Amplify {
|
|
766 |
|
767 |
private function _bot_detected() {
|
768 |
|
769 |
-
if (isset($_SERVER['HTTP_USER_AGENT']) && preg_match('/bot|crawl|slurp|spider/i', $_SERVER['HTTP_USER_AGENT'])) {
|
770 |
-
$this->botDetect = true;
|
771 |
-
} else {
|
772 |
-
|
773 |
-
foreach ($this->spiders as $spider) {
|
774 |
-
|
775 |
-
if (stripos($_SERVER['HTTP_USER_AGENT'], $spider) !== false)
|
776 |
-
$this->botDetect = true;
|
777 |
-
}
|
778 |
-
|
779 |
-
}
|
780 |
}
|
781 |
|
782 |
protected function deviceDetector() {
|
34 |
/**
|
35 |
* amplify.to API
|
36 |
*/
|
37 |
+
//require_once('app/Mage.php');
|
38 |
|
39 |
class Amplify {
|
40 |
/*
|
766 |
|
767 |
private function _bot_detected() {
|
768 |
|
769 |
+
// if (isset($_SERVER['HTTP_USER_AGENT']) && preg_match('/bot|crawl|slurp|spider/i', $_SERVER['HTTP_USER_AGENT'])) {
|
770 |
+
// $this->botDetect = true;
|
771 |
+
// } else {
|
772 |
+
//
|
773 |
+
// foreach ($this->spiders as $spider) {
|
774 |
+
////If the spider text is found in the current user agent, then return true
|
775 |
+
// if (stripos($_SERVER['HTTP_USER_AGENT'], $spider) !== false)
|
776 |
+
// $this->botDetect = true;
|
777 |
+
// }
|
778 |
+
////If it gets this far then no bot was found!
|
779 |
+
// }
|
780 |
}
|
781 |
|
782 |
protected function deviceDetector() {
|
app/code/community/Betaout/Amplify/Model/Key.php
CHANGED
@@ -1,6 +1,7 @@
|
|
1 |
<?php
|
2 |
-
require_once 'Amplify.php';
|
3 |
-
require_once('
|
|
|
4 |
|
5 |
// Need to send default shopping cart url during installation of magento plugin
|
6 |
//30 8 * * 6 home/path/to/command/the_command.sh >/dev/null
|
@@ -61,7 +62,7 @@ class Betaout_Amplify_Model_Key extends Mage_Core_Model_Abstract {
|
|
61 |
// $this->key = Mage::getStoreConfig(self::XML_PATH_KEY);
|
62 |
// $this->secret = Mage::getStoreConfig(self::XML_PATH_SECRET);
|
63 |
// $this->projectId = Mage::getStoreConfig(self::XML_PATH_PROJECTID);
|
64 |
-
// $this->amplify = new
|
65 |
// Mage::getModel('core/config')->saveConfig('betaout_amplify_options/settings/amplify_verified', TRUE);
|
66 |
// Mage::getStoreConfig('betaout_amplify_options/settings/beta_start_date');
|
67 |
// if (!Mage::getStoreConfig('betaout_amplify_options/settings/beta_start_date')) {
|
@@ -110,15 +111,22 @@ class Betaout_Amplify_Model_Key extends Mage_Core_Model_Abstract {
|
|
110 |
$actionData[0]['category'] = "";
|
111 |
$actionData[0]['discount'] = abs($product->getPrice() - $product->getFinalPrice());
|
112 |
$subprice = (int) $product->getQty() * $product->getPrice();
|
|
|
113 |
$cart = Mage::getSingleton('checkout/cart');
|
|
|
114 |
$subTotalPrice = $cart->getQuote()->getGrandTotal();
|
115 |
$orderInfo["subtotalPrice"] = $subTotalPrice - $subprice;
|
|
|
|
|
116 |
$actionDescription = array(
|
117 |
'action' => 'removed_from_cart',
|
118 |
'email' => $this->getCustomerIdentity(),
|
119 |
'or' => $orderInfo,
|
120 |
'pd' => $actionData
|
121 |
);
|
|
|
|
|
|
|
122 |
$res = $this->amplify->customer_action($actionDescription);
|
123 |
}
|
124 |
} catch (Exception $ex) {
|
@@ -152,8 +160,9 @@ class Betaout_Amplify_Model_Key extends Mage_Core_Model_Abstract {
|
|
152 |
$sku = $productName . "_" . $product->getSku();
|
153 |
$qty = $product->getPrice();
|
154 |
$cart = Mage::getSingleton('checkout/cart');
|
155 |
-
|
156 |
-
|
|
|
157 |
// $this->event('add_to_cart', array('product_name' => false));
|
158 |
$stock_data = $product->getIs_in_stock();
|
159 |
// $product = Mage::getModel('catalog/product')->load($productId);
|
@@ -177,15 +186,18 @@ class Betaout_Amplify_Model_Key extends Mage_Core_Model_Abstract {
|
|
177 |
$actionData[0]['discount'] = abs($product->getPrice() - $product->getFinalPrice());
|
178 |
$subTotalPrice = $cart->getQuote()->getGrandTotal();
|
179 |
$orderInfo["subtotalPrice"] = $subTotalPrice;
|
|
|
180 |
$orderInfo['abandonedCheckoutUrl'] = Mage::getUrl('checkout/cart');
|
181 |
-
$orderInfo['currency'] =
|
182 |
$actionDescription = array(
|
183 |
'or' => $orderInfo,
|
184 |
'email' => $this->getCustomerIdentity(),
|
185 |
'action' => 'add_to_cart',
|
186 |
'pd' => $actionData
|
187 |
);
|
|
|
188 |
$res = $this->amplify->customer_action($actionDescription);
|
|
|
189 |
}
|
190 |
} catch (Exception $ex) {
|
191 |
|
@@ -620,7 +632,8 @@ class Betaout_Amplify_Model_Key extends Mage_Core_Model_Abstract {
|
|
620 |
$i++;
|
621 |
}
|
622 |
|
623 |
-
|
|
|
624 |
$TotalPrice = $order->getGrandTotal();
|
625 |
$totalShippingPrice = $order->getShippingAmount();
|
626 |
$TotalPrice = $TotalPrice;
|
@@ -635,6 +648,7 @@ class Betaout_Amplify_Model_Key extends Mage_Core_Model_Abstract {
|
|
635 |
$orderInfo['DiscountDesc'] = $order->getDiscountDescription();
|
636 |
$orderInfo['currency'] = $order->getOrderCurrencyCode();
|
637 |
$orderInfo['financialStatus'] = 'paid';
|
|
|
638 |
$orderInfo['abandonedCheckoutUrl'] = Mage::getUrl('checkout/cart');
|
639 |
$orderInfo['totalTaxes'] = $order->getShippingTaxAmount();
|
640 |
$orderInfo['paymentType'] = $order->getPayment()->getMethodInstance()->getCode();
|
@@ -647,7 +661,9 @@ class Betaout_Amplify_Model_Key extends Mage_Core_Model_Abstract {
|
|
647 |
'or' => $orderInfo,
|
648 |
'pd' => $actionData
|
649 |
);
|
|
|
650 |
$res = $this->amplify->customer_action($actionDescription);
|
|
|
651 |
}
|
652 |
} catch (Exception $ex) {
|
653 |
$this->event('error_one');
|
@@ -860,7 +876,7 @@ class Betaout_Amplify_Model_Key extends Mage_Core_Model_Abstract {
|
|
860 |
"email" => $this->getCustomerIdentity(),
|
861 |
'pd' => $actionData
|
862 |
);
|
863 |
-
|
864 |
$res = $this->amplify->customer_action($actionDescription);
|
865 |
}
|
866 |
} catch (Exception $ex) {
|
@@ -928,24 +944,28 @@ class Betaout_Amplify_Model_Key extends Mage_Core_Model_Abstract {
|
|
928 |
$newQty = (int) $product->getQty();
|
929 |
$qtyDiff = 0;
|
930 |
$subdiff = $subdiff + ($newQty - $oldQty) * $product->getPrice();
|
931 |
-
|
932 |
$actionData[$i]['qty'] = (int) $product->getQty();
|
933 |
$actionData[$i]['category'] = $cateHolder;
|
934 |
$i++;
|
935 |
}
|
936 |
}
|
|
|
|
|
937 |
$cart = Mage::getSingleton('checkout/cart');
|
|
|
938 |
$subTotalPrice = $cart->getQuote()->getGrandTotal();
|
939 |
$orderInfo["subtotalPrice"] = $subTotalPrice + $subdiff;
|
940 |
$orderInfo['abandonedCheckoutUrl'] = Mage::getUrl('checkout/cart');
|
941 |
-
$orderInfo['
|
|
|
942 |
$actionDescription = array(
|
943 |
'or' => $orderInfo,
|
944 |
'email' => $this->getCustomerIdentity(),
|
945 |
'action' => 'update_cart',
|
946 |
'pd' => $actionData
|
947 |
);
|
948 |
-
|
|
|
949 |
$res = $this->amplify->customer_action($actionDescription);
|
950 |
}
|
951 |
} catch (Exception $ex) {
|
1 |
<?php
|
2 |
+
require_once Mage::getModuleDir('Model', 'Betaout_Amplify').DS.'Model/Amplify.php';
|
3 |
+
//require_once('Amplify.php');
|
4 |
+
//require_once('app/Mage.php');
|
5 |
|
6 |
// Need to send default shopping cart url during installation of magento plugin
|
7 |
//30 8 * * 6 home/path/to/command/the_command.sh >/dev/null
|
62 |
// $this->key = Mage::getStoreConfig(self::XML_PATH_KEY);
|
63 |
// $this->secret = Mage::getStoreConfig(self::XML_PATH_SECRET);
|
64 |
// $this->projectId = Mage::getStoreConfig(self::XML_PATH_PROJECTID);
|
65 |
+
// $this->amplify = new Betaout_Amplify_Model_Amplify($this->key, $this->secret, $this->projectId);
|
66 |
// Mage::getModel('core/config')->saveConfig('betaout_amplify_options/settings/amplify_verified', TRUE);
|
67 |
// Mage::getStoreConfig('betaout_amplify_options/settings/beta_start_date');
|
68 |
// if (!Mage::getStoreConfig('betaout_amplify_options/settings/beta_start_date')) {
|
111 |
$actionData[0]['category'] = "";
|
112 |
$actionData[0]['discount'] = abs($product->getPrice() - $product->getFinalPrice());
|
113 |
$subprice = (int) $product->getQty() * $product->getPrice();
|
114 |
+
$subprice=Mage::helper('core')->currency($subprice , false, false);
|
115 |
$cart = Mage::getSingleton('checkout/cart');
|
116 |
+
$cart_id=$cart->getQuote()->getId();
|
117 |
$subTotalPrice = $cart->getQuote()->getGrandTotal();
|
118 |
$orderInfo["subtotalPrice"] = $subTotalPrice - $subprice;
|
119 |
+
$orderInfo['shoppingCartNo'] =$cart_id;
|
120 |
+
$orderInfo['currency'] = Mage::app()->getStore()->getCurrentCurrencyCode();
|
121 |
$actionDescription = array(
|
122 |
'action' => 'removed_from_cart',
|
123 |
'email' => $this->getCustomerIdentity(),
|
124 |
'or' => $orderInfo,
|
125 |
'pd' => $actionData
|
126 |
);
|
127 |
+
|
128 |
+
|
129 |
+
//mail("rohit@getamplify.com","removedfrom cart",json_encode($actionDescription));
|
130 |
$res = $this->amplify->customer_action($actionDescription);
|
131 |
}
|
132 |
} catch (Exception $ex) {
|
160 |
$sku = $productName . "_" . $product->getSku();
|
161 |
$qty = $product->getPrice();
|
162 |
$cart = Mage::getSingleton('checkout/cart');
|
163 |
+
$cart_id=$cart->getQuote()->getId();
|
164 |
+
setcookie('_ampCart',$cart_id,time()+604800,'/');
|
165 |
+
|
166 |
// $this->event('add_to_cart', array('product_name' => false));
|
167 |
$stock_data = $product->getIs_in_stock();
|
168 |
// $product = Mage::getModel('catalog/product')->load($productId);
|
186 |
$actionData[0]['discount'] = abs($product->getPrice() - $product->getFinalPrice());
|
187 |
$subTotalPrice = $cart->getQuote()->getGrandTotal();
|
188 |
$orderInfo["subtotalPrice"] = $subTotalPrice;
|
189 |
+
$orderInfo["shoppingCartNo"] = $cart_id;
|
190 |
$orderInfo['abandonedCheckoutUrl'] = Mage::getUrl('checkout/cart');
|
191 |
+
$orderInfo['currency'] =Mage::app()->getStore()->getCurrentCurrencyCode();
|
192 |
$actionDescription = array(
|
193 |
'or' => $orderInfo,
|
194 |
'email' => $this->getCustomerIdentity(),
|
195 |
'action' => 'add_to_cart',
|
196 |
'pd' => $actionData
|
197 |
);
|
198 |
+
//mail("rohit@getamplify.com","add to cart",json_encode($actionDescription));
|
199 |
$res = $this->amplify->customer_action($actionDescription);
|
200 |
+
|
201 |
}
|
202 |
} catch (Exception $ex) {
|
203 |
|
632 |
$i++;
|
633 |
}
|
634 |
|
635 |
+
//$cart = Mage::getSingleton('checkout/cart');
|
636 |
+
$cart_id=Mage::getModel('core/cookie')->get('_ampCart');
|
637 |
$TotalPrice = $order->getGrandTotal();
|
638 |
$totalShippingPrice = $order->getShippingAmount();
|
639 |
$TotalPrice = $TotalPrice;
|
648 |
$orderInfo['DiscountDesc'] = $order->getDiscountDescription();
|
649 |
$orderInfo['currency'] = $order->getOrderCurrencyCode();
|
650 |
$orderInfo['financialStatus'] = 'paid';
|
651 |
+
$orderInfo['shoppingCartNo'] =$cart_id;
|
652 |
$orderInfo['abandonedCheckoutUrl'] = Mage::getUrl('checkout/cart');
|
653 |
$orderInfo['totalTaxes'] = $order->getShippingTaxAmount();
|
654 |
$orderInfo['paymentType'] = $order->getPayment()->getMethodInstance()->getCode();
|
661 |
'or' => $orderInfo,
|
662 |
'pd' => $actionData
|
663 |
);
|
664 |
+
// mail("rohit@getamplify.com","purchased",json_encode($actionDescription));
|
665 |
$res = $this->amplify->customer_action($actionDescription);
|
666 |
+
|
667 |
}
|
668 |
} catch (Exception $ex) {
|
669 |
$this->event('error_one');
|
876 |
"email" => $this->getCustomerIdentity(),
|
877 |
'pd' => $actionData
|
878 |
);
|
879 |
+
|
880 |
$res = $this->amplify->customer_action($actionDescription);
|
881 |
}
|
882 |
} catch (Exception $ex) {
|
944 |
$newQty = (int) $product->getQty();
|
945 |
$qtyDiff = 0;
|
946 |
$subdiff = $subdiff + ($newQty - $oldQty) * $product->getPrice();
|
|
|
947 |
$actionData[$i]['qty'] = (int) $product->getQty();
|
948 |
$actionData[$i]['category'] = $cateHolder;
|
949 |
$i++;
|
950 |
}
|
951 |
}
|
952 |
+
$subdiff=Mage::helper('core')->currency($subdiff , false, false);
|
953 |
+
|
954 |
$cart = Mage::getSingleton('checkout/cart');
|
955 |
+
$cart_id=$cart->getQuote()->getId();
|
956 |
$subTotalPrice = $cart->getQuote()->getGrandTotal();
|
957 |
$orderInfo["subtotalPrice"] = $subTotalPrice + $subdiff;
|
958 |
$orderInfo['abandonedCheckoutUrl'] = Mage::getUrl('checkout/cart');
|
959 |
+
$orderInfo['shoppingCartNo'] =$cart_id;
|
960 |
+
$orderInfo['currency'] = Mage::app()->getStore()->getCurrentCurrencyCode();
|
961 |
$actionDescription = array(
|
962 |
'or' => $orderInfo,
|
963 |
'email' => $this->getCustomerIdentity(),
|
964 |
'action' => 'update_cart',
|
965 |
'pd' => $actionData
|
966 |
);
|
967 |
+
|
968 |
+
//mail("rohit@getamplify.com","update cart",json_encode($actionDescription));
|
969 |
$res = $this->amplify->customer_action($actionDescription);
|
970 |
}
|
971 |
} catch (Exception $ex) {
|
package.xml
CHANGED
@@ -1,18 +1,18 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Betaout</name>
|
4 |
-
<version>2.
|
5 |
<stability>stable</stability>
|
6 |
<license>GPL</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Helping Ecommerce Companies drive more sales and customer happiness. </summary>
|
10 |
<description>Helping Ecommerce Companies drive more sales and customer happiness. </description>
|
11 |
-
<notes>
|
12 |
<authors><author><name>jitendra</name><user>jitendra</user><email>jitendra@getamplify.com</email></author></authors>
|
13 |
-
<date>2015-
|
14 |
-
<time>
|
15 |
-
<contents><target name="magecommunity"><dir name="Betaout"><dir name="Amplify"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="About.php" hash="5d714a88c93aa83a3cdfed81712a1611"/><dir name="Form"><dir name="Field"><file name="Conflict.php" hash="6f91b2528452ee1a96440d3a9da43962"/></dir></dir><file name="Logo.php" hash="40f74b3fab0f1bed08315ae83abb4d42"/></dir></dir><dir name="Widget"><dir name="Button"><file name="Conflict.php" hash="903c3c00124ae86bde48f7ce2ad2f066"/></dir></dir></dir><file name="Conflictprinter.php" hash="ce0256621be50bfe02bf01a80ac11b20"/></dir><dir name="Helper"><file name="Conflictchecker.php" hash="a03e8cff4427d5a7ed28f06530f75838"/><file name="Data.php" hash="ab8d5234d07dd762f516169f3be73fe8"/></dir><dir name="Model"><file name="Amplify.php" hash="
|
16 |
<compatible/>
|
17 |
-
<dependencies><required><php><min>5.0.0</min><max>5.
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Betaout</name>
|
4 |
+
<version>2.1.0</version>
|
5 |
<stability>stable</stability>
|
6 |
<license>GPL</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Helping Ecommerce Companies drive more sales and customer happiness. </summary>
|
10 |
<description>Helping Ecommerce Companies drive more sales and customer happiness. </description>
|
11 |
+
<notes>Increase plugin support for magento 1.5 and 1.6 version,Fix some issues in compiler mode and multishop</notes>
|
12 |
<authors><author><name>jitendra</name><user>jitendra</user><email>jitendra@getamplify.com</email></author></authors>
|
13 |
+
<date>2015-10-23</date>
|
14 |
+
<time>05:52:54</time>
|
15 |
+
<contents><target name="magecommunity"><dir name="Betaout"><dir name="Amplify"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="About.php" hash="5d714a88c93aa83a3cdfed81712a1611"/><dir name="Form"><dir name="Field"><file name="Conflict.php" hash="6f91b2528452ee1a96440d3a9da43962"/></dir></dir><file name="Logo.php" hash="40f74b3fab0f1bed08315ae83abb4d42"/></dir></dir><dir name="Widget"><dir name="Button"><file name="Conflict.php" hash="903c3c00124ae86bde48f7ce2ad2f066"/></dir></dir></dir><file name="Conflictprinter.php" hash="ce0256621be50bfe02bf01a80ac11b20"/></dir><dir name="Helper"><file name="Conflictchecker.php" hash="a03e8cff4427d5a7ed28f06530f75838"/><file name="Data.php" hash="ab8d5234d07dd762f516169f3be73fe8"/></dir><dir name="Model"><file name="Amplify.php" hash="78dc75e23cfc5fe4c36f4be604db0eb7"/><file name="Amplifyconnectwidget.php" hash="904cedccd8685cb3f4e801b81802ec6d"/><dir name="Config"><file name="Blocks.php" hash="d32094f94f70ddc75f4ecb4ea90bdc16"/><file name="Checker.php" hash="b2b4fc113e7511f23360dc01ca3dc7e3"/><file name="ConfigAbstract.php" hash="b19f0f25177fbea91c817758886d6373"/><file name="ConfigInterface.php" hash="85c1b11953b73728feb498ae81711c29"/><file name="Datastore.php" hash="f8a8c60c2f4e1801941c334ebe45cc1a"/><file name="Helpers.php" hash="f337bdceb3fb867f7e2aa8ad90b1216e"/><file name="Models.php" hash="500a145c160beb6797f7450d03069637"/><file name="Printer.php" hash="577801efaeb6bc6dd8bd096875fda08b"/><file name="Resources.php" hash="1f14e467d10ba2afbd2354f78c0047e7"/></dir><dir name="Core"><dir name="Config"><file name="Base.php" hash="7bccfac5cac9b19f1073bb97568958f8"/><file name="Element.php" hash="d2ce6a9a5840dbe335514b7455c60688"/></dir><file name="Config.php" hash="4222a35a2c71b3702199efbfddbee701"/></dir><file name="CronStatus.php" hash="298e6e428249ed7020c27e3c8abc52a2"/><file name="Key.php" hash="163f43db82c425446e330b3aa161ebc4"/><dir name="Lib"><dir name="Varien"><dir name="Simplexml"><file name="Config.php" hash="eba1dfcc303065cf5b3c9067d87dd35a"/><file name="Element.php" hash="24cb3b7db31ae8e2c813485a6b6ef749"/></dir></dir></dir><dir name="Mysql4"><dir name="Core"><file name="Config.php" hash="c0a59f8ff1f747224655de39b217abde"/></dir></dir><dir name="Path"><dir name="Locator"><file name="Array.php" hash="722f4125eb1cbd5fbc2be05facd44cd4"/><file name="Factory.php" hash="5a57006974d9870affbcbafa6ed00175"/><file name="IteratorAbstract.php" hash="adba5c801c91efdbc5afa493d353224a"/><file name="LocatorInterface.php" hash="30571ef5c7ebf942870a0ddd2ab341cb"/><file name="Stack.php" hash="73a27e38db4768019613c99407205771"/></dir></dir><dir name="Resource"><dir name="Core"><file name="Config.php" hash="14736455e9f006a69dc638e4b93f7e6e"/></dir><dir name="Db"><file name="Abstract.php" hash="3874d4c5cc4b1af30a550cc792bbe22f"/></dir></dir><file name="Sharetracking.php" hash="05f4fe212dfd53027525bae6321ea641"/><file name="Urltracking.php" hash="d4e7e48cbb8168c2baab17e1edde1eac"/><file name="Verify.php" hash="3e385480fdfdfb3b1219ba48c1ef1644"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="ConflictcheckerController.php" hash="28bf9f8cca4f3e63ea90c575c424deb0"/></dir><file name="indexController.php" hash="ca84b19b9ee9ea2678ba6ef5a6d23afa"/></dir><dir name="etc"><file name="config.xml" hash="85abe907f3aa4bf3a8f70dce84fc5679"/><file name="system.xml" hash="2f980139f06c219fc2c1d1169a89883f"/></dir><dir name="log"><file name="log.log" hash="be8a8d092fd7ba1381cfbe23eda18c2e"/></dir><file name=".DS_Store" hash="e49cca224ac24efb7898b1adf5d52aaf"/></dir><file name=".DS_Store" hash="a27a5b993e15852172640eb72dabed84"/></dir></target><target name="mageetc"><dir name="modules"><file name="Betaout_Amplify.xml" hash="a8228fbbf2d0a09dc90cd7c80b4692f0"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="betaout_amplify.xml" hash="328dab6359ba6464621e558238610035"/></dir><dir name="template"><dir name="betaout_amplify"><file name="amplify.phtml" hash="ce94f7e9e16d3c519bc8efcf4541716c"/><file name="conflict.phtml" hash="43277d57972e4f750d8b65e0bfb5bcb8"/><file name="logo.phtml" hash="0af4376bf5074d24519ab7e9d3ea035b"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="betaout_amplify"><file name="checkout.phtml" hash="1d7652b352f2d7a3edb1f3bb48bc858e"/><file name="head.phtml" hash="f1e2aec315b8049593a4a299231d2713"/></dir></dir><dir name="layout"><file name="betaout_amplify.xml" hash="f262133af716b7e0c33ebc044e06518c"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="base"><dir name="default"><dir name="amplify"><dir name="images"><file name="Users.png" hash="96e906660b1fbd8a17831bd3049dbcfa"/><file name="ajax-loader-tr.gif" hash="1ae32bc8232ff2527c627e5b38eb319a"/><file name="ajax-loader.gif" hash="e2a38f1e23288e315af3c55416bc1ce7"/><file name="btn.png" hash="769b6736cb1bb8cb91ad7526ce9d9db8"/><file name="check.png" hash="252fd93a83e2a412ecd3b6eac01500b7"/><file name="com-app.png" hash="1f241f552bdbe1f86763981c79c8d85f"/><file name="db-1.png" hash="840d96bd5679bf4fa2d6a9577f7d3539"/><file name="engage-app.png" hash="888cde6a10a3dd9abcfccd1a5f0c8fde"/><file name="icon.png" hash="22ea725b0bee73cb03f63b063b02469f"/><file name="large_bracket.png" hash="d2e8da8266e513bd5f15b0c9855be058"/><file name="mini_bracket.png" hash="e844112e5e5173f64b3385a4a140bdeb"/></dir></dir></dir></dir></dir></target></contents>
|
16 |
<compatible/>
|
17 |
+
<dependencies><required><php><min>5.0.0</min><max>5.7.0</max></php></required></dependencies>
|
18 |
</package>
|