Version Notes
- More robust order tracking
Download this release
Release Info
Developer | Magento Core Team |
Extension | Fanplayr |
Version | 1.0.62 |
Comparing to | |
See all releases |
Code changes from version 1.0.61 to 1.0.62
- app/code/community/Fanplayr/Socialcoupons/Model/EmbedObserver.php +6 -1
- app/code/community/Fanplayr/Socialcoupons/Model/OrderObserver.php +5 -1
- app/code/community/Fanplayr/Socialcoupons/controllers/CompyController.php +63 -12
- app/design/frontend/base/default/template/fanplayr/embed.phtml +3 -1
- app/design/frontend/base/default/template/fanplayr/success.phtml +1 -0
- app/design/frontend/default/default/template/fanplayr/embed.phtml +3 -1
- app/design/frontend/default/default/template/fanplayr/success.phtml +1 -0
- app/etc/modules/Fanplayr_Socialcoupons.xml +1 -1
- package.xml +5 -5
app/code/community/Fanplayr/Socialcoupons/Model/EmbedObserver.php
CHANGED
@@ -214,6 +214,7 @@
|
|
214 |
|
215 |
$products = array();
|
216 |
$productString = '';
|
|
|
217 |
|
218 |
// get the current customer
|
219 |
$customer = Mage::getSingleton('customer/session');
|
@@ -239,6 +240,8 @@
|
|
239 |
|
240 |
$session = Mage::getSingleton("core/session");
|
241 |
|
|
|
|
|
242 |
$updateProductDetails = $session->getData("fanplayr_update_product_details");
|
243 |
if ($updateProductDetails === true || $updateProductDetails === null) {
|
244 |
|
@@ -342,7 +345,9 @@
|
|
342 |
'productPrice' => $currentProductPrice,
|
343 |
'productSku' => $currentProductSku,
|
344 |
'productImage' => $currentProductImage,
|
345 |
-
'productUrl' => $currentProductUrl
|
|
|
|
|
346 |
);
|
347 |
|
348 |
return $data;
|
214 |
|
215 |
$products = array();
|
216 |
$productString = '';
|
217 |
+
$quoteId = '';
|
218 |
|
219 |
// get the current customer
|
220 |
$customer = Mage::getSingleton('customer/session');
|
240 |
|
241 |
$session = Mage::getSingleton("core/session");
|
242 |
|
243 |
+
$quoteId = $cartMod->getQuoteId();
|
244 |
+
|
245 |
$updateProductDetails = $session->getData("fanplayr_update_product_details");
|
246 |
if ($updateProductDetails === true || $updateProductDetails === null) {
|
247 |
|
345 |
'productPrice' => $currentProductPrice,
|
346 |
'productSku' => $currentProductSku,
|
347 |
'productImage' => $currentProductImage,
|
348 |
+
'productUrl' => $currentProductUrl,
|
349 |
+
|
350 |
+
'quoteId' => $quoteId
|
351 |
);
|
352 |
|
353 |
return $data;
|
app/code/community/Fanplayr/Socialcoupons/Model/OrderObserver.php
CHANGED
@@ -232,6 +232,8 @@
|
|
232 |
$orderId = $order->getId();
|
233 |
$orderNumber = $order->getRealOrderId();
|
234 |
|
|
|
|
|
235 |
$data = $order->getData();
|
236 |
|
237 |
// have to be careful here because some versions miss some variables ...
|
@@ -259,6 +261,7 @@
|
|
259 |
|
260 |
$orderId = $order->getId();
|
261 |
$orderNumber = $order->getRealOrderId();
|
|
|
262 |
$orderEmail = $order->getCustomerEmail();
|
263 |
$orderDate = $order->getCreatedAt();
|
264 |
$currency = $order->getOrderCurrencyCode();
|
@@ -333,7 +336,8 @@
|
|
333 |
'tax' => (float)$tax,
|
334 |
'products' => $products,
|
335 |
'storeCode' => $storeCode,
|
336 |
-
'gtmContainerId' => $gtmContainerId
|
|
|
337 |
);
|
338 |
|
339 |
}
|
232 |
$orderId = $order->getId();
|
233 |
$orderNumber = $order->getRealOrderId();
|
234 |
|
235 |
+
$quoteId = $order->getQuoteId();
|
236 |
+
|
237 |
$data = $order->getData();
|
238 |
|
239 |
// have to be careful here because some versions miss some variables ...
|
261 |
|
262 |
$orderId = $order->getId();
|
263 |
$orderNumber = $order->getRealOrderId();
|
264 |
+
$quoteId = $order->getQuoteId();
|
265 |
$orderEmail = $order->getCustomerEmail();
|
266 |
$orderDate = $order->getCreatedAt();
|
267 |
$currency = $order->getOrderCurrencyCode();
|
336 |
'tax' => (float)$tax,
|
337 |
'products' => $products,
|
338 |
'storeCode' => $storeCode,
|
339 |
+
'gtmContainerId' => $gtmContainerId,
|
340 |
+
'quoteId' => $quoteId
|
341 |
);
|
342 |
|
343 |
}
|
app/code/community/Fanplayr/Socialcoupons/controllers/CompyController.php
CHANGED
@@ -428,14 +428,46 @@ EOT;
|
|
428 |
// added in v1.0.18
|
429 |
public function getOrdersAction()
|
430 |
{
|
431 |
-
if (!$this->isPerm()) return;
|
432 |
-
|
433 |
$p = $this->getRequest()->getParams();
|
434 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
435 |
$orderId = array_key_exists('id', $p) ? $p['id'] : null;
|
436 |
$orderNumber = array_key_exists('num', $p) ? @$p['num'] : null;
|
437 |
|
438 |
-
// id, num,
|
439 |
$filter = array_key_exists('filter', $p) ? $p['filter'] : null;
|
440 |
|
441 |
$to = array_key_exists('to', $p) ? $p['to'] : null;
|
@@ -448,6 +480,14 @@ EOT;
|
|
448 |
if ($limit == null) $limit = 10;
|
449 |
$limit = (int)$limit;
|
450 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
451 |
// single
|
452 |
if (!empty($orderId) || !empty($orderNumber)) {
|
453 |
if ($orderId){
|
@@ -465,25 +505,31 @@ EOT;
|
|
465 |
|
466 |
if ($filter == 'id') $filterBy = 'entity_id';
|
467 |
if ($filter == 'num') $filterBy = 'increment_id';
|
468 |
-
if ($filter == '
|
469 |
if ($filter == 'updated') $filterBy = 'updated_at';
|
470 |
|
471 |
$orders = Mage::getModel('sales/order')->getCollection();
|
472 |
|
473 |
if ($filter) {
|
474 |
-
if ($from
|
475 |
$orders = $orders->addAttributeToFilter($filterBy, array('from' => $from, 'to' => $to));
|
476 |
} else {
|
477 |
-
echo $this->jsonMessage(
|
478 |
return;
|
479 |
}
|
480 |
}
|
|
|
|
|
|
|
|
|
481 |
|
482 |
-
|
|
|
|
|
|
|
483 |
}
|
484 |
|
485 |
-
$
|
486 |
-
$count = $orders->count();
|
487 |
|
488 |
// will fill this ..
|
489 |
$orderReturn = array();
|
@@ -507,6 +553,7 @@ EOT;
|
|
507 |
foreach($orders as $order) {
|
508 |
|
509 |
$data = $order->getData();
|
|
|
510 |
|
511 |
$orderReturn[] = array(
|
512 |
'orderId' => array_key_exists('id', $data) ? $data['id'] : '',
|
@@ -523,7 +570,8 @@ EOT;
|
|
523 |
'discountCode' => array_key_exists('coupon_code', $data) ? $data['coupon_code'] : '',
|
524 |
'discountAmount' => array_key_exists('discount_amount', $data) ? round($data['discount_amount'], 2) : 0,
|
525 |
'state' => array_key_exists('state', $data) ? $data['state'] : '',
|
526 |
-
'status' => array_key_exists('status', $data) ? $data['status'] : ''
|
|
|
527 |
);
|
528 |
}
|
529 |
|
@@ -532,6 +580,7 @@ EOT;
|
|
532 |
foreach($orders as $order) {
|
533 |
|
534 |
$data = $order->getData();
|
|
|
535 |
|
536 |
$orderReturn[] = array(
|
537 |
'orderId' => $order->getId(),
|
@@ -548,14 +597,16 @@ EOT;
|
|
548 |
'discountCode' => $order->getCouponCode(),
|
549 |
'discountAmount' => array_key_exists('base_discount_amount', $data) ? round($data['base_discount_amount'], 2) : 0,
|
550 |
'state' => $order->getState(),
|
551 |
-
'status' => $order->getStatus()
|
|
|
552 |
);
|
553 |
}
|
554 |
|
555 |
}
|
556 |
// ---------------------------------------------------
|
557 |
|
558 |
-
|
|
|
559 |
}
|
560 |
|
561 |
// ------------------------------------------------------------------
|
428 |
// added in v1.0.18
|
429 |
public function getOrdersAction()
|
430 |
{
|
431 |
+
// if (!$this->isPerm()) return;
|
|
|
432 |
$p = $this->getRequest()->getParams();
|
433 |
|
434 |
+
$hash = array_key_exists('hash', $p) ? $p['hash'] : null;
|
435 |
+
|
436 |
+
if (!$hash){
|
437 |
+
echo $this->jsonMessage(true, 'No hash supplied.', array('orders' => null, 'count' => 0));
|
438 |
+
return;
|
439 |
+
}
|
440 |
+
|
441 |
+
// remove it
|
442 |
+
unset($p['hash']);
|
443 |
+
|
444 |
+
// create hash from vars
|
445 |
+
ksort($p);
|
446 |
+
|
447 |
+
// make a string
|
448 |
+
$params = '';
|
449 |
+
foreach($p as $k => $v) {
|
450 |
+
$params .= $k . '=' . $v;
|
451 |
+
}
|
452 |
+
|
453 |
+
$secret = Mage::getStoreConfig('fanplayrsocialcoupons/config/secret');
|
454 |
+
$accKey = Mage::getStoreConfig('fanplayrsocialcoupons/config/acc_key');
|
455 |
+
|
456 |
+
// add the account keya and secret to the start
|
457 |
+
$params = $accKey . $secret . $params;
|
458 |
+
|
459 |
+
$actualHash = md5($params);
|
460 |
+
|
461 |
+
if ($actualHash != $hash){
|
462 |
+
//echo $this->jsonMessage(true, 'Not authorized. Hash incorrect.' . $actualHash, array('orders' => null, 'count' => 0));
|
463 |
+
echo $this->jsonMessage(true, 'Not authorized. Hash incorrect.', array('orders' => null, 'count' => 0));
|
464 |
+
return;
|
465 |
+
}
|
466 |
+
|
467 |
$orderId = array_key_exists('id', $p) ? $p['id'] : null;
|
468 |
$orderNumber = array_key_exists('num', $p) ? @$p['num'] : null;
|
469 |
|
470 |
+
// id, num, created, updated
|
471 |
$filter = array_key_exists('filter', $p) ? $p['filter'] : null;
|
472 |
|
473 |
$to = array_key_exists('to', $p) ? $p['to'] : null;
|
480 |
if ($limit == null) $limit = 10;
|
481 |
$limit = (int)$limit;
|
482 |
|
483 |
+
$status = array_key_exists('status', $p) ? $p['status'] : null;
|
484 |
+
|
485 |
+
$type = array_key_exists('type', $p) ? $p['type'] : 'count';
|
486 |
+
if ($type != 'full' && $type != 'count') {
|
487 |
+
echo $this->jsonMessage(true, '"type" must be "full" or "count".', array('orders' => null, 'count' => 0));
|
488 |
+
return;
|
489 |
+
}
|
490 |
+
|
491 |
// single
|
492 |
if (!empty($orderId) || !empty($orderNumber)) {
|
493 |
if ($orderId){
|
505 |
|
506 |
if ($filter == 'id') $filterBy = 'entity_id';
|
507 |
if ($filter == 'num') $filterBy = 'increment_id';
|
508 |
+
if ($filter == 'created') $filterBy = 'created_at';
|
509 |
if ($filter == 'updated') $filterBy = 'updated_at';
|
510 |
|
511 |
$orders = Mage::getModel('sales/order')->getCollection();
|
512 |
|
513 |
if ($filter) {
|
514 |
+
if ($from || $to) {
|
515 |
$orders = $orders->addAttributeToFilter($filterBy, array('from' => $from, 'to' => $to));
|
516 |
} else {
|
517 |
+
echo $this->jsonMessage(true, 'Need from and/or to for filtering.', array('orders' => array(), 'count' => 0));
|
518 |
return;
|
519 |
}
|
520 |
}
|
521 |
+
if ($status) {
|
522 |
+
$orders = $orders->addAttributeToFilter('status', array('eq' => $status));
|
523 |
+
}
|
524 |
+
}
|
525 |
|
526 |
+
if ($type == 'count') {
|
527 |
+
$count = $orders->count();
|
528 |
+
echo $this->jsonMessage(false, 'Orders count.', array('count' => $count));
|
529 |
+
return;
|
530 |
}
|
531 |
|
532 |
+
$orders->getSelect()->limit($limit, $offset);
|
|
|
533 |
|
534 |
// will fill this ..
|
535 |
$orderReturn = array();
|
553 |
foreach($orders as $order) {
|
554 |
|
555 |
$data = $order->getData();
|
556 |
+
$quoteId = $order->getQuoteId();
|
557 |
|
558 |
$orderReturn[] = array(
|
559 |
'orderId' => array_key_exists('id', $data) ? $data['id'] : '',
|
570 |
'discountCode' => array_key_exists('coupon_code', $data) ? $data['coupon_code'] : '',
|
571 |
'discountAmount' => array_key_exists('discount_amount', $data) ? round($data['discount_amount'], 2) : 0,
|
572 |
'state' => array_key_exists('state', $data) ? $data['state'] : '',
|
573 |
+
'status' => array_key_exists('status', $data) ? $data['status'] : '',
|
574 |
+
'quoteId' => $quoteId
|
575 |
);
|
576 |
}
|
577 |
|
580 |
foreach($orders as $order) {
|
581 |
|
582 |
$data = $order->getData();
|
583 |
+
$quoteId = $order->getQuoteId();
|
584 |
|
585 |
$orderReturn[] = array(
|
586 |
'orderId' => $order->getId(),
|
597 |
'discountCode' => $order->getCouponCode(),
|
598 |
'discountAmount' => array_key_exists('base_discount_amount', $data) ? round($data['base_discount_amount'], 2) : 0,
|
599 |
'state' => $order->getState(),
|
600 |
+
'status' => $order->getStatus(),
|
601 |
+
'quoteId' => $quoteId
|
602 |
);
|
603 |
}
|
604 |
|
605 |
}
|
606 |
// ---------------------------------------------------
|
607 |
|
608 |
+
$count = $orders->count();
|
609 |
+
echo $this->jsonMessage(false, 'Orders returned.', array('count' => $count, 'orders' => $orderReturn));
|
610 |
}
|
611 |
|
612 |
// ------------------------------------------------------------------
|
app/design/frontend/base/default/template/fanplayr/embed.phtml
CHANGED
@@ -78,7 +78,9 @@
|
|
78 |
customerSegment: '<?php echo fanplayr_qr($data['customerSegment']); ?>',
|
79 |
shopType: '<?php echo $data['shopType']; ?>',
|
80 |
version: <?php echo $data['version']; ?>,
|
81 |
-
products: '<?php echo $data['products']; ?>'
|
|
|
|
|
82 |
},
|
83 |
custom_data: w.fanplayrCustomData || {}
|
84 |
});
|
78 |
customerSegment: '<?php echo fanplayr_qr($data['customerSegment']); ?>',
|
79 |
shopType: '<?php echo $data['shopType']; ?>',
|
80 |
version: <?php echo $data['version']; ?>,
|
81 |
+
products: '<?php echo $data['products']; ?>',
|
82 |
+
|
83 |
+
quoteId: '<?php echo $data['quoteId']; ?>'
|
84 |
},
|
85 |
custom_data: w.fanplayrCustomData || {}
|
86 |
});
|
app/design/frontend/base/default/template/fanplayr/success.phtml
CHANGED
@@ -35,6 +35,7 @@
|
|
35 |
shopType: '<?php echo $data['shopType']; ?>',
|
36 |
version: '<?php echo $data['version']; ?>',
|
37 |
products: '<?php echo addslashes(json_encode($data['products'])); ?>',
|
|
|
38 |
storeDomain: _.storeDomain || ''
|
39 |
},
|
40 |
errors: '<?php echo addslashes($data['errors']); ?>'
|
35 |
shopType: '<?php echo $data['shopType']; ?>',
|
36 |
version: '<?php echo $data['version']; ?>',
|
37 |
products: '<?php echo addslashes(json_encode($data['products'])); ?>',
|
38 |
+
quoteId: '<?php echo $data['quoteId']; ?>',
|
39 |
storeDomain: _.storeDomain || ''
|
40 |
},
|
41 |
errors: '<?php echo addslashes($data['errors']); ?>'
|
app/design/frontend/default/default/template/fanplayr/embed.phtml
CHANGED
@@ -78,7 +78,9 @@
|
|
78 |
customerSegment: '<?php echo fanplayr_qr($data['customerSegment']); ?>',
|
79 |
shopType: '<?php echo $data['shopType']; ?>',
|
80 |
version: <?php echo $data['version']; ?>,
|
81 |
-
products: '<?php echo $data['products']; ?>'
|
|
|
|
|
82 |
},
|
83 |
custom_data: w.fanplayrCustomData || {}
|
84 |
});
|
78 |
customerSegment: '<?php echo fanplayr_qr($data['customerSegment']); ?>',
|
79 |
shopType: '<?php echo $data['shopType']; ?>',
|
80 |
version: <?php echo $data['version']; ?>,
|
81 |
+
products: '<?php echo $data['products']; ?>',
|
82 |
+
|
83 |
+
quoteId: '<?php echo $data['quoteId']; ?>'
|
84 |
},
|
85 |
custom_data: w.fanplayrCustomData || {}
|
86 |
});
|
app/design/frontend/default/default/template/fanplayr/success.phtml
CHANGED
@@ -35,6 +35,7 @@
|
|
35 |
shopType: '<?php echo $data['shopType']; ?>',
|
36 |
version: '<?php echo $data['version']; ?>',
|
37 |
products: '<?php echo addslashes(json_encode($data['products'])); ?>',
|
|
|
38 |
storeDomain: _.storeDomain || ''
|
39 |
},
|
40 |
errors: '<?php echo addslashes($data['errors']); ?>'
|
35 |
shopType: '<?php echo $data['shopType']; ?>',
|
36 |
version: '<?php echo $data['version']; ?>',
|
37 |
products: '<?php echo addslashes(json_encode($data['products'])); ?>',
|
38 |
+
quoteId: '<?php echo $data['quoteId']; ?>',
|
39 |
storeDomain: _.storeDomain || ''
|
40 |
},
|
41 |
errors: '<?php echo addslashes($data['errors']); ?>'
|
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.62</version>
|
8 |
</Fanplayr_Socialcoupons>
|
9 |
</modules>
|
10 |
</config>
|
package.xml
CHANGED
@@ -1,18 +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 |
<authors><author><name>Tarwin Stroh-Spijer</name><user>auto-converted</user><email>tarwin@fanplayr.com</email></author></authors>
|
13 |
-
<date>2015-04-
|
14 |
-
<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="
|
16 |
<compatible/>
|
17 |
<dependencies/>
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Fanplayr</name>
|
4 |
+
<version>1.0.62</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>- More robust order tracking</notes>
|
12 |
<authors><author><name>Tarwin Stroh-Spijer</name><user>auto-converted</user><email>tarwin@fanplayr.com</email></author></authors>
|
13 |
+
<date>2015-04-28</date>
|
14 |
+
<time>03:28:00</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="fdec05265dcbd58961c096a771d3afba"/><file name="OrderObserver.php" hash="e3558a5e1f62c58cf3a250451f2a90e2"/></dir><dir name="controllers"><file name="AjaxController.php" hash="4952297c3110702e708234f5f6855475"/><file name="CompyController.php" hash="5c8aac0a977892f58cd28659488f9e1c"/><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="fbacae0b26d370a94c0b6c8a60ea69c3"/></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="635a718778311c314351b14613a5a288"/><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="635a718778311c314351b14613a5a288"/><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>
|