Version Notes
- Product page now tracks price, sku, image and URL
Download this release
Release Info
Developer | Magento Core Team |
Extension | Fanplayr |
Version | 1.0.61 |
Comparing to | |
See all releases |
Code changes from version 1.0.60 to 1.0.61
- app/code/community/Fanplayr/Socialcoupons/Model/EmbedObserver.php +28 -5
- app/code/community/Fanplayr/Socialcoupons/controllers/AjaxController.php +6 -1
- app/design/frontend/base/default/template/fanplayr/embed.phtml +6 -0
- app/design/frontend/base/default/template/fanplayr/embed_ajax.phtml +13 -1
- app/design/frontend/default/default/template/fanplayr/embed.phtml +6 -0
- app/design/frontend/default/default/template/fanplayr/embed_ajax.phtml +13 -1
- app/etc/modules/Fanplayr_Socialcoupons.xml +1 -1
- package.xml +5 -6
app/code/community/Fanplayr/Socialcoupons/Model/EmbedObserver.php
CHANGED
@@ -84,6 +84,10 @@
|
|
84 |
$pageType = '';
|
85 |
$currentProduct = '';
|
86 |
$currentProductName = '';
|
|
|
|
|
|
|
|
|
87 |
$currentCategory = '';
|
88 |
$currentCategoryName = '';
|
89 |
|
@@ -95,6 +99,10 @@
|
|
95 |
if ($cP){
|
96 |
$currentProduct = $cP->getId();
|
97 |
$currentProductName = $cP->getName();
|
|
|
|
|
|
|
|
|
98 |
|
99 |
$categories = $cP->getCategoryIds();
|
100 |
foreach($categories as $k => $_category_id){
|
@@ -129,11 +137,17 @@
|
|
129 |
|
130 |
if (!$directEmbed){
|
131 |
$block->assign('tt', $pageType);
|
132 |
-
$block->assign('tp', $currentProduct);
|
133 |
$block->assign('tc', $currentCategory);
|
|
|
134 |
|
|
|
135 |
$block->assign('tpn', $currentProductName);
|
136 |
-
|
|
|
|
|
|
|
|
|
|
|
137 |
}else {
|
138 |
// direct embed so we need to set some other things we'd normally set in AjaxController
|
139 |
// store session data in case the cookie is lost somehow
|
@@ -161,7 +175,11 @@
|
|
161 |
$currentProduct,
|
162 |
$currentCategory,
|
163 |
$currentProductName,
|
164 |
-
$currentCategoryName
|
|
|
|
|
|
|
|
|
165 |
);
|
166 |
|
167 |
$block->assign('data', $data);
|
@@ -181,7 +199,7 @@
|
|
181 |
}
|
182 |
}
|
183 |
|
184 |
-
public static function getData($atCart = null, $pageType = null, $currentProduct = null, $currentCategory = null, $currentProductName = null, $currentCategoryName = null)
|
185 |
{
|
186 |
$itemCount = 0;
|
187 |
$itemQty = 0;
|
@@ -319,7 +337,12 @@
|
|
319 |
'shopType' => 'magento',
|
320 |
'products' => $productString,
|
321 |
'storeCode' => $storeCode,
|
322 |
-
'gtmContainerId' => $gtmContainerId
|
|
|
|
|
|
|
|
|
|
|
323 |
);
|
324 |
|
325 |
return $data;
|
84 |
$pageType = '';
|
85 |
$currentProduct = '';
|
86 |
$currentProductName = '';
|
87 |
+
$currentProductPrice = '';
|
88 |
+
$currentProductSku = '';
|
89 |
+
$currentProductImage = '';
|
90 |
+
$currentProductUrl = '';
|
91 |
$currentCategory = '';
|
92 |
$currentCategoryName = '';
|
93 |
|
99 |
if ($cP){
|
100 |
$currentProduct = $cP->getId();
|
101 |
$currentProductName = $cP->getName();
|
102 |
+
$currentProductPrice = $cP->getPrice();
|
103 |
+
$currentProductSku = $cP->getSku();
|
104 |
+
$currentProductImage = Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA) . 'catalog/product' . $cP->getImage();
|
105 |
+
$currentProductUrl = $cP->getUrlPath();
|
106 |
|
107 |
$categories = $cP->getCategoryIds();
|
108 |
foreach($categories as $k => $_category_id){
|
137 |
|
138 |
if (!$directEmbed){
|
139 |
$block->assign('tt', $pageType);
|
|
|
140 |
$block->assign('tc', $currentCategory);
|
141 |
+
$block->assign('tcn', $currentCategoryName);
|
142 |
|
143 |
+
$block->assign('tp', $currentProduct);
|
144 |
$block->assign('tpn', $currentProductName);
|
145 |
+
|
146 |
+
$block->assign('tpp', $currentProductPrice);
|
147 |
+
$block->assign('tps', $currentProductSku);
|
148 |
+
$block->assign('tpi', $currentProductImage);
|
149 |
+
$block->assign('tpu', $currentProductUrl);
|
150 |
+
|
151 |
}else {
|
152 |
// direct embed so we need to set some other things we'd normally set in AjaxController
|
153 |
// store session data in case the cookie is lost somehow
|
175 |
$currentProduct,
|
176 |
$currentCategory,
|
177 |
$currentProductName,
|
178 |
+
$currentCategoryName,
|
179 |
+
$currentCategoryPrice,
|
180 |
+
$currentCategorySku,
|
181 |
+
$currentCategoryImage,
|
182 |
+
$currentCategoryUrl
|
183 |
);
|
184 |
|
185 |
$block->assign('data', $data);
|
199 |
}
|
200 |
}
|
201 |
|
202 |
+
public static function getData($atCart = null, $pageType = null, $currentProduct = null, $currentCategory = null, $currentProductName = null, $currentCategoryName = null, $currentProductPrice = null, $currentProductSku = null, $currentProductImage = null, $currentProductUrl = null)
|
203 |
{
|
204 |
$itemCount = 0;
|
205 |
$itemQty = 0;
|
337 |
'shopType' => 'magento',
|
338 |
'products' => $productString,
|
339 |
'storeCode' => $storeCode,
|
340 |
+
'gtmContainerId' => $gtmContainerId,
|
341 |
+
|
342 |
+
'productPrice' => $currentProductPrice,
|
343 |
+
'productSku' => $currentProductSku,
|
344 |
+
'productImage' => $currentProductImage,
|
345 |
+
'productUrl' => $currentProductUrl
|
346 |
);
|
347 |
|
348 |
return $data;
|
app/code/community/Fanplayr/Socialcoupons/controllers/AjaxController.php
CHANGED
@@ -52,7 +52,12 @@
|
|
52 |
array_key_exists('tp', $p) ? $p['tp'] : '',
|
53 |
array_key_exists('tc', $p) ? $p['tc'] : '',
|
54 |
array_key_exists('tpn', $p) ? $p['tpn'] : '',
|
55 |
-
array_key_exists('tcn', $p) ? $p['tcn'] : ''
|
|
|
|
|
|
|
|
|
|
|
56 |
);
|
57 |
|
58 |
$block->assign('data', $data);
|
52 |
array_key_exists('tp', $p) ? $p['tp'] : '',
|
53 |
array_key_exists('tc', $p) ? $p['tc'] : '',
|
54 |
array_key_exists('tpn', $p) ? $p['tpn'] : '',
|
55 |
+
array_key_exists('tcn', $p) ? $p['tcn'] : '',
|
56 |
+
|
57 |
+
array_key_exists('tpp', $p) ? $p['tpp'] : '',
|
58 |
+
array_key_exists('tps', $p) ? $p['tps'] : '',
|
59 |
+
array_key_exists('tpi', $p) ? $p['tpi'] : '',
|
60 |
+
array_key_exists('tpu', $p) ? $shopUrl . '/' . $p['tpu'] : ''
|
61 |
);
|
62 |
|
63 |
$block->assign('data', $data);
|
app/design/frontend/base/default/template/fanplayr/embed.phtml
CHANGED
@@ -65,6 +65,12 @@
|
|
65 |
categoryName: encodeURIComponent('<?php echo fanplayr_qr($data['categoryName']); ?>'),
|
66 |
productId: '<?php echo fanplayr_qr($data['productId']); ?>',
|
67 |
productName: encodeURIComponent('<?php echo fanplayr_qr($data['productName']); ?>'),
|
|
|
|
|
|
|
|
|
|
|
|
|
68 |
currency: '<?php echo $data['currency']; ?>',
|
69 |
customerEmail: '<?php echo fanplayr_qr($data['customerEmail']); ?>',
|
70 |
customerId: '<?php echo fanplayr_qr($data['customerId']); ?>',
|
65 |
categoryName: encodeURIComponent('<?php echo fanplayr_qr($data['categoryName']); ?>'),
|
66 |
productId: '<?php echo fanplayr_qr($data['productId']); ?>',
|
67 |
productName: encodeURIComponent('<?php echo fanplayr_qr($data['productName']); ?>'),
|
68 |
+
|
69 |
+
productPrice: encodeURIComponent('<?php echo fanplayr_qr($data['productPrice']) ?>'),
|
70 |
+
productSku: encodeURIComponent('<?php echo fanplayr_qr($data['productSku']) ?>'),
|
71 |
+
productImage: encodeURIComponent('<?php echo fanplayr_qr($data['productImage']) ?>'),
|
72 |
+
productUrl: encodeURIComponent('<?php echo fanplayr_qr($data['productUrl']) ?>'),
|
73 |
+
|
74 |
currency: '<?php echo $data['currency']; ?>',
|
75 |
customerEmail: '<?php echo fanplayr_qr($data['customerEmail']); ?>',
|
76 |
customerId: '<?php echo fanplayr_qr($data['customerId']); ?>',
|
app/design/frontend/base/default/template/fanplayr/embed_ajax.phtml
CHANGED
@@ -20,10 +20,17 @@
|
|
20 |
url = url.replace('%tc', '<?php echo urlencode($tc); ?>');
|
21 |
url = url.replace('%tpn', '<?php echo urlencode($tpn); ?>');
|
22 |
url = url.replace('%tcn', '<?php echo urlencode($tcn); ?>');
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
url = url.replace('%rnd', (new Date().getTime()));
|
24 |
js.src = url;
|
25 |
<?php }else{ ?>
|
26 |
-
js.src = (_.embedUrl || '<?php echo $shopUrl; ?>') + 'fanplayr/ajax/getEmbedJs/?tt=<?php echo urlencode($tt); ?>&tp=<?php echo urlencode($tp); ?>&tc=<?php echo urlencode($tc); ?>&tpn=<?php echo urlencode($tpn); ?>&tcn=<?php echo urlencode($tcn); ?>&' + (new Date().getTime());
|
|
|
27 |
<?php } ?>
|
28 |
fjs.parentNode.insertBefore(js, fjs);
|
29 |
};
|
@@ -41,5 +48,10 @@
|
|
41 |
window.fanplayrTms.categoryId = '<?php echo urlencode($tc); ?>';
|
42 |
window.fanplayrTms.productName = '<?php echo urlencode($tpn)?>';
|
43 |
window.fanplayrTms.categoryName = '<?php echo urlencode($tcn)?>';
|
|
|
|
|
|
|
|
|
|
|
44 |
<?php } ?>
|
45 |
</script>
|
20 |
url = url.replace('%tc', '<?php echo urlencode($tc); ?>');
|
21 |
url = url.replace('%tpn', '<?php echo urlencode($tpn); ?>');
|
22 |
url = url.replace('%tcn', '<?php echo urlencode($tcn); ?>');
|
23 |
+
|
24 |
+
url = url.replace('%tpp', '<?php echo urlencode($tpp); ?>');
|
25 |
+
url = url.replace('%tps', '<?php echo urlencode($tps); ?>');
|
26 |
+
url = url.replace('%tpi', '<?php echo urlencode($tpi); ?>');
|
27 |
+
url = url.replace('%tpu', '<?php echo urlencode($tpu); ?>');
|
28 |
+
|
29 |
url = url.replace('%rnd', (new Date().getTime()));
|
30 |
js.src = url;
|
31 |
<?php }else{ ?>
|
32 |
+
js.src = (_.embedUrl || '<?php echo $shopUrl; ?>') + 'fanplayr/ajax/getEmbedJs/?tt=<?php echo urlencode($tt); ?>&tp=<?php echo urlencode($tp); ?>&tc=<?php echo urlencode($tc); ?>&tpn=<?php echo urlencode($tpn); ?>&tcn=<?php echo urlencode($tcn); ?>&tpp=<?php echo urlencode($tpp); ?>&tps=<?php echo urlencode($tps); ?>&tpi=<?php echo urlencode($tpi); ?>&tpu=<?php echo urlencode($tpu); ?>&' + (new Date().getTime());
|
33 |
+
|
34 |
<?php } ?>
|
35 |
fjs.parentNode.insertBefore(js, fjs);
|
36 |
};
|
48 |
window.fanplayrTms.categoryId = '<?php echo urlencode($tc); ?>';
|
49 |
window.fanplayrTms.productName = '<?php echo urlencode($tpn)?>';
|
50 |
window.fanplayrTms.categoryName = '<?php echo urlencode($tcn)?>';
|
51 |
+
|
52 |
+
window.fanplayrTms.productPrice = '<?php echo urlencode($tpp)?>';
|
53 |
+
window.fanplayrTms.productSku = '<?php echo urlencode($tps)?>';
|
54 |
+
window.fanplayrTms.productImage = '<?php echo urlencode($tpi)?>';
|
55 |
+
window.fanplayrTms.productUrl = '<?php echo urlencode($tpu)?>';
|
56 |
<?php } ?>
|
57 |
</script>
|
app/design/frontend/default/default/template/fanplayr/embed.phtml
CHANGED
@@ -65,6 +65,12 @@
|
|
65 |
categoryName: encodeURIComponent('<?php echo fanplayr_qr($data['categoryName']); ?>'),
|
66 |
productId: '<?php echo fanplayr_qr($data['productId']); ?>',
|
67 |
productName: encodeURIComponent('<?php echo fanplayr_qr($data['productName']); ?>'),
|
|
|
|
|
|
|
|
|
|
|
|
|
68 |
currency: '<?php echo $data['currency']; ?>',
|
69 |
customerEmail: '<?php echo fanplayr_qr($data['customerEmail']); ?>',
|
70 |
customerId: '<?php echo fanplayr_qr($data['customerId']); ?>',
|
65 |
categoryName: encodeURIComponent('<?php echo fanplayr_qr($data['categoryName']); ?>'),
|
66 |
productId: '<?php echo fanplayr_qr($data['productId']); ?>',
|
67 |
productName: encodeURIComponent('<?php echo fanplayr_qr($data['productName']); ?>'),
|
68 |
+
|
69 |
+
productPrice: encodeURIComponent('<?php echo fanplayr_qr($data['productPrice']) ?>'),
|
70 |
+
productSku: encodeURIComponent('<?php echo fanplayr_qr($data['productSku']) ?>'),
|
71 |
+
productImage: encodeURIComponent('<?php echo fanplayr_qr($data['productImage']) ?>'),
|
72 |
+
productUrl: encodeURIComponent('<?php echo fanplayr_qr($data['productUrl']) ?>'),
|
73 |
+
|
74 |
currency: '<?php echo $data['currency']; ?>',
|
75 |
customerEmail: '<?php echo fanplayr_qr($data['customerEmail']); ?>',
|
76 |
customerId: '<?php echo fanplayr_qr($data['customerId']); ?>',
|
app/design/frontend/default/default/template/fanplayr/embed_ajax.phtml
CHANGED
@@ -20,10 +20,17 @@
|
|
20 |
url = url.replace('%tc', '<?php echo urlencode($tc); ?>');
|
21 |
url = url.replace('%tpn', '<?php echo urlencode($tpn); ?>');
|
22 |
url = url.replace('%tcn', '<?php echo urlencode($tcn); ?>');
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
url = url.replace('%rnd', (new Date().getTime()));
|
24 |
js.src = url;
|
25 |
<?php }else{ ?>
|
26 |
-
js.src = (_.embedUrl || '<?php echo $shopUrl; ?>') + 'fanplayr/ajax/getEmbedJs/?tt=<?php echo urlencode($tt); ?>&tp=<?php echo urlencode($tp); ?>&tc=<?php echo urlencode($tc); ?>&tpn=<?php echo urlencode($tpn); ?>&tcn=<?php echo urlencode($tcn); ?>&' + (new Date().getTime());
|
|
|
27 |
<?php } ?>
|
28 |
fjs.parentNode.insertBefore(js, fjs);
|
29 |
};
|
@@ -41,5 +48,10 @@
|
|
41 |
window.fanplayrTms.categoryId = '<?php echo urlencode($tc); ?>';
|
42 |
window.fanplayrTms.productName = '<?php echo urlencode($tpn)?>';
|
43 |
window.fanplayrTms.categoryName = '<?php echo urlencode($tcn)?>';
|
|
|
|
|
|
|
|
|
|
|
44 |
<?php } ?>
|
45 |
</script>
|
20 |
url = url.replace('%tc', '<?php echo urlencode($tc); ?>');
|
21 |
url = url.replace('%tpn', '<?php echo urlencode($tpn); ?>');
|
22 |
url = url.replace('%tcn', '<?php echo urlencode($tcn); ?>');
|
23 |
+
|
24 |
+
url = url.replace('%tpp', '<?php echo urlencode($tpp); ?>');
|
25 |
+
url = url.replace('%tps', '<?php echo urlencode($tps); ?>');
|
26 |
+
url = url.replace('%tpi', '<?php echo urlencode($tpi); ?>');
|
27 |
+
url = url.replace('%tpu', '<?php echo urlencode($tpu); ?>');
|
28 |
+
|
29 |
url = url.replace('%rnd', (new Date().getTime()));
|
30 |
js.src = url;
|
31 |
<?php }else{ ?>
|
32 |
+
js.src = (_.embedUrl || '<?php echo $shopUrl; ?>') + 'fanplayr/ajax/getEmbedJs/?tt=<?php echo urlencode($tt); ?>&tp=<?php echo urlencode($tp); ?>&tc=<?php echo urlencode($tc); ?>&tpn=<?php echo urlencode($tpn); ?>&tcn=<?php echo urlencode($tcn); ?>&tpp=<?php echo urlencode($tpp); ?>&tps=<?php echo urlencode($tps); ?>&tpi=<?php echo urlencode($tpi); ?>&tpu=<?php echo urlencode($tpu); ?>&' + (new Date().getTime());
|
33 |
+
|
34 |
<?php } ?>
|
35 |
fjs.parentNode.insertBefore(js, fjs);
|
36 |
};
|
48 |
window.fanplayrTms.categoryId = '<?php echo urlencode($tc); ?>';
|
49 |
window.fanplayrTms.productName = '<?php echo urlencode($tpn)?>';
|
50 |
window.fanplayrTms.categoryName = '<?php echo urlencode($tcn)?>';
|
51 |
+
|
52 |
+
window.fanplayrTms.productPrice = '<?php echo urlencode($tpp)?>';
|
53 |
+
window.fanplayrTms.productSku = '<?php echo urlencode($tps)?>';
|
54 |
+
window.fanplayrTms.productImage = '<?php echo urlencode($tpi)?>';
|
55 |
+
window.fanplayrTms.productUrl = '<?php echo urlencode($tpu)?>';
|
56 |
<?php } ?>
|
57 |
</script>
|
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.
|
8 |
</Fanplayr_Socialcoupons>
|
9 |
</modules>
|
10 |
</config>
|
4 |
<Fanplayr_Socialcoupons>
|
5 |
<active>true</active>
|
6 |
<codePool>community</codePool>
|
7 |
+
<version>1.0.61</version>
|
8 |
</Fanplayr_Socialcoupons>
|
9 |
</modules>
|
10 |
</config>
|
package.xml
CHANGED
@@ -1,19 +1,18 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Fanplayr</name>
|
4 |
-
<version>1.0.
|
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>-
|
12 |
-
- Simpler Fanplayr Console access</notes>
|
13 |
<authors><author><name>Tarwin Stroh-Spijer</name><user>auto-converted</user><email>tarwin@fanplayr.com</email></author></authors>
|
14 |
-
<date>2015-
|
15 |
-
<time>
|
16 |
-
<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="ef40e0653303cbe861ac2141fce32222"/><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="48b824adc5d637c3647c6ef59949f53b"/></dir></dir></dir></dir></dir></dir><dir name="Model"><file name="CartObserver.php" hash="baca491c222a4dd401e779a7c60d98bc"/><file name="EmbedObserver.php" hash="
|
17 |
<compatible/>
|
18 |
<dependencies/>
|
19 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Fanplayr</name>
|
4 |
+
<version>1.0.61</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>- Product page now tracks price, sku, image and URL</notes>
|
|
|
12 |
<authors><author><name>Tarwin Stroh-Spijer</name><user>auto-converted</user><email>tarwin@fanplayr.com</email></author></authors>
|
13 |
+
<date>2015-04-24</date>
|
14 |
+
<time>01:39:41</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="ef40e0653303cbe861ac2141fce32222"/><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="48b824adc5d637c3647c6ef59949f53b"/></dir></dir></dir></dir></dir></dir><dir name="Model"><file name="CartObserver.php" hash="baca491c222a4dd401e779a7c60d98bc"/><file name="EmbedObserver.php" hash="47cddc2a423f9d8d84df270280b7b494"/><file name="OrderObserver.php" hash="23dab32d08ff5f8d5b07280d2ba53cc7"/></dir><dir name="controllers"><file name="AjaxController.php" hash="4952297c3110702e708234f5f6855475"/><file name="CompyController.php" hash="f45b1bd7ef87cbcdf17e894e6637adcb"/><file name="CouponController.php" hash="85bf29a6eaeb3bfe355486844db7b988"/><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="b1e21d7e31d0d2530e2873f23027da8c"/></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="ead3443638aaa75871830aaaed45ac90"/><file name="success.phtml" hash="244d6a0380af72e13ec1fc3ce0596b90"/><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="ead3443638aaa75871830aaaed45ac90"/><file name="success.phtml" hash="244d6a0380af72e13ec1fc3ce0596b90"/><file name="embed_ajax.phtml" hash="1248d9f1e3b294d4e43faf85b896a9ad"/></dir></dir></dir></dir></dir></target></contents>
|
16 |
<compatible/>
|
17 |
<dependencies/>
|
18 |
</package>
|