Fanplayr - Version 1.0.75

Version Notes

- IIS HTTPS fixes
- fixes for 3rd party verbose security checkers

Download this release

Release Info

Developer Tarwin Stroh-Spijer
Extension Fanplayr
Version 1.0.75
Comparing to
See all releases


Code changes from version 1.0.74 to 1.0.75

app/code/community/Fanplayr/Socialcoupons/Model/EmbedObserver.php CHANGED
@@ -56,7 +56,6 @@
56
  'fanplayr_embed_block'
57
  );
58
 
59
-
60
  // this variable has changed from simply doing "wait for onload" to being for differnt types
61
  // 0: Ajax: Normal
62
  // 1: Ajax: Lazy load
@@ -166,6 +165,7 @@
166
 
167
  $block->assign('applyToCartUrl', $shopUrl . 'fanplayr/coupon/add/code/%c/');
168
  $block->assign('deputizeUrl', $shopUrl . 'fanplayr/coupon/deputize/a/%a/d/%d/');
 
169
 
170
  $block->assign('noTags', false);
171
 
@@ -582,23 +582,37 @@
582
  // remove spaces
583
  $depCoupon = trim($depCoupon);
584
 
585
- // if someone enters the actual code, and it is a prefix code
586
- // then set it to prefix with "..." on the end
587
- if (strpos($depCoupon, $disallowedPrefix) === 0) {
588
- Mage::app()->getRequest()->setParam($inpVar, $disallowedPrefix . '...');
589
- if ($setPost){
590
- if ($inpVarIsArray) {
591
- $tmpIn = Mage::app()->getRequest()->getPost($inpVar);
592
- $tmpIn[$inpVarIsArray] = $disallowedPrefix . '...';
593
- Mage::app()->getRequest()->setPost($inpVar, $tmpIn);
594
- }else{
595
- Mage::app()->getRequest()->setPost($inpVar, $disallowedPrefix . '...');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
596
  }
 
597
  }
598
- return;
599
  }
600
 
601
- $session = Mage::getSingleton("core/session");
602
  $deputies = $session->getData("fanplayr_deputy_codes");
603
 
604
  // cookie fallback
56
  'fanplayr_embed_block'
57
  );
58
 
 
59
  // this variable has changed from simply doing "wait for onload" to being for differnt types
60
  // 0: Ajax: Normal
61
  // 1: Ajax: Lazy load
165
 
166
  $block->assign('applyToCartUrl', $shopUrl . 'fanplayr/coupon/add/code/%c/');
167
  $block->assign('deputizeUrl', $shopUrl . 'fanplayr/coupon/deputize/a/%a/d/%d/');
168
+ $block->assign('sessionCouponUrl', $shopUrl . 'fanplayr/coupon/session/code/%c/');
169
 
170
  $block->assign('noTags', false);
171
 
582
  // remove spaces
583
  $depCoupon = trim($depCoupon);
584
 
585
+ $session = Mage::getSingleton("core/session");
586
+
587
+ // <SESSION_COUPON
588
+ $disallowUsingOldPrefixMethod = true;
589
+ $allowedCoupons = $session->getData("fanplayr_session_codes");
590
+ if ( $allowedCoupons && is_array($allowedCoupons) ) {
591
+ if ( in_array($depCoupon, $allowedCoupons) ) {
592
+ // let's let this coupon through ...
593
+ $disallowUsingOldPrefixMethod = false;
594
+ }
595
+ }
596
+ // SESSION_COUPON>
597
+
598
+ if ( $disallowUsingOldPrefixMethod ) {
599
+ // if someone enters the actual code, and it is a prefix code
600
+ // then set it to prefix with "..." on the end
601
+ if (strpos($depCoupon, $disallowedPrefix) === 0) {
602
+ Mage::app()->getRequest()->setParam($inpVar, $disallowedPrefix . '...');
603
+ if ($setPost){
604
+ if ($inpVarIsArray) {
605
+ $tmpIn = Mage::app()->getRequest()->getPost($inpVar);
606
+ $tmpIn[$inpVarIsArray] = $disallowedPrefix . '...';
607
+ Mage::app()->getRequest()->setPost($inpVar, $tmpIn);
608
+ }else{
609
+ Mage::app()->getRequest()->setPost($inpVar, $disallowedPrefix . '...');
610
+ }
611
  }
612
+ return;
613
  }
 
614
  }
615
 
 
616
  $deputies = $session->getData("fanplayr_deputy_codes");
617
 
618
  // cookie fallback
app/code/community/Fanplayr/Socialcoupons/controllers/AjaxController.php CHANGED
@@ -42,6 +42,7 @@
42
 
43
  $block->assign('applyToCartUrl', $shopUrl . 'fanplayr/coupon/add/code/%c/');
44
  $block->assign('deputizeUrl', $shopUrl . 'fanplayr/coupon/deputize/a/%a/d/%d/');
 
45
 
46
  $block->assign('noTags', true);
47
 
42
 
43
  $block->assign('applyToCartUrl', $shopUrl . 'fanplayr/coupon/add/code/%c/');
44
  $block->assign('deputizeUrl', $shopUrl . 'fanplayr/coupon/deputize/a/%a/d/%d/');
45
+ $block->assign('sessionCouponUrl', $shopUrl . 'fanplayr/coupon/session/code/%c/');
46
 
47
  $block->assign('noTags', true);
48
 
app/code/community/Fanplayr/Socialcoupons/controllers/CouponController.php CHANGED
@@ -3,6 +3,11 @@
3
  {
4
  public $hasSucceeded;
5
 
 
 
 
 
 
6
  public function indexAction()
7
  {
8
  echo $this->jsonMessage(true, 'Please use a valid method.');
@@ -11,6 +16,7 @@
11
  public function addAction()
12
  {
13
  $p = $this->getRequest()->getParams();
 
14
  $code = array_key_exists('code', $p) ? $p['code'] : '';
15
 
16
  $redirectUrl = array_key_exists('redirect', $p) ? $p['redirect'] : null;
@@ -27,6 +33,28 @@
27
  }
28
  }
29
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
  public function deputizeAction()
31
  {
32
  $p = $this->getRequest()->getParams();
@@ -72,12 +100,14 @@
72
  $itemInCart = false;
73
  // store it for later use ...
74
  $this->remember($couponCode);
 
75
  $message = $this->__('There are currently no items in the shopping cart. We will try and apply your coupon code "%s" once you have added some items to your cart.', Mage::helper('core')->htmlEscape($couponCode));
76
  $this->notice($message);
77
  }
78
 
79
  if ($itemInCart){
80
 
 
81
  $oldCouponCode = $quote->getCouponCode();
82
  if (!strlen($couponCode) && !strlen($oldCouponCode)) {
83
  $this->redirect();
@@ -111,23 +141,32 @@
111
  }
112
 
113
  try {
 
114
  $quote->getShippingAddress()->setCollectShippingRates(true);
115
  $quote->setCouponCode(strlen($couponCode) ? $couponCode : '')
116
  ->collectTotals()
117
  ->save();
118
  } catch (Exception $e) {
 
119
  //$this->error('Cannot apply coupon code: ' . $e->getMessage());
120
  $this->error($this->__('Cannot apply the coupon code'));
121
  }
122
 
 
 
 
 
 
123
  if ($couponCode) {
124
- if ($couponCode != $quote-> getCouponCode()) {
 
125
  $this->error($this->__('Coupon code "%s" is not valid.', Mage::helper('core')->htmlEscape($couponCode)));
126
  //$this->error('Coupon code is invalid.');
127
  }
128
  }
129
 
130
  if ($this->hasSucceeded) {
 
131
  $this->success($this->__('Coupon code "%s" was applied.', Mage::helper('core')->htmlEscape($couponCode)));
132
  //$this->success('Your coupon has been applied.');
133
  }
@@ -155,7 +194,11 @@
155
 
156
  $protocol = 'http';
157
  if (array_key_exists('HTTPS', $_SERVER) && !empty($_SERVER['HTTPS'])){
158
- $protocol = 'https';
 
 
 
 
159
  }
160
 
161
  $shopUrl = $protocol . ':' . $shopUrl;
@@ -207,4 +250,4 @@
207
  }
208
  }
209
 
210
- ?>
3
  {
4
  public $hasSucceeded;
5
 
6
+ public function log($message)
7
+ {
8
+ Mage::log($message, null, 'fanplayr_coupon.log');
9
+ }
10
+
11
  public function indexAction()
12
  {
13
  echo $this->jsonMessage(true, 'Please use a valid method.');
16
  public function addAction()
17
  {
18
  $p = $this->getRequest()->getParams();
19
+
20
  $code = array_key_exists('code', $p) ? $p['code'] : '';
21
 
22
  $redirectUrl = array_key_exists('redirect', $p) ? $p['redirect'] : null;
33
  }
34
  }
35
 
36
+ // <SESSION_COUPON
37
+ public function sessionAction()
38
+ {
39
+ $p = $this->getRequest()->getParams();
40
+
41
+ $code = array_key_exists('code', $p) ? $p['code'] : '';
42
+
43
+ $session = Mage::getSingleton("core/session");
44
+ $allowedCoupons = $session->getData("fanplayr_session_codes");
45
+
46
+ if ( !$allowedCoupons || is_array($allowedCoupons) ) {
47
+ $allowedCoupons = array();
48
+ }
49
+
50
+ if ( !in_array($code, $allowedCoupons) ) {
51
+ array_push($allowedCoupons, $code);
52
+ }
53
+
54
+ $session->setData("fanplayr_session_codes", $allowedCoupons);
55
+ }
56
+ // SESSION_COUPON>
57
+
58
  public function deputizeAction()
59
  {
60
  $p = $this->getRequest()->getParams();
100
  $itemInCart = false;
101
  // store it for later use ...
102
  $this->remember($couponCode);
103
+
104
  $message = $this->__('There are currently no items in the shopping cart. We will try and apply your coupon code "%s" once you have added some items to your cart.', Mage::helper('core')->htmlEscape($couponCode));
105
  $this->notice($message);
106
  }
107
 
108
  if ($itemInCart){
109
 
110
+
111
  $oldCouponCode = $quote->getCouponCode();
112
  if (!strlen($couponCode) && !strlen($oldCouponCode)) {
113
  $this->redirect();
141
  }
142
 
143
  try {
144
+ $this->log('applyCoupon: trying to apply coupon');
145
  $quote->getShippingAddress()->setCollectShippingRates(true);
146
  $quote->setCouponCode(strlen($couponCode) ? $couponCode : '')
147
  ->collectTotals()
148
  ->save();
149
  } catch (Exception $e) {
150
+ $this->log('applyCoupon: failed applying coupon');
151
  //$this->error('Cannot apply coupon code: ' . $e->getMessage());
152
  $this->error($this->__('Cannot apply the coupon code'));
153
  }
154
 
155
+ $this->log('applyCoupon: coupon code - ' . $couponCode);
156
+ $this->log('applyCoupon: quote->getCouponCode() - ' . $quote->getCouponCode());
157
+ //$this->log(var_export($quote, true));
158
+ //$this->log(print_r($quote, true));
159
+
160
  if ($couponCode) {
161
+ if ($couponCode != $quote->getCouponCode()) {
162
+ $this->log('applyCoupon: coupon code not valid');
163
  $this->error($this->__('Coupon code "%s" is not valid.', Mage::helper('core')->htmlEscape($couponCode)));
164
  //$this->error('Coupon code is invalid.');
165
  }
166
  }
167
 
168
  if ($this->hasSucceeded) {
169
+ $this->log('applyCoupon: success');
170
  $this->success($this->__('Coupon code "%s" was applied.', Mage::helper('core')->htmlEscape($couponCode)));
171
  //$this->success('Your coupon has been applied.');
172
  }
194
 
195
  $protocol = 'http';
196
  if (array_key_exists('HTTPS', $_SERVER) && !empty($_SERVER['HTTPS'])){
197
+ if ( strtolower($_SERVER['HTTPS']) === 'off' ) {
198
+ // it's damn ISAPI with IIS, do not use HTTPS
199
+ } else {
200
+ $protocol = 'https';
201
+ }
202
  }
203
 
204
  $shopUrl = $protocol . ':' . $shopUrl;
250
  }
251
  }
252
 
253
+ ?>
app/design/frontend/base/default/template/fanplayr/embed.phtml CHANGED
@@ -36,6 +36,8 @@
36
  if ( !function_exists('fanplayr_qr') ){
37
  function fanplayr_qr($s){
38
  $s = str_replace("'", "\'", $s);
 
 
39
  return $s;
40
  }
41
  }
@@ -52,6 +54,7 @@
52
  accountKey: _.accountKey || '<?php echo $accountKey; ?>',
53
  applyToCartUrl: encodeURIComponent(_.applyToCartUrl || '<?php echo $applyToCartUrl; ?>'),
54
  deputizeUrl: encodeURIComponent(_.deputizeUrl || _.depitizeUrl || '<?php echo $deputizeUrl; ?>'),
 
55
  storeDomain: _.storeDomain || '',
56
  data: {
57
  lineItemCount: <?php echo $data['lineItemCount']; ?>,
36
  if ( !function_exists('fanplayr_qr') ){
37
  function fanplayr_qr($s){
38
  $s = str_replace("'", "\'", $s);
39
+ $s = str_replace("<", "&lt;", $s);
40
+ $s = str_replace(">", "&gt;", $s);
41
  return $s;
42
  }
43
  }
54
  accountKey: _.accountKey || '<?php echo $accountKey; ?>',
55
  applyToCartUrl: encodeURIComponent(_.applyToCartUrl || '<?php echo $applyToCartUrl; ?>'),
56
  deputizeUrl: encodeURIComponent(_.deputizeUrl || _.depitizeUrl || '<?php echo $deputizeUrl; ?>'),
57
+ sessionCouponUrl: encodeURIComponent(_.sessionCouponUrl || '<?php echo $sessionCouponUrl; ?>'),
58
  storeDomain: _.storeDomain || '',
59
  data: {
60
  lineItemCount: <?php echo $data['lineItemCount']; ?>,
app/design/frontend/default/default/template/fanplayr/embed.phtml CHANGED
@@ -36,6 +36,8 @@
36
  if ( !function_exists('fanplayr_qr') ){
37
  function fanplayr_qr($s){
38
  $s = str_replace("'", "\'", $s);
 
 
39
  return $s;
40
  }
41
  }
@@ -52,6 +54,7 @@
52
  accountKey: _.accountKey || '<?php echo $accountKey; ?>',
53
  applyToCartUrl: encodeURIComponent(_.applyToCartUrl || '<?php echo $applyToCartUrl; ?>'),
54
  deputizeUrl: encodeURIComponent(_.deputizeUrl || _.depitizeUrl || '<?php echo $deputizeUrl; ?>'),
 
55
  storeDomain: _.storeDomain || '',
56
  data: {
57
  lineItemCount: <?php echo $data['lineItemCount']; ?>,
36
  if ( !function_exists('fanplayr_qr') ){
37
  function fanplayr_qr($s){
38
  $s = str_replace("'", "\'", $s);
39
+ $s = str_replace("<", "&lt;", $s);
40
+ $s = str_replace(">", "&gt;", $s);
41
  return $s;
42
  }
43
  }
54
  accountKey: _.accountKey || '<?php echo $accountKey; ?>',
55
  applyToCartUrl: encodeURIComponent(_.applyToCartUrl || '<?php echo $applyToCartUrl; ?>'),
56
  deputizeUrl: encodeURIComponent(_.deputizeUrl || _.depitizeUrl || '<?php echo $deputizeUrl; ?>'),
57
+ sessionCouponUrl: encodeURIComponent(_.sessionCouponUrl || '<?php echo $sessionCouponUrl; ?>'),
58
  storeDomain: _.storeDomain || '',
59
  data: {
60
  lineItemCount: <?php echo $data['lineItemCount']; ?>,
app/etc/modules/Fanplayr_Socialcoupons.xml CHANGED
@@ -4,7 +4,7 @@
4
  <Fanplayr_Socialcoupons>
5
  <active>true</active>
6
  <codePool>community</codePool>
7
- <version>1.0.74</version>
8
  </Fanplayr_Socialcoupons>
9
  </modules>
10
  </config>
4
  <Fanplayr_Socialcoupons>
5
  <active>true</active>
6
  <codePool>community</codePool>
7
+ <version>1.0.75</version>
8
  </Fanplayr_Socialcoupons>
9
  </modules>
10
  </config>
package.xml CHANGED
@@ -1,18 +1,19 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Fanplayr</name>
4
- <version>1.0.74</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.fanplayr.com/Fanplayr_terms_and_conditions.pdf">Fanplayr License</license>
7
  <channel>community</channel>
8
  <extends/>
9
- <summary>Fanplayr Conversions enables Magento merchants to harness an automated solution to track, analyze and intelligently target your visitors</summary>
10
- <description>Fanplayr Conversion enables Magento merchants to harness an automated solution to track, analyze and intelligently target your visitors</description>
11
- <notes>- Small bug fixes</notes>
12
- <authors><author><name>Tarwin Stroh-Spijer</name><user>auto-converted</user><email>tarwin@fanplayr.com</email></author></authors>
13
- <date>2016-03-11</date>
14
- <time>19:53:40</time>
15
- <contents><target name="mageskin"><dir name="frontend"><dir name="socialcoupons"><dir name="images"><file name="accept.png" hash="8bfed48756f192ed7afe6eaa4799aae4"/><file name="activity.gif" hash="fc4ac1c258ac6d13be5afe5ecc5f10e6"/><file name="disable.png" hash="bb2fc85482c3e9c9a9ab4bc3e8e4ebe6"/><file name="fanplayr_logo.png" hash="3d8827fedc2ff79d3041a64265a2f7e0"/><file name="genius_16.png" hash="895bf92ff7689c8116bf1a6f7583c3ab"/><file name="pencil.png" hash="a34e71ab08a6d1162b948d26321dea50"/><file name="progress-loader.gif" hash="5243dea18965998ada5477a2117e2ead"/><file name="sales_16.png" hash="e7b77f97a81b4339c9c6b94e1077a675"/><file name="star_gold.png" hash="73541d75f70cbda977a8b04bf87ddc39"/><file name="warning.png" hash="c847e1076da70df83ef5284622b82a74"/><file name=".picasa.ini" hash="98908647c7af9a7c540c9d711b911d0c"/></dir><file name="fanplayr_join.html" hash="72f2ba80caf3b3f790a3eed928c79626"/><file name="fanplayr_socialcoupons.css" hash="35999bbf31ea537f170da6324dd64450"/><file name="fanplayr_socialcoupons.js" hash="ee3946e645278c5a0f59a0e70ca55271"/><file name="fanplayr_socialcoupons.min.css" hash="c6d326ff4161a090b77a0b00e2f7d81d"/><file name="jquery-1.7.2.min.js" hash="8d1a6f9c08b59506c56b18e2b2695fc8"/></dir></dir></target><target name="magecommunity"><dir name="Fanplayr"><dir name="Socialcoupons"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Form"><dir name="Field"><file name="Installhelper.php" hash="be8593b281752a5d5d830af6f6eadf07"/></dir></dir></dir></dir></dir></dir><dir name="Model"><file name="CartObserver.php" hash="2806ffebb289748fdbf7938180fd79ee"/><file name="EmbedObserver.php" hash="62a1c3b0fda94218fda32501259fbaaa"/><file name="OrderObserver.php" hash="4404ffe5fbaea4f9308a7164be073569"/></dir><dir name="controllers"><file name="AjaxController.php" hash="fbfd12884cf72357e51eeb39c89faadc"/><file name="CompyController.php" hash="5c8aac0a977892f58cd28659488f9e1c"/><file name="CouponController.php" hash="f1d8297710aaf3388f0d3fc527437eba"/><file name="IndexController.php" hash="8b18f83d9592433bfd4f196cf574fec3"/></dir><dir name="etc"><file name="config.xml" hash="df1c1ebc423b6e0dc0c71b6ba87e80b4"/><file name="system.xml" hash="a32e53b5dd521ca60be8b61bc49c886b"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Fanplayr_Socialcoupons.xml" hash="97830343aa8cf06d71fbf762c2fcda96"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="fanplayr"><file name="embed.phtml" hash="0c38f0a60f4ce02ca8a58a98815ec0db"/><file name="success.phtml" hash="1f7f7fadf2d2c051adc60bee21027d9a"/><file name="embed_ajax.phtml" hash="1248d9f1e3b294d4e43faf85b896a9ad"/></dir></dir></dir></dir><dir name="default"><dir name="default"><dir name="template"><dir name="fanplayr"><file name="embed.phtml" hash="0c38f0a60f4ce02ca8a58a98815ec0db"/><file name="success.phtml" hash="1f7f7fadf2d2c051adc60bee21027d9a"/><file name="embed_ajax.phtml" hash="1248d9f1e3b294d4e43faf85b896a9ad"/></dir></dir></dir></dir></dir></target></contents>
 
16
  <compatible/>
17
- <dependencies/>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Fanplayr</name>
4
+ <version>1.0.75</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.fanplayr.com/Fanplayr_terms_and_conditions.pdf">Fanplayr License</license>
7
  <channel>community</channel>
8
  <extends/>
9
+ <summary>Fanplayr Conversions enables Magento merchants to harness an automated solution to track, analyze and intelligently target your visitors &amp; convert them to loyal customers.</summary>
10
+ <description>Fanplayr Conversion enables Magento merchants to harness an automated solution to track, analyze and intelligently target your visitors &amp; convert them to loyal customers.</description>
11
+ <notes>- IIS HTTPS fixes&#xD;
12
+ - fixes for 3rd party verbose security checkers</notes>
13
+ <authors><author><name>Tarwin Stroh-Spijer</name><user>fanplayr</user><email>tarwin@fanplayr.com</email></author></authors>
14
+ <date>2016-09-01</date>
15
+ <time>22:41:32</time>
16
+ <contents><target name="mageskin"><dir name="frontend"><dir name="socialcoupons"><file name="fanplayr_join.html" hash="72f2ba80caf3b3f790a3eed928c79626"/><file name="fanplayr_socialcoupons.css" hash="35999bbf31ea537f170da6324dd64450"/><file name="fanplayr_socialcoupons.js" hash="ee3946e645278c5a0f59a0e70ca55271"/><file name="fanplayr_socialcoupons.min.css" hash="c6d326ff4161a090b77a0b00e2f7d81d"/><dir><dir name="images"><file name="accept.png" hash="8bfed48756f192ed7afe6eaa4799aae4"/><file name="activity.gif" hash="fc4ac1c258ac6d13be5afe5ecc5f10e6"/><file name="disable.png" hash="bb2fc85482c3e9c9a9ab4bc3e8e4ebe6"/><file name="fanplayr_logo.png" hash="3d8827fedc2ff79d3041a64265a2f7e0"/><file name="genius_16.png" hash="895bf92ff7689c8116bf1a6f7583c3ab"/><file name="pencil.png" hash="a34e71ab08a6d1162b948d26321dea50"/><file name="progress-loader.gif" hash="5243dea18965998ada5477a2117e2ead"/><file name="sales_16.png" hash="e7b77f97a81b4339c9c6b94e1077a675"/><file name="star_gold.png" hash="73541d75f70cbda977a8b04bf87ddc39"/><file name="warning.png" hash="c847e1076da70df83ef5284622b82a74"/><file name=".picasa.ini" hash="98908647c7af9a7c540c9d711b911d0c"/></dir></dir><file name="jquery-1.7.2.min.js" hash="8d1a6f9c08b59506c56b18e2b2695fc8"/></dir></dir></target><target name="magecommunity"><dir name="Fanplayr"><dir><dir name="Socialcoupons"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Form"><dir name="Field"><file name="Installhelper.php" hash="be8593b281752a5d5d830af6f6eadf07"/></dir></dir></dir></dir></dir></dir><dir name="Model"><file name="CartObserver.php" hash="2806ffebb289748fdbf7938180fd79ee"/><file name="EmbedObserver.php" hash="a3c28cace62775f6495038f6223c2f68"/><file name="OrderObserver.php" hash="4404ffe5fbaea4f9308a7164be073569"/></dir><dir name="controllers"><file name="AjaxController.php" hash="268fdad89fe546c27164ea15bc8d4bd2"/><file name="CompyController.php" hash="5c8aac0a977892f58cd28659488f9e1c"/><file name="CouponController.php" hash="63e9e74e25f929207bb57a2c05058df3"/><file name="IndexController.php" hash="8b18f83d9592433bfd4f196cf574fec3"/></dir><dir name="etc"><file name="config.xml" hash="df1c1ebc423b6e0dc0c71b6ba87e80b4"/><file name="system.xml" hash="a32e53b5dd521ca60be8b61bc49c886b"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Fanplayr_Socialcoupons.xml" hash="261b0da092907aeb8504994f685adc9d"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="fanplayr"><file name="embed.phtml" hash="ea84d10dcf6e173bf05d9cd989d787f3"/><file name="success.phtml" hash="1f7f7fadf2d2c051adc60bee21027d9a"/><file name="embed_ajax.phtml" hash="1248d9f1e3b294d4e43faf85b896a9ad"/></dir></dir></dir></dir><dir name="default"><dir name="default"><dir name="template"><dir name="fanplayr"><file name="embed.phtml" hash="ea84d10dcf6e173bf05d9cd989d787f3"/><file name="success.phtml" hash="1f7f7fadf2d2c051adc60bee21027d9a"/><file name="embed_ajax.phtml" hash="1248d9f1e3b294d4e43faf85b896a9ad"/></dir></dir></dir></dir></dir></target></contents>
17
  <compatible/>
18
+ <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
19
  </package>