Betaout - Version 1.0.3

Version Notes

Helping Ecommerce Companies drive more sales and customer happiness.

Download this release

Release Info

Developer jitendra
Extension Betaout
Version 1.0.3
Comparing to
See all releases


Code changes from version 1.0.2 to 1.0.3

app/code/community/Betaout/Amplify/Model/Amplify.php CHANGED
@@ -67,7 +67,7 @@ class Amplify {
67
  /**
68
  * amplify host
69
  */
70
- public $host = 'amplify.to';
71
 
72
  /**
73
  * amplify version
@@ -423,9 +423,11 @@ class Amplify {
423
  }
424
 
425
  public static $CURL_OPTS = array(
426
- CURLOPT_CONNECTTIMEOUT => 10,
 
427
  CURLOPT_RETURNTRANSFER => true,
428
- CURLOPT_TIMEOUT => 60,
 
429
  CURLOPT_USERAGENT => 'amplify-php-1.0',
430
  );
431
 
@@ -607,7 +609,8 @@ class Amplify {
607
  } else {
608
  $options[CURLOPT_HTTPHEADER] = array('Expect:');
609
  }
610
-
 
611
  curl_setopt_array($ch, $options);
612
  $result = curl_exec($ch);
613
 
67
  /**
68
  * amplify host
69
  */
70
+ public $host = 'betaout.com';
71
 
72
  /**
73
  * amplify version
423
  }
424
 
425
  public static $CURL_OPTS = array(
426
+ CURLOPT_CONNECTTIMEOUT_MS=>2000,
427
+
428
  CURLOPT_RETURNTRANSFER => true,
429
+
430
+ CURLOPT_TIMEOUT_MS=>2000,
431
  CURLOPT_USERAGENT => 'amplify-php-1.0',
432
  );
433
 
609
  } else {
610
  $options[CURLOPT_HTTPHEADER] = array('Expect:');
611
  }
612
+
613
+
614
  curl_setopt_array($ch, $options);
615
  $result = curl_exec($ch);
616
 
app/code/community/Betaout/Amplify/Model/Key.php CHANGED
@@ -36,7 +36,7 @@ class Betaout_Amplify_Model_Key extends Mage_Core_Model_Abstract {
36
  public function getAmplifyCheckOrderStatus($observer) {
37
 
38
  try {
39
- if ($this->verified) {
40
  $order = $observer->getEvent()->getOrder();
41
 
42
 
@@ -101,7 +101,7 @@ class Betaout_Amplify_Model_Key extends Mage_Core_Model_Abstract {
101
 
102
  public function getAmplifyEventRemoveFromCart(Varien_Event_Observer $observer) {
103
  try {
104
- if ($this->verified) {
105
  $product = $observer->getEvent()->getQuote_item();
106
 
107
  $actionData = array();
@@ -192,9 +192,11 @@ class Betaout_Amplify_Model_Key extends Mage_Core_Model_Abstract {
192
  'action' => 'add_to_cart',
193
  'products' => $actionData
194
  );
195
-
196
  // $startTime = microtime(true);
197
  $res = $this->amplify->customer_action($actionDescription);
 
 
198
  // $endTime = microtime(true);
199
  // echo "total Execution time ==" . ($endTime - $startTime);
200
  }
@@ -817,8 +819,6 @@ class Betaout_Amplify_Model_Key extends Mage_Core_Model_Abstract {
817
  'products' => $actionData
818
  );
819
  $res = $this->amplify->customer_action($actionDescription);
820
- // print_r($actionDescription);
821
- // die;
822
  // Mage::getSingleton('customer/session')->getCustomer()->getDefaultBillingAddress();
823
  // $_shippingAddress = $order->getShippingAddress();
824
  // $shipppingDetails['shippingCity'] = $_shippingAddress->getCity();
36
  public function getAmplifyCheckOrderStatus($observer) {
37
 
38
  try {
39
+ if ($this->verified && is_object($observer)) {
40
  $order = $observer->getEvent()->getOrder();
41
 
42
 
101
 
102
  public function getAmplifyEventRemoveFromCart(Varien_Event_Observer $observer) {
103
  try {
104
+ if ($this->verified && is_object($observer)) {
105
  $product = $observer->getEvent()->getQuote_item();
106
 
107
  $actionData = array();
192
  'action' => 'add_to_cart',
193
  'products' => $actionData
194
  );
195
+
196
  // $startTime = microtime(true);
197
  $res = $this->amplify->customer_action($actionDescription);
198
+ //
199
+ //
200
  // $endTime = microtime(true);
201
  // echo "total Execution time ==" . ($endTime - $startTime);
202
  }
819
  'products' => $actionData
820
  );
821
  $res = $this->amplify->customer_action($actionDescription);
 
 
822
  // Mage::getSingleton('customer/session')->getCustomer()->getDefaultBillingAddress();
823
  // $_shippingAddress = $order->getShippingAddress();
824
  // $shipppingDetails['shippingCity'] = $_shippingAddress->getCity();
app/design/frontend/base/default/template/betaout_amplify/betaout_amplify/account.phtml DELETED
@@ -1,17 +0,0 @@
1
- <!--<script>
2
- function addEvent() {
3
- if ((typeof (Amplify) != 'undifined' && typeof (Amplify) == "object")) {
4
- Amplify.addEvent("", {'viewed_account_dashboard': {
5
- 'viewed_account_dashboard': 1
6
- }});
7
- }
8
- else {
9
- setTimeout(addEvent, 10);
10
- }
11
- }
12
- addEvent();
13
-
14
-
15
-
16
-
17
- </script>-->
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/design/frontend/base/default/template/betaout_amplify/betaout_amplify/account_edit.phtml DELETED
@@ -1,17 +0,0 @@
1
- <!--<script>
2
- function addEvent() {
3
- if ((typeof (Amplify) != 'undifined' && typeof (Amplify) == "object")) {
4
- Amplify.addEvent("", {'viewed_account_edit': {
5
- 'viewed_account_edit': 1
6
- }});
7
- }
8
- else {
9
- setTimeout(addEvent, 10);
10
- }
11
- }
12
- addEvent();
13
-
14
-
15
-
16
-
17
- </script>-->
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/design/frontend/base/default/template/betaout_amplify/betaout_amplify/cart.phtml DELETED
@@ -1,19 +0,0 @@
1
- <script>
2
- // function addEvent() {
3
- // if ((typeof (Amplify) != 'undifined' && typeof (Amplify) == "object")) {
4
- // Amplify.addEvent("", {'viewed_shopping_cart': {
5
- // 'viewed_shopping_cart': 1
6
- // }});
7
- // }
8
- // else {
9
- // setTimeout(addEvent, 10);
10
- // }
11
- // }
12
- // addEvent();
13
- //
14
- //
15
- //
16
- //
17
- //</script>
18
-
19
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/design/frontend/base/default/template/betaout_amplify/betaout_amplify/checkout.phtml DELETED
@@ -1,52 +0,0 @@
1
- <!--<script>
2
- if(Ajax.Responders){
3
-
4
- Ajax.Responders.register({
5
-
6
- onComplete: function(data) {
7
-
8
- if(!data.url.include("progress") && !data.url.include("getAdditional")) {
9
-
10
- if(data.url.include("saveOrder")) {
11
-
12
- Amplify.addEvent("",{'checkout_process_completed':{
13
- 'step': 'checkout_process_completed'
14
- }});
15
-
16
- } else if(accordion.currentSection) {
17
- temp=(accordion.currentSection).split("-");
18
- evtName='checkout_process_' + temp[1];
19
- if(evtName=="checkout_process_billing"){
20
- Amplify.addEvent("",{"checkout_process_billing":{
21
- 'step': accordion.currentSection
22
-
23
- }});
24
- }
25
- if(evtName=="checkout_process_payment"){
26
- Amplify.addEvent("",{"checkout_process_payment":{
27
- 'step': accordion.currentSection
28
-
29
-
30
- }});
31
- }
32
- if(evtName=="checkout_process_review"){
33
- Amplify.addEvent("",{"checkout_process_review":{
34
- 'step': accordion.currentSection
35
-
36
-
37
- }});
38
- }
39
-
40
-
41
-
42
-
43
-
44
- }
45
- }
46
-
47
- }
48
-
49
- });
50
- }
51
-
52
- </script>-->
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/design/frontend/base/default/template/betaout_amplify/betaout_amplify/create.phtml DELETED
@@ -1,27 +0,0 @@
1
-
2
- <!--<script>
3
- function addEvent() {
4
- if ((typeof (Amplify) != 'undifined' && typeof (Amplify) == "object")) {
5
- Amplify.addEvent("", {'viewed_customer_create_page': {
6
- 'viewed_customer_create_page': 1
7
- }});
8
- }
9
- else {
10
- setTimeout(addEvent, 10);
11
- }
12
- }
13
- addEvent();
14
-
15
-
16
-
17
-
18
- </script>
19
- -->
20
-
21
-
22
-
23
-
24
-
25
-
26
-
27
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/design/frontend/base/default/template/betaout_amplify/betaout_amplify/head.phtml DELETED
@@ -1,53 +0,0 @@
1
- <?php
2
- //$startTime = microtime(true);
3
- try {
4
- if (Mage::getSingleton('customer/session')->isLoggedIn()) {
5
-
6
- $c = Mage::getSingleton('customer/session')->getCustomer();
7
- $customer = Mage::getModel('customer/customer')->load($c->getId());
8
-
9
- $identity = $customer->getEmail();
10
- }
11
- if (Mage::getStoreConfig('betaout_amplify_options/settings/amplify_verified')) {
12
- ?>
13
- <script type="text/javascript">
14
- var Amplify = "";
15
- AmplifyConnect_Widget = <?php echo Mage::getStoreConfig("betaout_amplify_options/settings/AmplifyConnect_Widget"); ?>;
16
- shareTracking = "<?php echo Mage::getStoreConfig("betaout_amplify_options/settings/shareTracking"); ?>";
17
- urlTracking = "<?php echo Mage::getStoreConfig("betaout_amplify_options/settings/urlTracking"); ?>";
18
- API_Key = '<?php echo Mage::getStoreConfig("betaout_amplify_options/settings/amplify_secret"); ?>';
19
- Project_Id = '<?php echo Mage::getStoreConfig("betaout_amplify_options/settings/amplify_projectId"); ?>';
20
- function _amplify(u) {
21
- var d = document, f = d.getElementsByTagName("script")[0], _sc = d.createElement("script");
22
- _sc.type = "text/javascript";
23
- _sc.async = true;
24
- _sc.src = u;
25
- f.parentNode.insertBefore(_sc, f);
26
- __d = false;
27
- _sc.onload = _sc.onreadystatechange = function() {
28
- if (!__d && (!this.readyState || this.readyState === "loaded" || this.readyState === "complete")) {
29
- __d = true;
30
- Amplify = new AmplifyEngine();
31
- }
32
- };
33
- }
34
- _amplify("//d3oa6jk77hlbow.cloudfront.net/tejas.min.js");
35
- window.amplifyInit = function() {
36
-
37
- Amplify.identify({
38
- email: '<?php echo $identity; ?>',
39
- name: ''
40
- });
41
-
42
- }
43
-
44
- </script>
45
-
46
- <?php
47
- };
48
- } catch (Exception $ex) {
49
-
50
- }
51
- //$endTime = microtime(true);
52
- //echo "total Execution time ==" . ($endTime - $startTime);
53
- ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/design/frontend/base/default/template/betaout_amplify/betaout_amplify/homepage.phtml DELETED
@@ -1,40 +0,0 @@
1
-
2
- <?php
3
- $st = microtime(true);
4
- ?>
5
- <!--<script>
6
- (function() {
7
- function addEvent() {
8
- if ((typeof (Amplify) != 'undifined' && typeof (Amplify) == "object")) {
9
- Amplify.addEvent("", {'viewed_homepage': {
10
- 'viewed_homepage': 1
11
- }});
12
- }
13
- else {
14
- setTimeout(addEvent, 10);
15
- }
16
- }
17
- addEvent();
18
-
19
- })();
20
-
21
- </script>-->
22
- <?php
23
- //try{
24
- //require_once MAGENTO_ROOT . '/app/code/community/Betaout/Amplify/Model/Amplify.php';
25
- // $key = Mage::getStoreConfig('betaout_amplify_options/settings/amplify_key');
26
- // $secret = Mage::getStoreConfig('betaout_amplify_options/settings/amplify_secret');
27
- //
28
- // $projectId = Mage::getStoreConfig('betaout_amplify_options/settings/amplify_projectId');
29
- // $amplify = new Amplify($key, $secret, $projectId);
30
- //// $model = Mage::getModel('betaout_amplify/key');
31
- ////$identity = $model->getCustomerIdentity();
32
- //$amplify->event($identity,array('viewed_homepage'=>false));
33
- //} catch (Exception $ex) {
34
- //
35
- //}
36
- //
37
-
38
- //$endTime = microtime(true);
39
- //echo "total Execution time ==" . number_format(($endTime - $st), 9);
40
- ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/design/frontend/base/default/template/betaout_amplify/betaout_amplify/login.phtml DELETED
@@ -1,19 +0,0 @@
1
- <!--<script>
2
- function addEvent() {
3
- if ((typeof (Amplify) != 'undifined' && typeof (Amplify) == "object")) {
4
- Amplify.addEvent("", {'viewed_login_page': {
5
- 'viewed_login_page': 1
6
- }});
7
- }
8
- else {
9
- setTimeout(addEvent, 10);
10
- }
11
- }
12
- addEvent();
13
-
14
-
15
-
16
-
17
- </script>
18
-
19
- -->
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/design/frontend/base/default/template/betaout_amplify/betaout_amplify/sales_history.phtml DELETED
@@ -1,19 +0,0 @@
1
- <!--<script>
2
- function addEvent() {
3
- if ((typeof (Amplify) != 'undifined' && typeof (Amplify) == "object")) {
4
- Amplify.addEvent("", {'viewed_sales_order_history': {
5
- 'viewed_sales_order_history': 1
6
- }});
7
- }
8
- else {
9
- setTimeout(addEvent, 10);
10
- }
11
- }
12
- addEvent();
13
-
14
-
15
-
16
-
17
- </script>
18
-
19
- -->
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/design/frontend/base/default/template/betaout_amplify/betaout_amplify/search.phtml DELETED
@@ -1,14 +0,0 @@
1
- <!--<script>
2
- function addEvent() {
3
- if ((typeof (Amplify) != 'undifined' && typeof (Amplify) == "object")) {
4
- Amplify.addEvent("", {'keywords_searched_internally': {
5
- 'keywords_searched_internally': 1
6
- }});
7
- }
8
- else {
9
- setTimeout(addEvent, 10);
10
- }
11
- }
12
- addEvent();
13
- </script>
14
- -->
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/design/frontend/base/default/template/betaout_amplify/betaout_amplify/wishlist.phtml DELETED
@@ -1,34 +0,0 @@
1
- <!--<script>
2
- function addEvent() {
3
- if ((typeof (Amplify) != 'undifined' && typeof (Amplify) == "object")) {
4
- Amplify.addEvent("", {'viewed_wishlist': {
5
- 'viewed_wishlist': 1
6
- }});
7
- }
8
- else {
9
- setTimeout(addEvent, 10);
10
- }
11
- }
12
- addEvent();
13
- </script>-->
14
- <?php
15
- //try{
16
- //require_once MAGENTO_ROOT . '/app/code/community/Betaout/Amplify/Model/Amplify.php';
17
- // $key = Mage::getStoreConfig('betaout_amplify_options/settings/amplify_key');
18
- // $secret = Mage::getStoreConfig('betaout_amplify_options/settings/amplify_secret');
19
- //
20
- // $projectId = Mage::getStoreConfig('betaout_amplify_options/settings/amplify_projectId');
21
- // $amplify = new Amplify($key, $secret, $projectId);
22
- // $model = Mage::getModel('betaout_amplify/key');
23
- //$identity = $model->getCustomerIdentity();
24
- //$amplify->event($identity,array('viewed_wishlist'=>false));
25
- //} catch (Exception $ex) {
26
- //
27
- //}
28
- //
29
- ?>
30
- <?php
31
-
32
-
33
-
34
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/design/frontend/base/default/template/betaout_amplify/checkout.phtml CHANGED
@@ -1,4 +1,4 @@
1
- <!--<script>
2
  if(Ajax.Responders){
3
 
4
  Ajax.Responders.register({
@@ -49,4 +49,4 @@ if(Ajax.Responders){
49
  });
50
  }
51
 
52
- </script>-->
1
+ <script>
2
  if(Ajax.Responders){
3
 
4
  Ajax.Responders.register({
49
  });
50
  }
51
 
52
+ </script>
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Betaout</name>
4
- <version>1.0.2</version>
5
  <stability>stable</stability>
6
  <license>GPL</license>
7
  <channel>community</channel>
@@ -10,9 +10,9 @@
10
  <description>Betaout - Marketing Personalisation Software and Engagement Platform</description>
11
  <notes>Helping Ecommerce Companies drive more sales and customer happiness.</notes>
12
  <authors><author><name>Jitendra Bhadouria</name><user>Jitendra</user><email>jitendra@getamplify.com</email></author><author><name>Dharmendra Rai</name><user>Dharmendra</user><email>dharmendra@getamplify.com</email></author></authors>
13
- <date>2014-10-13</date>
14
- <time>12:19:29</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="e3fa68f2f08ff466b6357f48a6233f3c"/><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="Key.php" hash="d87fedee1e6bb5e642071c547beca1b2"/><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><file name="Order.php" hash="5a0f2583fa8eb6d943d3e700a88bd59d"/><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="613d1b20fcf0061f8fa40c3eb11e1fce"/><file name="system.xml" hash="c40ed90081519fc9a52184cb4971e308"/></dir><dir name="log"><file name="log.log" hash="be8a8d092fd7ba1381cfbe23eda18c2e"/></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="betaout_amplify"><file name="amplify.phtml" hash="85e5918735770c07615fcb482ec8a59d"/><file name="conflict.phtml" hash="43277d57972e4f750d8b65e0bfb5bcb8"/><file name="logo.phtml" hash="e3ba04dadaa851b305fc2c4aca3aff96"/></dir></dir><dir name="layout"><file name="betaout_amplify.xml" hash="3f6dc67340bd11b6708541d4abd2a3c6"/></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="betaout_amplify"><file name="account.phtml" hash="01cd3a0360e0311084892e6aa91670f6"/><file name="account_edit.phtml" hash="0f05ae8838cef60cfa6939d8f7b8e99e"/><dir name="betaout_amplify"><file name="account.phtml" hash="01cd3a0360e0311084892e6aa91670f6"/><file name="account_edit.phtml" hash="0f05ae8838cef60cfa6939d8f7b8e99e"/><file name="cart.phtml" hash="a27a29bd64a8829b535149364bcf8ce3"/><file name="checkout.phtml" hash="86af76a13e754f1eb12a76a850290145"/><file name="create.phtml" hash="bbfa7ecefe6c7aee482e475b594ea048"/><file name="head.phtml" hash="ab9d7bdc2b2f881750d2326904415ffc"/><file name="homepage.phtml" hash="26aad4234a7f50da95e584801fefec30"/><file name="login.phtml" hash="c9cd89dc9f30747a294b4dce3f85c53b"/><file name="sales_history.phtml" hash="2fdb5b83f9f15b6c7a678968ecac807c"/><file name="search.phtml" hash="0131538e90e885e74247e89fa3708995"/><file name="wishlist.phtml" hash="7576e63e137c2b02dea575f55c919b5d"/></dir><file name="cart.phtml" hash="a27a29bd64a8829b535149364bcf8ce3"/><file name="checkout.phtml" hash="86af76a13e754f1eb12a76a850290145"/><file name="create.phtml" hash="bbfa7ecefe6c7aee482e475b594ea048"/><file name="head.phtml" hash="ab9d7bdc2b2f881750d2326904415ffc"/><file name="homepage.phtml" hash="de459cecef9f5282393c383f1f19ade1"/><file name="login.phtml" hash="c9cd89dc9f30747a294b4dce3f85c53b"/><file name="sales_history.phtml" hash="2fdb5b83f9f15b6c7a678968ecac807c"/><file name="search.phtml" hash="0131538e90e885e74247e89fa3708995"/><file name="wishlist.phtml" hash="7576e63e137c2b02dea575f55c919b5d"/></dir></dir><dir name="layout"><file name="betaout_amplify.xml" hash="05ac4a3d9e4da3b00f904f156963c9d6"/></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="Users_1.png" hash="96e906660b1fbd8a17831bd3049dbcfa"/><file name="ajax-loader-tr.gif" hash="1ae32bc8232ff2527c627e5b38eb319a"/><file name="ajax-loader-tr_1.gif" hash="1ae32bc8232ff2527c627e5b38eb319a"/><file name="ajax-loader.gif" hash="e2a38f1e23288e315af3c55416bc1ce7"/><file name="ajax-loader_1.gif" hash="e2a38f1e23288e315af3c55416bc1ce7"/><file name="amp-connect.png" hash="0cea8d77700915725b17b59b6d2dcfcc"/><file name="amp-connect_1.png" hash="0cea8d77700915725b17b59b6d2dcfcc"/><file name="amplify.png" hash="1b4adb0d54bb79680fd8108f4a17e898"/><file name="amplify_1.png" hash="1b4adb0d54bb79680fd8108f4a17e898"/><file name="btn.png" hash="769b6736cb1bb8cb91ad7526ce9d9db8"/><file name="btn_1.png" hash="769b6736cb1bb8cb91ad7526ce9d9db8"/><file name="check.png" hash="252fd93a83e2a412ecd3b6eac01500b7"/><file name="check_1.png" hash="252fd93a83e2a412ecd3b6eac01500b7"/><file name="com-app.png" hash="1f241f552bdbe1f86763981c79c8d85f"/><file name="com-app_1.png" hash="1f241f552bdbe1f86763981c79c8d85f"/><file name="db-1.png" hash="840d96bd5679bf4fa2d6a9577f7d3539"/><file name="db-1_1.png" hash="840d96bd5679bf4fa2d6a9577f7d3539"/><file name="engage-app.png" hash="888cde6a10a3dd9abcfccd1a5f0c8fde"/><file name="engage-app_1.png" hash="888cde6a10a3dd9abcfccd1a5f0c8fde"/><file name="icon.png" hash="22ea725b0bee73cb03f63b063b02469f"/><file name="icon_1.png" hash="22ea725b0bee73cb03f63b063b02469f"/><file name="large_bracket.png" hash="d2e8da8266e513bd5f15b0c9855be058"/><file name="large_bracket_1.png" hash="d2e8da8266e513bd5f15b0c9855be058"/><file name="mini_bracket.png" hash="e844112e5e5173f64b3385a4a140bdeb"/><file name="mini_bracket_1.png" hash="e844112e5e5173f64b3385a4a140bdeb"/><file name="plugin-logo.png" hash="cdbe958c79bb55fd615d5c3918ad3831"/><file name="plugin-logo_1.png" hash="cdbe958c79bb55fd615d5c3918ad3831"/><file name="socialicon.png" hash="f1145a7105620196bd23ed65d3b3f468"/><file name="socialicon_1.png" hash="f1145a7105620196bd23ed65d3b3f468"/><file name="u111_normal.png" hash="fae6b2993bb6b055547280b5090764a0"/><file name="u111_normal_1.png" hash="fae6b2993bb6b055547280b5090764a0"/><file name="u151_normal.png" hash="5bc3388cb53aa21aad192b72a3b51c8c"/><file name="u151_normal_1.png" hash="5bc3388cb53aa21aad192b72a3b51c8c"/><file name="u185_normal.png" hash="34d1b35c670f1465ef270ef32c6daaff"/><file name="u185_normal_1.png" hash="34d1b35c670f1465ef270ef32c6daaff"/><file name="u187_normal.png" hash="8a40e2eafc78055efee2daf50d4705d5"/><file name="u187_normal_1.png" hash="8a40e2eafc78055efee2daf50d4705d5"/><file name="u189_normal.png" hash="8035feedcfdd96da5c4755c8f38318ff"/><file name="u189_normal_1.png" hash="8035feedcfdd96da5c4755c8f38318ff"/><file name="u192_normal.png" hash="4b043b0d2c32a3804a189f9383fd83f2"/><file name="u192_normal_1.png" hash="4b043b0d2c32a3804a189f9383fd83f2"/><file name="u204_normal.png" hash="2d8347498231f64c3cfe055c13599544"/><file name="u204_normal_1.png" hash="2d8347498231f64c3cfe055c13599544"/><file name="u206_normal.png" hash="1113a57fe91593ff5e239bcf4dee100a"/><file name="u206_normal_1.png" hash="1113a57fe91593ff5e239bcf4dee100a"/><file name="u3_normal.png" hash="769b6736cb1bb8cb91ad7526ce9d9db8"/><file name="u3_normal_1.png" hash="769b6736cb1bb8cb91ad7526ce9d9db8"/><file name="u74_normal.png" hash="7dc03403001cb96e1247243bd0e73391"/><file name="u74_normal_1.png" hash="7dc03403001cb96e1247243bd0e73391"/><file name="u89_normal.png" hash="abd8a60573df3db36ae9908a81d0b197"/><file name="u89_normal_1.png" hash="abd8a60573df3db36ae9908a81d0b197"/><file name="u93_normal.png" hash="66fd0ba981b8407cbe630607ecbe0223"/><file name="u93_normal_1.png" hash="66fd0ba981b8407cbe630607ecbe0223"/><file name="u96_normal.png" hash="6e91f7aa2454ab6cb06fcb01cd77bb26"/><file name="u96_normal_1.png" hash="6e91f7aa2454ab6cb06fcb01cd77bb26"/></dir></dir></dir></dir><dir name="default"><dir name="default"><dir name="images"><dir name="amplify"><file name="ajax-loader-tr.gif" hash="1ae32bc8232ff2527c627e5b38eb319a"/><file name="ajax-loader-tr_1.gif" hash="1ae32bc8232ff2527c627e5b38eb319a"/><file name="ajax-loader.gif" hash="e2a38f1e23288e315af3c55416bc1ce7"/><file name="ajax-loader_1.gif" hash="e2a38f1e23288e315af3c55416bc1ce7"/><file name="amp-n-logo.png" hash="2f63b2187049acfd7be9bcc515abf4eb"/><file name="amp-n-logo_1.png" hash="2f63b2187049acfd7be9bcc515abf4eb"/><file name="amplify.gif" hash="82085013e11db77a7164dbd7faeb427b"/><file name="amplify_1.gif" hash="82085013e11db77a7164dbd7faeb427b"/><file name="logo-amp.png" hash="8719f9859bfb5497ecbf05962f15b8c6"/><file name="logo-amp_1.png" hash="8719f9859bfb5497ecbf05962f15b8c6"/><file name="small_amp.png" hash="7245bb50b46c0689dd76d41fd8e5efe8"/><file name="small_amp_1.png" hash="7245bb50b46c0689dd76d41fd8e5efe8"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Betaout_Amplify.xml" hash="a8228fbbf2d0a09dc90cd7c80b4692f0"/></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>4.0.0</min><max>5.5.1</max></php><package><name>Mage_Core_Modules</name><channel>community</channel><min></min><max></max></package></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Betaout</name>
4
+ <version>1.0.3</version>
5
  <stability>stable</stability>
6
  <license>GPL</license>
7
  <channel>community</channel>
10
  <description>Betaout - Marketing Personalisation Software and Engagement Platform</description>
11
  <notes>Helping Ecommerce Companies drive more sales and customer happiness.</notes>
12
  <authors><author><name>Jitendra Bhadouria</name><user>Jitendra</user><email>jitendra@getamplify.com</email></author><author><name>Dharmendra Rai</name><user>Dharmendra</user><email>dharmendra@getamplify.com</email></author></authors>
13
+ <date>2014-10-16</date>
14
+ <time>14:38:19</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="74fc0ea348ff46896f41011ba8e3fef3"/><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="Key.php" hash="a58545881e10338510778b8b982fd619"/><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><file name="Order.php" hash="5a0f2583fa8eb6d943d3e700a88bd59d"/><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="613d1b20fcf0061f8fa40c3eb11e1fce"/><file name="system.xml" hash="c40ed90081519fc9a52184cb4971e308"/></dir><dir name="log"><file name="log.log" hash="be8a8d092fd7ba1381cfbe23eda18c2e"/></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="betaout_amplify"><file name="amplify.phtml" hash="85e5918735770c07615fcb482ec8a59d"/><file name="conflict.phtml" hash="43277d57972e4f750d8b65e0bfb5bcb8"/><file name="logo.phtml" hash="e3ba04dadaa851b305fc2c4aca3aff96"/></dir></dir><dir name="layout"><file name="betaout_amplify.xml" hash="3f6dc67340bd11b6708541d4abd2a3c6"/></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="betaout_amplify"><file name="account.phtml" hash="01cd3a0360e0311084892e6aa91670f6"/><file name="account_edit.phtml" hash="0f05ae8838cef60cfa6939d8f7b8e99e"/><file name="cart.phtml" hash="a27a29bd64a8829b535149364bcf8ce3"/><file name="checkout.phtml" hash="86af76a13e754f1eb12a76a850290145"/><file name="create.phtml" hash="bbfa7ecefe6c7aee482e475b594ea048"/><file name="head.phtml" hash="ab9d7bdc2b2f881750d2326904415ffc"/><file name="homepage.phtml" hash="de459cecef9f5282393c383f1f19ade1"/><file name="login.phtml" hash="c9cd89dc9f30747a294b4dce3f85c53b"/><file name="sales_history.phtml" hash="2fdb5b83f9f15b6c7a678968ecac807c"/><file name="search.phtml" hash="0131538e90e885e74247e89fa3708995"/><file name="wishlist.phtml" hash="7576e63e137c2b02dea575f55c919b5d"/></dir></dir><dir name="layout"><file name="betaout_amplify.xml" hash="05ac4a3d9e4da3b00f904f156963c9d6"/></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="Users_1.png" hash="96e906660b1fbd8a17831bd3049dbcfa"/><file name="ajax-loader-tr.gif" hash="1ae32bc8232ff2527c627e5b38eb319a"/><file name="ajax-loader-tr_1.gif" hash="1ae32bc8232ff2527c627e5b38eb319a"/><file name="ajax-loader.gif" hash="e2a38f1e23288e315af3c55416bc1ce7"/><file name="ajax-loader_1.gif" hash="e2a38f1e23288e315af3c55416bc1ce7"/><file name="amp-connect.png" hash="0cea8d77700915725b17b59b6d2dcfcc"/><file name="amp-connect_1.png" hash="0cea8d77700915725b17b59b6d2dcfcc"/><file name="amplify.png" hash="1b4adb0d54bb79680fd8108f4a17e898"/><file name="amplify_1.png" hash="1b4adb0d54bb79680fd8108f4a17e898"/><file name="btn.png" hash="769b6736cb1bb8cb91ad7526ce9d9db8"/><file name="btn_1.png" hash="769b6736cb1bb8cb91ad7526ce9d9db8"/><file name="check.png" hash="252fd93a83e2a412ecd3b6eac01500b7"/><file name="check_1.png" hash="252fd93a83e2a412ecd3b6eac01500b7"/><file name="com-app.png" hash="1f241f552bdbe1f86763981c79c8d85f"/><file name="com-app_1.png" hash="1f241f552bdbe1f86763981c79c8d85f"/><file name="db-1.png" hash="840d96bd5679bf4fa2d6a9577f7d3539"/><file name="db-1_1.png" hash="840d96bd5679bf4fa2d6a9577f7d3539"/><file name="engage-app.png" hash="888cde6a10a3dd9abcfccd1a5f0c8fde"/><file name="engage-app_1.png" hash="888cde6a10a3dd9abcfccd1a5f0c8fde"/><file name="icon.png" hash="22ea725b0bee73cb03f63b063b02469f"/><file name="icon_1.png" hash="22ea725b0bee73cb03f63b063b02469f"/><file name="large_bracket.png" hash="d2e8da8266e513bd5f15b0c9855be058"/><file name="large_bracket_1.png" hash="d2e8da8266e513bd5f15b0c9855be058"/><file name="mini_bracket.png" hash="e844112e5e5173f64b3385a4a140bdeb"/><file name="mini_bracket_1.png" hash="e844112e5e5173f64b3385a4a140bdeb"/><file name="plugin-logo.png" hash="cdbe958c79bb55fd615d5c3918ad3831"/><file name="plugin-logo_1.png" hash="cdbe958c79bb55fd615d5c3918ad3831"/><file name="socialicon.png" hash="f1145a7105620196bd23ed65d3b3f468"/><file name="socialicon_1.png" hash="f1145a7105620196bd23ed65d3b3f468"/><file name="u111_normal.png" hash="fae6b2993bb6b055547280b5090764a0"/><file name="u111_normal_1.png" hash="fae6b2993bb6b055547280b5090764a0"/><file name="u151_normal.png" hash="5bc3388cb53aa21aad192b72a3b51c8c"/><file name="u151_normal_1.png" hash="5bc3388cb53aa21aad192b72a3b51c8c"/><file name="u185_normal.png" hash="34d1b35c670f1465ef270ef32c6daaff"/><file name="u185_normal_1.png" hash="34d1b35c670f1465ef270ef32c6daaff"/><file name="u187_normal.png" hash="8a40e2eafc78055efee2daf50d4705d5"/><file name="u187_normal_1.png" hash="8a40e2eafc78055efee2daf50d4705d5"/><file name="u189_normal.png" hash="8035feedcfdd96da5c4755c8f38318ff"/><file name="u189_normal_1.png" hash="8035feedcfdd96da5c4755c8f38318ff"/><file name="u192_normal.png" hash="4b043b0d2c32a3804a189f9383fd83f2"/><file name="u192_normal_1.png" hash="4b043b0d2c32a3804a189f9383fd83f2"/><file name="u204_normal.png" hash="2d8347498231f64c3cfe055c13599544"/><file name="u204_normal_1.png" hash="2d8347498231f64c3cfe055c13599544"/><file name="u206_normal.png" hash="1113a57fe91593ff5e239bcf4dee100a"/><file name="u206_normal_1.png" hash="1113a57fe91593ff5e239bcf4dee100a"/><file name="u3_normal.png" hash="769b6736cb1bb8cb91ad7526ce9d9db8"/><file name="u3_normal_1.png" hash="769b6736cb1bb8cb91ad7526ce9d9db8"/><file name="u74_normal.png" hash="7dc03403001cb96e1247243bd0e73391"/><file name="u74_normal_1.png" hash="7dc03403001cb96e1247243bd0e73391"/><file name="u89_normal.png" hash="abd8a60573df3db36ae9908a81d0b197"/><file name="u89_normal_1.png" hash="abd8a60573df3db36ae9908a81d0b197"/><file name="u93_normal.png" hash="66fd0ba981b8407cbe630607ecbe0223"/><file name="u93_normal_1.png" hash="66fd0ba981b8407cbe630607ecbe0223"/><file name="u96_normal.png" hash="6e91f7aa2454ab6cb06fcb01cd77bb26"/><file name="u96_normal_1.png" hash="6e91f7aa2454ab6cb06fcb01cd77bb26"/></dir></dir></dir></dir><dir name="default"><dir name="default"><dir name="images"><dir name="amplify"><file name="ajax-loader-tr.gif" hash="1ae32bc8232ff2527c627e5b38eb319a"/><file name="ajax-loader-tr_1.gif" hash="1ae32bc8232ff2527c627e5b38eb319a"/><file name="ajax-loader.gif" hash="e2a38f1e23288e315af3c55416bc1ce7"/><file name="ajax-loader_1.gif" hash="e2a38f1e23288e315af3c55416bc1ce7"/><file name="amp-n-logo.png" hash="2f63b2187049acfd7be9bcc515abf4eb"/><file name="amp-n-logo_1.png" hash="2f63b2187049acfd7be9bcc515abf4eb"/><file name="amplify.gif" hash="82085013e11db77a7164dbd7faeb427b"/><file name="amplify_1.gif" hash="82085013e11db77a7164dbd7faeb427b"/><file name="logo-amp.png" hash="8719f9859bfb5497ecbf05962f15b8c6"/><file name="logo-amp_1.png" hash="8719f9859bfb5497ecbf05962f15b8c6"/><file name="small_amp.png" hash="7245bb50b46c0689dd76d41fd8e5efe8"/><file name="small_amp_1.png" hash="7245bb50b46c0689dd76d41fd8e5efe8"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Betaout_Amplify.xml" hash="a8228fbbf2d0a09dc90cd7c80b4692f0"/></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>4.0.0</min><max>5.5.1</max></php><package><name>Mage_Core_Modules</name><channel>community</channel><min></min><max></max></package></required></dependencies>
18
  </package>