Ebizmarts_MageMonkey - Version 1.2.0

Version Notes

1.2.0
--------
Fixed multiple subscription confirmation message.
Fixed problem with bulk sync export.
Fixed issue when subscribing with Magento's email confirmation in stead of MailChimp's.
Added compatibility with old One Step Checkout versions.
Product description can now be put in html.
Changed review Autoresponder to get the order with the created_at date instead of the updated_at.
Changed popup coupon email name to be displayed on Emails Sent view.
Fixed problem when subscribe on checkout disabled but MageMonkey subscribed anyways.
Added store code to be sent to MailChimp by default
Added confirmation email when subscription forced.
Fixed problem on visited product table with new popup.
Fixed problem when subscribing on checkout.
Fixed finished status for export process.
Added campaign title on Customer Information (Back end) tab MailChimp List Member Activity
Added upgrade to allow custom blocks after new Magento patch.
Changed the modules to be loaded after Magento's core.
Popup is now responsive.
Popup works depending on the store view.
Fix for store id on popup table to send coupon for each store.

Download this release

Release Info

Developer Magento Core Team
Extension Ebizmarts_MageMonkey
Version 1.2.0
Comparing to
See all releases


Code changes from version 1.1.35 to 1.2.0

Files changed (27) hide show
  1. app/code/community/Ebizmarts/AbandonedCart/Block/Popup/Emailcatcher.php +3 -1
  2. app/code/community/Ebizmarts/AbandonedCart/Model/Cron.php +3 -2
  3. app/code/community/Ebizmarts/AbandonedCart/etc/config.xml +4 -4
  4. app/code/community/Ebizmarts/AbandonedCart/etc/system.xml +2 -2
  5. app/code/community/Ebizmarts/AbandonedCart/sql/ebizmarts_abandonedcart_setup/mysql4-upgrade-1.1.35-1.2.0.php +27 -0
  6. app/code/community/Ebizmarts/Autoresponder/Model/Cron.php +1 -2
  7. app/code/community/Ebizmarts/Autoresponder/controllers/AutoresponderController.php +4 -1
  8. app/code/community/Ebizmarts/Autoresponder/etc/config.xml +1 -1
  9. app/code/community/Ebizmarts/Autoresponder/sql/ebizmarts_autoresponder_setup/mysql4-upgrade-1.1.14-1.2.0.php +25 -0
  10. app/code/community/Ebizmarts/MageMonkey/Block/Adminhtml/Memberactivity/Grid.php +6 -1
  11. app/code/community/Ebizmarts/MageMonkey/Helper/Data.php +28 -20
  12. app/code/community/Ebizmarts/MageMonkey/Model/Cron.php +32 -26
  13. app/code/community/Ebizmarts/MageMonkey/Model/Monkey.php +11 -0
  14. app/code/community/Ebizmarts/MageMonkey/Model/Observer.php +5 -12
  15. app/code/community/Ebizmarts/MageMonkey/Model/Subscriber.php +17 -0
  16. app/code/community/Ebizmarts/MageMonkey/etc/config.xml +3 -3
  17. app/code/community/Ebizmarts/Mandrill/etc/config.xml +1 -1
  18. app/code/community/Ebizmarts/SweetMonkey/Model/Cron.php +0 -36
  19. app/code/community/Ebizmarts/SweetMonkey/Model/Observer.php +0 -13
  20. app/code/community/Ebizmarts/SweetMonkey/etc/config.xml +3 -40
  21. app/design/frontend/base/default/template/ebizmarts/autoresponder/backtostock/item.phtml +1 -1
  22. app/design/frontend/base/default/template/ebizmarts/autoresponder/related/items.phtml +1 -1
  23. app/design/frontend/base/default/template/ebizmarts/autoresponder/review/items.phtml +1 -1
  24. app/design/frontend/base/default/template/ebizmarts/autoresponder/wishlist/items.phtml +1 -1
  25. app/design/frontend/base/default/template/ebizmarts_abandonedcart/popup/emailcatcher.phtml +5 -3
  26. js/ebizmarts/abandonedcart/popup.css +73 -25
  27. package.xml +24 -19
app/code/community/Ebizmarts/AbandonedCart/Block/Popup/Emailcatcher.php CHANGED
@@ -45,7 +45,9 @@ class Ebizmarts_AbandonedCart_Block_Popup_Emailcatcher extends Mage_Core_Block_T
45
  ->addFieldToFilter('email', array('eq' => $email));
46
  if (!count($collection)) {
47
  $addEmail = Mage::getModel('ebizmarts_abandonedcart/popup');
48
- $addEmail->setEmail($email)->save();
 
 
49
  }
50
  }
51
  }
45
  ->addFieldToFilter('email', array('eq' => $email));
46
  if (!count($collection)) {
47
  $addEmail = Mage::getModel('ebizmarts_abandonedcart/popup');
48
+ $addEmail->setEmail($email)
49
+ ->setStoreId(Mage::app()->getStore()->getId())
50
+ ->save();
51
  }
52
  }
53
  }
app/code/community/Ebizmarts/AbandonedCart/Model/Cron.php CHANGED
@@ -341,7 +341,8 @@ class Ebizmarts_AbandonedCart_Model_Cron
341
 
342
  $collection = Mage::getModel('ebizmarts_abandonedcart/popup')->getCollection()
343
  ->addFieldToFilter('email', array('neq' => ''))
344
- ->addFieldToFilter('processed', array('eq' => 0));
 
345
 
346
  foreach ($collection as $item) {
347
  $email = $item->getEmail();
@@ -358,7 +359,7 @@ class Ebizmarts_AbandonedCart_Model_Cron
358
  $mail = Mage::getModel('core/email_template')->setTemplateSubject($mailSubject)->sendTransactional($templateId, $sender, $email, $pseudoName, $vars, $storeId);
359
  $item->setProcessed(1)->save();
360
  $translate->setTranslateInLine(true);
361
- Mage::helper('ebizmarts_abandonedcart')->saveMail('review coupon', $email, $pseudoName, $couponcode, $storeId);
362
  }
363
  }
364
 
341
 
342
  $collection = Mage::getModel('ebizmarts_abandonedcart/popup')->getCollection()
343
  ->addFieldToFilter('email', array('neq' => ''))
344
+ ->addFieldToFilter('processed', array('eq' => 0))
345
+ ->addFieldToFilter('store_id', array('eq' => $storeId));
346
 
347
  foreach ($collection as $item) {
348
  $email = $item->getEmail();
359
  $mail = Mage::getModel('core/email_template')->setTemplateSubject($mailSubject)->sendTransactional($templateId, $sender, $email, $pseudoName, $vars, $storeId);
360
  $item->setProcessed(1)->save();
361
  $translate->setTranslateInLine(true);
362
+ Mage::helper('ebizmarts_abandonedcart')->saveMail('popup coupon', $email, $pseudoName, $couponcode, $storeId);
363
  }
364
  }
365
 
app/code/community/Ebizmarts/AbandonedCart/etc/config.xml CHANGED
@@ -10,7 +10,7 @@
10
  <config>
11
  <modules>
12
  <Ebizmarts_AbandonedCart>
13
- <version>1.1.35</version>
14
  </Ebizmarts_AbandonedCart>
15
  </modules>
16
  <global>
@@ -141,7 +141,7 @@
141
  <adminhtml>
142
  <args>
143
  <modules>
144
- <Ebizmarts_Abandonedcart before="Mage_Adminhtml">Ebizmarts_AbandonedCart_Adminhtml</Ebizmarts_Abandonedcart>
145
  </modules>
146
  </args>
147
  </adminhtml>
@@ -244,8 +244,8 @@
244
  <popup_subscription>1</popup_subscription>
245
  <popup_heading>Welcome to our store!</popup_heading>
246
  <popup_text>Please enter your email address to get the most out of our store and improve your shopping experience.</popup_text>
247
- <popup_width>700</popup_width>
248
- <popup_height>245</popup_height>
249
  <popup_cookie_time>1</popup_cookie_time>
250
  <popup_insist>1</popup_insist>
251
  <popup_coupon_mandrill_tag>popup_coupon</popup_coupon_mandrill_tag>
10
  <config>
11
  <modules>
12
  <Ebizmarts_AbandonedCart>
13
+ <version>1.2.0</version>
14
  </Ebizmarts_AbandonedCart>
15
  </modules>
16
  <global>
141
  <adminhtml>
142
  <args>
143
  <modules>
144
+ <Ebizmarts_Abandonedcart after="Mage_Adminhtml">Ebizmarts_AbandonedCart_Adminhtml</Ebizmarts_Abandonedcart>
145
  </modules>
146
  </args>
147
  </adminhtml>
244
  <popup_subscription>1</popup_subscription>
245
  <popup_heading>Welcome to our store!</popup_heading>
246
  <popup_text>Please enter your email address to get the most out of our store and improve your shopping experience.</popup_text>
247
+ <popup_width>50</popup_width>
248
+ <popup_height>20</popup_height>
249
  <popup_cookie_time>1</popup_cookie_time>
250
  <popup_insist>1</popup_insist>
251
  <popup_coupon_mandrill_tag>popup_coupon</popup_coupon_mandrill_tag>
app/code/community/Ebizmarts/AbandonedCart/etc/system.xml CHANGED
@@ -752,7 +752,7 @@
752
  <show_in_website>1</show_in_website>
753
  <show_in_store>1</show_in_store>
754
  <can_be_empty>1</can_be_empty>
755
- <comment><![CDATA[The width is in pixels.]]></comment>
756
  <depends>
757
  <popup_general>1</popup_general>
758
  </depends>
@@ -765,7 +765,7 @@
765
  <show_in_website>1</show_in_website>
766
  <show_in_store>1</show_in_store>
767
  <can_be_empty>1</can_be_empty>
768
- <comment><![CDATA[The height is in pixels.]]></comment>
769
  <depends>
770
  <popup_general>1</popup_general>
771
  </depends>
752
  <show_in_website>1</show_in_website>
753
  <show_in_store>1</show_in_store>
754
  <can_be_empty>1</can_be_empty>
755
+ <comment><![CDATA[This is a percentage of the window width.]]></comment>
756
  <depends>
757
  <popup_general>1</popup_general>
758
  </depends>
765
  <show_in_website>1</show_in_website>
766
  <show_in_store>1</show_in_store>
767
  <can_be_empty>1</can_be_empty>
768
+ <comment><![CDATA[This is a percentage of the window height.]]></comment>
769
  <depends>
770
  <popup_general>1</popup_general>
771
  </depends>
app/code/community/Ebizmarts/AbandonedCart/sql/ebizmarts_abandonedcart_setup/mysql4-upgrade-1.1.35-1.2.0.php ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ *
5
+ * @category Ebizmarts
6
+ * @package Ebizmarts_Autoresponder
7
+ * @author Ebizmarts Team <info@ebizmarts.com>
8
+ * @license http://opensource.org/licenses/osl-3.0.php
9
+ */
10
+
11
+ $installer = $this;
12
+
13
+ $installer->startSetup();
14
+
15
+ $installer->getConnection()->insertMultiple(
16
+ $installer->getTable('admin/permission_block'),
17
+ array(
18
+ array('block_name' => 'ebizmarts_abandonedcart/email_order_items', 'is_allowed' => 1)
19
+ )
20
+ );
21
+
22
+ $installer->getConnection()
23
+ ->addColumn($installer->getTable('ebizmarts_abandonedcart/popup'),'store_id', Varien_Db_Ddl_Table::TYPE_SMALLINT, null, array(
24
+ 'nullable' => false,
25
+ ), 'Store Id');
26
+
27
+ $installer->endSetup();
app/code/community/Ebizmarts/Autoresponder/Model/Cron.php CHANGED
@@ -355,8 +355,7 @@ class Ebizmarts_Autoresponder_Model_Cron
355
 
356
  $collection = Mage::getResourceModel('sales/order_collection');
357
  $collection->addFieldToFilter('main_table.store_id', array('eq' => $storeId))
358
- // ->addFieldToFilter('main_table.created_at',array('from'=>$from,'to'=>$to))
359
- ->addFieldToFilter('main_table.updated_at', array('from' => $from, 'to' => $to))
360
  ->addFieldToFilter('main_table.status', array('eq' => $status));
361
  // Mage::log((string)$collection->getSelect());
362
  if (count($customerGroups)) {
355
 
356
  $collection = Mage::getResourceModel('sales/order_collection');
357
  $collection->addFieldToFilter('main_table.store_id', array('eq' => $storeId))
358
+ ->addFieldToFilter('main_table.created_at',array('from'=>$from,'to'=>$to))
 
359
  ->addFieldToFilter('main_table.status', array('eq' => $status));
360
  // Mage::log((string)$collection->getSelect());
361
  if (count($customerGroups)) {
app/code/community/Ebizmarts/Autoresponder/controllers/AutoresponderController.php CHANGED
@@ -113,7 +113,10 @@ class Ebizmarts_Autoresponder_AutoresponderController extends Mage_Core_Controll
113
  if (!Mage::getSingleton('customer/session')->isLoggedIn()) {
114
  if(Mage::getModel('core/cookie')->get('email')&&Mage::getModel('core/cookie')->get('email')!='none') {
115
  // if (isset($_COOKIE['email']) && $_COOKIE['email'] != 'none') {
116
- $email = str_replace(' ', '+', Mage::getModel('core/cookie')->get('email'));
 
 
 
117
  } else {
118
  return;
119
  }
113
  if (!Mage::getSingleton('customer/session')->isLoggedIn()) {
114
  if(Mage::getModel('core/cookie')->get('email')&&Mage::getModel('core/cookie')->get('email')!='none') {
115
  // if (isset($_COOKIE['email']) && $_COOKIE['email'] != 'none') {
116
+ $cookie = Mage::getModel('core/cookie')->get('email');
117
+ $cookieValues = explode('/', $cookie);
118
+ $email = $cookieValues[0];
119
+ $email = str_replace(' ', '+', $email);
120
  } else {
121
  return;
122
  }
app/code/community/Ebizmarts/Autoresponder/etc/config.xml CHANGED
@@ -10,7 +10,7 @@
10
  <config>
11
  <modules>
12
  <Ebizmarts_Autoresponder>
13
- <version>1.1.14</version>
14
  </Ebizmarts_Autoresponder>
15
  </modules>
16
  <global>
10
  <config>
11
  <modules>
12
  <Ebizmarts_Autoresponder>
13
+ <version>1.2.0</version>
14
  </Ebizmarts_Autoresponder>
15
  </modules>
16
  <global>
app/code/community/Ebizmarts/Autoresponder/sql/ebizmarts_autoresponder_setup/mysql4-upgrade-1.1.14-1.2.0.php ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ *
5
+ * @category Ebizmarts
6
+ * @package Ebizmarts_Autoresponder
7
+ * @author Ebizmarts Team <info@ebizmarts.com>
8
+ * @license http://opensource.org/licenses/osl-3.0.php
9
+ */
10
+
11
+ $installer = $this;
12
+
13
+ $installer->startSetup();
14
+
15
+ $installer->getConnection()->insertMultiple(
16
+ $installer->getTable('admin/permission_block'),
17
+ array(
18
+ array('block_name' => 'ebizmarts_autoresponder/email_backtostock_item', 'is_allowed' => 1),
19
+ array('block_name' => 'ebizmarts_autoresponder/email_related_items', 'is_allowed' => 1),
20
+ array('block_name' => 'ebizmarts_autoresponder/email_review_items', 'is_allowed' => 1),
21
+ array('block_name' => 'ebizmarts_autoresponder/email_wishlist_items', 'is_allowed' => 1),
22
+ )
23
+ );
24
+
25
+ $installer->endSetup();
app/code/community/Ebizmarts/MageMonkey/Block/Adminhtml/Memberactivity/Grid.php CHANGED
@@ -44,7 +44,7 @@ class Ebizmarts_MageMonkey_Block_Adminhtml_Memberactivity_Grid extends Mage_Admi
44
  }
45
  }
46
  if (empty($activityData)) {
47
- $activityData[] = array('action' => '', 'timestamp' => '', 'url' => '', 'bounce_type' => '', 'campaign_id' => '');
48
  }
49
  if (!is_array(current($activityData))) {
50
  $activityData = array();
@@ -80,6 +80,11 @@ class Ebizmarts_MageMonkey_Block_Adminhtml_Memberactivity_Grid extends Mage_Admi
80
  'index' => 'campaign_id',
81
  'sortable' => false
82
  ));
 
 
 
 
 
83
  $this->addColumn('timestamp', array(
84
  'header' => Mage::helper('monkey')->__('Timestamp'),
85
  'index' => 'timestamp',
44
  }
45
  }
46
  if (empty($activityData)) {
47
+ $activityData[] = array('action' => '', 'timestamp' => '', 'url' => '', 'bounce_type' => '', 'campaign_id' => '', 'title' => '');
48
  }
49
  if (!is_array(current($activityData))) {
50
  $activityData = array();
80
  'index' => 'campaign_id',
81
  'sortable' => false
82
  ));
83
+ $this->addColumn('title', array(
84
+ 'header' => Mage::helper('monkey')->__('Campaign Title'),
85
+ 'index' => 'title',
86
+ 'sortable' => false
87
+ ));
88
  $this->addColumn('timestamp', array(
89
  'header' => Mage::helper('monkey')->__('Timestamp'),
90
  'index' => 'timestamp',
app/code/community/Ebizmarts/MageMonkey/Helper/Data.php CHANGED
@@ -232,7 +232,7 @@ class Ebizmarts_MageMonkey_Helper_Data extends Mage_Core_Helper_Abstract
232
  $member = Mage::getSingleton('monkey/api')
233
  ->listMemberInfo($listId, $email);
234
 
235
- if (!is_string($member) && $member['success'] && ($member['data'][0]['status'] == 'subscribed' )) {
236
  $on = TRUE;
237
  }
238
  }
@@ -395,7 +395,7 @@ class Ebizmarts_MageMonkey_Helper_Data extends Mage_Core_Helper_Abstract
395
  $merge_vars = array();
396
  $maps = $this->getMergeMaps($customer->getStoreId());
397
 
398
- if (!$maps) {
399
  return;
400
  }
401
 
@@ -555,6 +555,13 @@ class Ebizmarts_MageMonkey_Helper_Data extends Mage_Core_Helper_Abstract
555
  $merge_vars[$key] = $customerGroup[$group_id];
556
  }
557
  break;
 
 
 
 
 
 
 
558
  default:
559
  if (($value = (string)$customer->getData(strtolower($customAtt)))
560
  OR ($value = (string)$request->getPost(strtolower($customAtt)))
@@ -651,12 +658,13 @@ class Ebizmarts_MageMonkey_Helper_Data extends Mage_Core_Helper_Abstract
651
  $post = unserialize($monkeyPost);
652
  }
653
  //if post exists && is not admin backend subscription && not footer subscription
654
- $this->_checkGrouping($mergeVars,$post,$currentList, $object);
655
 
656
  return $mergeVars;
657
  }
658
- private function _checkGrouping($merge_vars,$post,$currentList, $object)
659
  {
 
660
  $request = Mage::app()->getRequest();
661
  $adminSubscription = $request->getActionName() == 'save' && $request->getControllerName() == 'customer' && $request->getModuleName() == (string)Mage::getConfig()->getNode('admin/routers/adminhtml/args/frontName');
662
  $footerSubscription = $request->getActionName() == 'new' && $request->getControllerName() == 'subscriber' && $request->getModuleName() == 'newsletter';
@@ -702,9 +710,6 @@ class Ebizmarts_MageMonkey_Helper_Data extends Mage_Core_Helper_Abstract
702
  }
703
 
704
  }
705
- if (isset($subscribeGroups[0]['id']) && $subscribeGroups[0]['id'] != -1) {
706
- $mergeVars["GROUPINGS"] = $subscribeGroups;
707
- }
708
 
709
  $force = Mage::getStoreConfig('monkey/general/checkout_subscribe', $object->getStoreId());
710
  $map = Mage::getStoreConfig('monkey/general/markfield', $object->getStoreId());
@@ -730,7 +735,11 @@ class Ebizmarts_MageMonkey_Helper_Data extends Mage_Core_Helper_Abstract
730
  $map = Mage::getStoreConfig('monkey/general/markfield', $object->getStoreId());
731
  $mergeVars[$map] = "Yes";
732
  }
 
 
 
733
  }
 
734
  }
735
  /**
736
  * Register on Magento's registry GUEST customer data for MergeVars for on checkout subscribe
@@ -898,9 +907,8 @@ class Ebizmarts_MageMonkey_Helper_Data extends Mage_Core_Helper_Abstract
898
  //Subscription for One Step Checkout with force subscription
899
  } elseif (Mage::getSingleton('core/session')->getIsOneStepCheckout() && Mage::helper('monkey')->config('checkout_subscribe') > 2 && !Mage::getSingleton('core/session')->getIsUpdateCustomer()) {
900
  $this->subscribeToList($object, $db);
901
- } elseif(!$post){
902
- //subscribe customer from admin
903
- $this->subscribeToList($object, $db, TRUE);
904
  }
905
 
906
  }
@@ -920,10 +928,6 @@ class Ebizmarts_MageMonkey_Helper_Data extends Mage_Core_Helper_Abstract
920
  $subscriber = Mage::getModel('newsletter/subscriber')
921
  ->setSubscriberEmail($email);
922
  } else {
923
- // $customer = Mage::getSingleton('customer/customer')->load($email);
924
- // if($customer->getId()){
925
- // $object = $customer;
926
- // }
927
  $subscriber = $object;
928
  }
929
 
@@ -931,10 +935,10 @@ class Ebizmarts_MageMonkey_Helper_Data extends Mage_Core_Helper_Abstract
931
  if(!$listId){
932
  $listId = $defaultList;
933
  }
934
- if ($listId == $defaultList && !Mage::getSingleton('core/session')->getIsHandleSubscriber() && !$forceSubscribe/*from admin*/) {
 
935
  $subscriber->subscribe($email);
936
  } else {
937
-
938
  $alreadyOnList = Mage::getSingleton('monkey/asyncsubscribers')->getCollection()
939
  ->addFieldToFilter('lists', $listId)
940
  ->addFieldToFilter('email', $email)
@@ -943,7 +947,7 @@ class Ebizmarts_MageMonkey_Helper_Data extends Mage_Core_Helper_Abstract
943
  if (count($alreadyOnList) == 0) {
944
  $isConfirmNeed = FALSE;
945
  if (!Mage::helper('monkey')->isAdmin() &&
946
- (Mage::getStoreConfig(Mage_Newsletter_Model_Subscriber::XML_PATH_CONFIRMATION_FLAG, $object->getStoreId()) == 1 && !$forceSubscribe && !Mage::getStoreConfig(Ebizmarts_MageMonkey_Model_Config::GENERAL_CONFIRMATION_EMAIL, $object->getStoreId()))
947
  ) {
948
  $isConfirmNeed = TRUE;
949
  }
@@ -951,7 +955,11 @@ class Ebizmarts_MageMonkey_Helper_Data extends Mage_Core_Helper_Abstract
951
  $isOnMailChimp = Mage::helper('monkey')->subscribedToList($email, $listId);
952
  //if( TRUE === $subscriber->getIsStatusChanged() ){
953
  if ($isOnMailChimp == 1) {
954
- return false;
 
 
 
 
955
  }
956
 
957
  if ($isConfirmNeed) {
@@ -1029,9 +1037,10 @@ class Ebizmarts_MageMonkey_Helper_Data extends Mage_Core_Helper_Abstract
1029
  $odata[$g[0]] = $g[1];
1030
  }
1031
  }
1032
- $curlists = (TRUE === array_key_exists('list', $odata)) ? $odata['list'] : array();
1033
  $lists = $request->getPost('list', array());
1034
 
 
 
1035
  $defaultList = $this->getDefaultList(Mage::app()->getStore());
1036
 
1037
  $api = Mage::getSingleton('monkey/api');
@@ -1047,7 +1056,6 @@ class Ebizmarts_MageMonkey_Helper_Data extends Mage_Core_Helper_Abstract
1047
  foreach ($curlists as $listId => $list) {
1048
 
1049
  if (FALSE === array_key_exists($listId, $lists)) {
1050
-
1051
  //Unsubscribe Email
1052
 
1053
  $item = Mage::getModel('monkey/monkey')->loadByEmail($email);
232
  $member = Mage::getSingleton('monkey/api')
233
  ->listMemberInfo($listId, $email);
234
 
235
+ if (!is_string($member) && $member['success'] && ($member['data'][0]['status'] == 'subscribed' || $member['data'][0]['status'] == 'pending')) {
236
  $on = TRUE;
237
  }
238
  }
395
  $merge_vars = array();
396
  $maps = $this->getMergeMaps($customer->getStoreId());
397
 
398
+ if (!$maps && !$customer->getListGroups()) {
399
  return;
400
  }
401
 
555
  $merge_vars[$key] = $customerGroup[$group_id];
556
  }
557
  break;
558
+ case 'store_code':
559
+ $storeId = (string)$customer->getData('store_id');
560
+ $storeCode = Mage::getModel('core/store')->load($storeId)->getCode();
561
+ if ($storeCode) {
562
+ $merge_vars[$key] = $storeCode;
563
+ }
564
+ break;
565
  default:
566
  if (($value = (string)$customer->getData(strtolower($customAtt)))
567
  OR ($value = (string)$request->getPost(strtolower($customAtt)))
658
  $post = unserialize($monkeyPost);
659
  }
660
  //if post exists && is not admin backend subscription && not footer subscription
661
+ $mergeVars = array_merge($this->_checkGrouping($post,$currentList, $object), $mergeVars);
662
 
663
  return $mergeVars;
664
  }
665
+ private function _checkGrouping($post,$currentList, $object)
666
  {
667
+ $mergeVars = array();
668
  $request = Mage::app()->getRequest();
669
  $adminSubscription = $request->getActionName() == 'save' && $request->getControllerName() == 'customer' && $request->getModuleName() == (string)Mage::getConfig()->getNode('admin/routers/adminhtml/args/frontName');
670
  $footerSubscription = $request->getActionName() == 'new' && $request->getControllerName() == 'subscriber' && $request->getModuleName() == 'newsletter';
710
  }
711
 
712
  }
 
 
 
713
 
714
  $force = Mage::getStoreConfig('monkey/general/checkout_subscribe', $object->getStoreId());
715
  $map = Mage::getStoreConfig('monkey/general/markfield', $object->getStoreId());
735
  $map = Mage::getStoreConfig('monkey/general/markfield', $object->getStoreId());
736
  $mergeVars[$map] = "Yes";
737
  }
738
+ if (isset($subscribeGroups[0]['id']) && $subscribeGroups[0]['id'] != -1) {
739
+ $mergeVars["GROUPINGS"] = $subscribeGroups;
740
+ }
741
  }
742
+ return $mergeVars;
743
  }
744
  /**
745
  * Register on Magento's registry GUEST customer data for MergeVars for on checkout subscribe
907
  //Subscription for One Step Checkout with force subscription
908
  } elseif (Mage::getSingleton('core/session')->getIsOneStepCheckout() && Mage::helper('monkey')->config('checkout_subscribe') > 2 && !Mage::getSingleton('core/session')->getIsUpdateCustomer()) {
909
  $this->subscribeToList($object, $db);
910
+ } elseif(!Mage::getSingleton('core/session')->getMonkeyCheckout()){
911
+ $this->subscribeToList($object, $db, NULL, TRUE);
 
912
  }
913
 
914
  }
928
  $subscriber = Mage::getModel('newsletter/subscriber')
929
  ->setSubscriberEmail($email);
930
  } else {
 
 
 
 
931
  $subscriber = $object;
932
  }
933
 
935
  if(!$listId){
936
  $listId = $defaultList;
937
  }
938
+ $alreadySubscribed = Mage::getSingleton('newsletter/subscriber')->loadByEmail($email);
939
+ if ($listId == $defaultList && !Mage::getSingleton('core/session')->getIsHandleSubscriber() && !$forceSubscribe && !$alreadySubscribed) {
940
  $subscriber->subscribe($email);
941
  } else {
 
942
  $alreadyOnList = Mage::getSingleton('monkey/asyncsubscribers')->getCollection()
943
  ->addFieldToFilter('lists', $listId)
944
  ->addFieldToFilter('email', $email)
947
  if (count($alreadyOnList) == 0) {
948
  $isConfirmNeed = FALSE;
949
  if (!Mage::helper('monkey')->isAdmin() &&
950
+ (Mage::getStoreConfig(Mage_Newsletter_Model_Subscriber::XML_PATH_CONFIRMATION_FLAG, $object->getStoreId()) == 1 && !Mage::getStoreConfig(Ebizmarts_MageMonkey_Model_Config::GENERAL_CONFIRMATION_EMAIL, $object->getStoreId()) || $forceSubscribe && Mage::getSingleton('core/session')->getMonkeyCheckout())
951
  ) {
952
  $isConfirmNeed = TRUE;
953
  }
955
  $isOnMailChimp = Mage::helper('monkey')->subscribedToList($email, $listId);
956
  //if( TRUE === $subscriber->getIsStatusChanged() ){
957
  if ($isOnMailChimp == 1) {
958
+ if(Mage::getSingleton('core/session')->getIsOneStepCheckout() || Mage::getSingleton('core/session')->getMonkeyCheckout()) {
959
+ $mergeVars = Mage::helper('monkey')->mergeVars($object, FALSE, $listId);
960
+ $this->_subscribe($listId, $email, $mergeVars, 0, 1);
961
+ }
962
+ return;
963
  }
964
 
965
  if ($isConfirmNeed) {
1037
  $odata[$g[0]] = $g[1];
1038
  }
1039
  }
 
1040
  $lists = $request->getPost('list', array());
1041
 
1042
+
1043
+ $curlists = (TRUE === array_key_exists('list', $odata)) ? $odata['list'] : array();
1044
  $defaultList = $this->getDefaultList(Mage::app()->getStore());
1045
 
1046
  $api = Mage::getSingleton('monkey/api');
1056
  foreach ($curlists as $listId => $list) {
1057
 
1058
  if (FALSE === array_key_exists($listId, $lists)) {
 
1059
  //Unsubscribe Email
1060
 
1061
  $item = Mage::getModel('monkey/monkey')->loadByEmail($email);
app/code/community/Ebizmarts/MageMonkey/Model/Cron.php CHANGED
@@ -226,7 +226,6 @@ class Ebizmarts_MageMonkey_Model_Cron
226
  $job->setStartedAt(Mage::getModel('core/date')->gmtDate())->save();
227
  }
228
 
229
- $collection->setPageSize($this->_limit);
230
 
231
  //Condition for chunk batch
232
  if ($job->getLastProcessedId()) {
@@ -250,14 +249,16 @@ class Ebizmarts_MageMonkey_Model_Cron
250
  $collection->addOrder($orderBy, 'ASC');
251
  }
252
 
253
- $collection->load();
254
-
255
  //Update total count on first run
256
  if (!$job->getTotalCount()) {
257
  $allRows = $collection->getSize();
258
  $job->setTotalCount($allRows)->save();
259
  }
260
 
 
 
 
 
261
  $batch = array();
262
 
263
  foreach ($job->lists() as $listId) {
@@ -265,41 +266,42 @@ class Ebizmarts_MageMonkey_Model_Cron
265
  $api = Mage::getSingleton('monkey/api', array('store' => $store));
266
 
267
  $processedCount = 0;
 
268
  foreach ($collection as $item) {
269
- $processedCount++;
270
  $isOnMailChimp = Mage::helper('monkey')->subscribedToList($item->getEmail(), $listId);
271
  if ($isOnMailChimp) {
 
272
  $api->listUpdateMember($listId, $item->getEmail(), $this->_helper()->getMergeVars($item));
 
273
  } else {
274
  $batch [] = $this->_helper()->getMergeVars($item, TRUE);
275
  }
276
  }
277
- if (count($batch) > 0) {
278
 
279
- $job->setStatus('chunk_running')
280
- ->setUpdatedAt($this->_dbDate())
281
- ->save();
 
 
 
282
 
283
  $vals = $api->listBatchSubscribe($listId, $batch, FALSE, TRUE, FALSE);
284
 
285
  if (is_null($api->errorCode)) {
286
 
 
 
287
  $lastId = $collection->getLastItem()->getId();
288
  $job->setLastProcessedId($lastId);
289
- $job->setProcessedCount(($processedCount + $job->getProcessedCount()));
290
-
291
- $job
292
- ->setUpdatedAt($this->_dbDate())
293
- ->save();
294
 
295
  }
296
 
297
- } else {
298
- $job
299
- ->setStatus('finished')
300
- ->setUpdatedAt($this->_dbDate())
301
- ->save();
302
  }
 
 
 
 
303
 
304
  }
305
 
@@ -500,24 +502,28 @@ class Ebizmarts_MageMonkey_Model_Cron
500
  if ($oldList == '') {
501
  $oldList = $newList;
502
  }
 
503
  if ($newList != $oldList || $eachIsConfirmNeed != $isConfirmNeed) {
504
  if (count($batch) > 0) {
505
  Mage::getSingleton('monkey/api')->listBatchSubscribe($oldList, $batch, $isConfirmNeed, TRUE, FALSE);
506
  }
507
- $isConfirmNeed = $eachIsConfirmNeed;
508
  $oldList = $newList;
509
  $batch = array();
510
  }
511
 
512
- $mergeVars = unserialize($item->getMapfields());
513
  $mergeVars['EMAIL'] = $item->getEmail();
514
- $batch[] = $mergeVars;
515
- //$email = $item->getEmail();
516
- //Mage::getSingleton('monkey/api')->listSubscribe($listId, $email, $mergeVars, 'html', $isConfirmNeed);
517
- $item->setProcessed(1)->save();
518
- if ($item->getId() == $collection->getLastItem()->getId() && count($batch) > 0) {
519
- Mage::getSingleton('monkey/api')->listBatchSubscribe($oldList, $batch, $isConfirmNeed, TRUE, FALSE);
520
  }
 
 
 
 
 
 
521
  }
522
 
523
  }
226
  $job->setStartedAt(Mage::getModel('core/date')->gmtDate())->save();
227
  }
228
 
 
229
 
230
  //Condition for chunk batch
231
  if ($job->getLastProcessedId()) {
249
  $collection->addOrder($orderBy, 'ASC');
250
  }
251
 
 
 
252
  //Update total count on first run
253
  if (!$job->getTotalCount()) {
254
  $allRows = $collection->getSize();
255
  $job->setTotalCount($allRows)->save();
256
  }
257
 
258
+ $collection->setPageSize($this->_limit);
259
+ $collection->load();
260
+
261
+
262
  $batch = array();
263
 
264
  foreach ($job->lists() as $listId) {
266
  $api = Mage::getSingleton('monkey/api', array('store' => $store));
267
 
268
  $processedCount = 0;
269
+ $lastId = '';
270
  foreach ($collection as $item) {
 
271
  $isOnMailChimp = Mage::helper('monkey')->subscribedToList($item->getEmail(), $listId);
272
  if ($isOnMailChimp) {
273
+ $processedCount++;
274
  $api->listUpdateMember($listId, $item->getEmail(), $this->_helper()->getMergeVars($item));
275
+ $lastId = $item->getLastId();
276
  } else {
277
  $batch [] = $this->_helper()->getMergeVars($item, TRUE);
278
  }
279
  }
 
280
 
281
+ $job->setStatus('chunk_running')
282
+ ->setUpdatedAt($this->_dbDate());
283
+ $job->setLastProcessedId($lastId);
284
+ $job->setProcessedCount($processedCount + $job->getProcessedCount());
285
+
286
+ if (count($batch) > 0) {
287
 
288
  $vals = $api->listBatchSubscribe($listId, $batch, FALSE, TRUE, FALSE);
289
 
290
  if (is_null($api->errorCode)) {
291
 
292
+
293
+ $job->setProcessedCount((count($batch) + $job->getProcessedCount()));
294
  $lastId = $collection->getLastItem()->getId();
295
  $job->setLastProcessedId($lastId);
296
+ $job->setUpdatedAt($this->_dbDate());
 
 
 
 
297
 
298
  }
299
 
 
 
 
 
 
300
  }
301
+ if($job->getProcessedCount() == $job->getTotalCount()) {
302
+ $job->setStatus('finished');
303
+ }
304
+ $job->save();
305
 
306
  }
307
 
502
  if ($oldList == '') {
503
  $oldList = $newList;
504
  }
505
+ $mergeVars = unserialize($item->getMapfields());
506
  if ($newList != $oldList || $eachIsConfirmNeed != $isConfirmNeed) {
507
  if (count($batch) > 0) {
508
  Mage::getSingleton('monkey/api')->listBatchSubscribe($oldList, $batch, $isConfirmNeed, TRUE, FALSE);
509
  }
 
510
  $oldList = $newList;
511
  $batch = array();
512
  }
513
 
 
514
  $mergeVars['EMAIL'] = $item->getEmail();
515
+ $isOnMailChimp = Mage::helper('monkey')->subscribedToList($item->getEmail(), $oldList);
516
+ if($isOnMailChimp) {
517
+ Mage::getSingleton('monkey/api')->listUpdateMember($oldList, $item->getEmail(), $mergeVars);
518
+ }else {
519
+ $batch[] = $mergeVars;
 
520
  }
521
+ //$email = $item->getEmail();
522
+ //Mage::getSingleton('monkey/api')->listSubscribe($listId, $email, $mergeVars, 'html', $isConfirmNeed);
523
+ $item->setProcessed(1)->save();
524
+ if ($item->getId() == $collection->getLastItem()->getId() && count($batch) > 0) {
525
+ Mage::getSingleton('monkey/api')->listBatchSubscribe($oldList, $batch, $isConfirmNeed, TRUE, FALSE);
526
+ }
527
  }
528
 
529
  }
app/code/community/Ebizmarts/MageMonkey/Model/Monkey.php CHANGED
@@ -180,6 +180,17 @@ class Ebizmarts_MageMonkey_Model_Monkey
180
  $subscriber->setSubscriberLastname($data['data']['lname']);
181
  }
182
  $subscriber->subscribe($data['data']['email']);
 
 
 
 
 
 
 
 
 
 
 
183
  }
184
  } catch (Exception $e) {
185
  Mage::logException($e);
180
  $subscriber->setSubscriberLastname($data['data']['lname']);
181
  }
182
  $subscriber->subscribe($data['data']['email']);
183
+
184
+ }
185
+ $customerExist = Mage::getSingleton('customer/customer')
186
+ ->getCollection()
187
+ ->addAttributeToFilter('email', array('eq' => $data['data']['email']) )
188
+ ->getFirstItem();
189
+ if($customerExist){
190
+ $storeId = $customerExist->getStoreId();
191
+ }
192
+ if($customerExist && Mage::getStoreConfig('sweetmonkey/general/active', $storeId)){
193
+ Mage::helper('sweetmonkey')->pushVars($customerExist);
194
  }
195
  } catch (Exception $e) {
196
  Mage::logException($e);
app/code/community/Ebizmarts/MageMonkey/Model/Observer.php CHANGED
@@ -31,13 +31,6 @@ class Ebizmarts_MageMonkey_Model_Observer
31
  if($subscriber->getOrigData('subscriber_status') != 3 && $subscriber->getData('subscriber_status') == 3){
32
  Mage::getSingleton('monkey/api', array('store' => $subscriber->getStoreId()))->listUnsubscribe($defaultList, $subscriber->getSubscriberEmail());
33
  }
34
- if (!Mage::helper('monkey')->isAdmin() &&
35
- (Mage::getStoreConfig(Mage_Newsletter_Model_Subscriber::XML_PATH_CONFIRMATION_FLAG, $subscriber->getStoreId()) == 1 && Mage::helper('monkey')->subscribedToList($subscriber->getSubscriberEmail(), $defaultList))
36
- ) {
37
- $subscriber->setStatus(Mage_Newsletter_Model_Subscriber::STATUS_UNCONFIRMED);
38
- } elseif (Mage::helper('monkey')->isAdmin() && $subscriber->getOrigData('subscriber_status') == Mage_Newsletter_Model_Subscriber::STATUS_UNCONFIRMED && $subscriber->getStatus() != Mage_Newsletter_Model_Subscriber::STATUS_UNSUBSCRIBED) {
39
- $subscriber->setStatus(Mage_Newsletter_Model_Subscriber::STATUS_SUBSCRIBED);
40
- }
41
 
42
  if ($subscriber->getBulksync()) {
43
  return $observer;
@@ -47,6 +40,9 @@ class Ebizmarts_MageMonkey_Model_Observer
47
  {
48
  return $observer;
49
  }
 
 
 
50
 
51
  if (Mage::getSingleton('core/session')->getIsOneStepCheckout() && !Mage::getSingleton('core/session')->getMonkeyCheckout()) {
52
  return $observer;
@@ -64,7 +60,6 @@ class Ebizmarts_MageMonkey_Model_Observer
64
  }
65
  Mage::getSingleton('core/session')->setIsHandleSubscriber(FALSE);
66
  }
67
-
68
  return $observer;
69
  }
70
 
@@ -345,7 +340,6 @@ class Ebizmarts_MageMonkey_Model_Observer
345
  */
346
  public function updateCustomer(Varien_Event_Observer $observer)
347
  {
348
-
349
  if (!Mage::helper('monkey')->canMonkey()) {
350
  return $observer;
351
  }
@@ -353,7 +347,7 @@ class Ebizmarts_MageMonkey_Model_Observer
353
  $request = Mage::app()->getRequest();
354
  $isAdmin = $request->getActionName() == 'save' && $request->getControllerName() == 'customer' && $request->getModuleName() == (string)Mage::getConfig()->getNode('admin/routers/adminhtml/args/frontName');
355
  $customer = $observer->getEvent()->getCustomer();
356
- $isCheckout = $request->getModuleName() == 'checkout' || Mage::getSingleton('core/session')->getIsOneStepCheckout();
357
  // $isConfirmNeed = FALSE;
358
  // if (!Mage::helper('monkey')->isAdmin() &&
359
  // (Mage::getStoreConfig(Mage_Newsletter_Model_Subscriber::XML_PATH_CONFIRMATION_FLAG, $customer->getStoreId()) == 1)
@@ -425,7 +419,6 @@ class Ebizmarts_MageMonkey_Model_Observer
425
  }
426
 
427
  $oneStep = Mage::app()->getRequest()->getModuleName() == 'onestepcheckout';
428
-
429
  if (Mage::app()->getRequest()->isPost()) {
430
  $subscribe = Mage::app()->getRequest()->getPost('magemonkey_subscribe');
431
  $force = Mage::app()->getRequest()->getPost('magemonkey_force');
@@ -518,7 +511,7 @@ class Ebizmarts_MageMonkey_Model_Observer
518
 
519
  $block->addItem('magemonkey_ecommerce360', array(
520
  'label' => Mage::helper('monkey')->__('Send to MailChimp'),
521
- 'url' => Mage::app()->getStore()->getUrl('monkey/adminhtml_ecommerce/masssend', Mage::app()->getStore()->isCurrentlySecure() ? array('_secure' => true) : array()),
522
  ));
523
 
524
  }
31
  if($subscriber->getOrigData('subscriber_status') != 3 && $subscriber->getData('subscriber_status') == 3){
32
  Mage::getSingleton('monkey/api', array('store' => $subscriber->getStoreId()))->listUnsubscribe($defaultList, $subscriber->getSubscriberEmail());
33
  }
 
 
 
 
 
 
 
34
 
35
  if ($subscriber->getBulksync()) {
36
  return $observer;
40
  {
41
  return $observer;
42
  }
43
+ if(Mage::getStoreConfig(Mage_Newsletter_Model_Subscriber::XML_PATH_CONFIRMATION_FLAG, $subscriber->getStoreId()) && Mage::getStoreConfig(Ebizmarts_MageMonkey_Model_Config::GENERAL_CONFIRMATION_EMAIL, $subscriber->getStoreId()) && !Mage::getSingleton('customer/session')->isLoggedIn() && Mage::app()->getRequest()->getActionName() != 'createpost'){
44
+ return $observer;
45
+ }
46
 
47
  if (Mage::getSingleton('core/session')->getIsOneStepCheckout() && !Mage::getSingleton('core/session')->getMonkeyCheckout()) {
48
  return $observer;
60
  }
61
  Mage::getSingleton('core/session')->setIsHandleSubscriber(FALSE);
62
  }
 
63
  return $observer;
64
  }
65
 
340
  */
341
  public function updateCustomer(Varien_Event_Observer $observer)
342
  {
 
343
  if (!Mage::helper('monkey')->canMonkey()) {
344
  return $observer;
345
  }
347
  $request = Mage::app()->getRequest();
348
  $isAdmin = $request->getActionName() == 'save' && $request->getControllerName() == 'customer' && $request->getModuleName() == (string)Mage::getConfig()->getNode('admin/routers/adminhtml/args/frontName');
349
  $customer = $observer->getEvent()->getCustomer();
350
+ $isCheckout = $request->getModuleName() == 'checkout' || Mage::getSingleton('core/session')->getIsOneStepCheckout() || Mage::getSingleton('core/session')->getMonkeyCheckout();
351
  // $isConfirmNeed = FALSE;
352
  // if (!Mage::helper('monkey')->isAdmin() &&
353
  // (Mage::getStoreConfig(Mage_Newsletter_Model_Subscriber::XML_PATH_CONFIRMATION_FLAG, $customer->getStoreId()) == 1)
419
  }
420
 
421
  $oneStep = Mage::app()->getRequest()->getModuleName() == 'onestepcheckout';
 
422
  if (Mage::app()->getRequest()->isPost()) {
423
  $subscribe = Mage::app()->getRequest()->getPost('magemonkey_subscribe');
424
  $force = Mage::app()->getRequest()->getPost('magemonkey_force');
511
 
512
  $block->addItem('magemonkey_ecommerce360', array(
513
  'label' => Mage::helper('monkey')->__('Send to MailChimp'),
514
+ 'url' => Mage::getModel('adminhtml/url')->getUrl('adminhtml/ecommerce/masssend', Mage::app()->getStore()->isCurrentlySecure() ? array('_secure' => true) : array()),
515
  ));
516
 
517
  }
app/code/community/Ebizmarts/MageMonkey/Model/Subscriber.php CHANGED
@@ -37,4 +37,21 @@ class Ebizmarts_MageMonkey_Model_Subscriber extends Mage_Newsletter_Model_Subscr
37
  return parent::sendConfirmationSuccessEmail();
38
  }
39
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
40
  }
37
  return parent::sendConfirmationSuccessEmail();
38
  }
39
  }
40
+
41
+ public function confirm($code)
42
+ {
43
+ $store = Mage::helper('monkey')->getThisStore();
44
+ if (Mage::getStoreConfig(Ebizmarts_MageMonkey_Model_Config::GENERAL_ACTIVE, $store) && Mage::getStoreConfig(Mage_Newsletter_Model_Subscriber::XML_PATH_CONFIRMATION_FLAG, $this->getStoreId()) && Mage::getStoreConfig(Ebizmarts_MageMonkey_Model_Config::GENERAL_CONFIRMATION_EMAIL, $this->getStoreId())){
45
+ Mage::helper('monkey')->listsSubscription($this, 0);
46
+ }
47
+ if($this->getCode()==$code) {
48
+ $this->setStatus(self::STATUS_SUBSCRIBED)
49
+ ->setIsStatusChanged(true)
50
+ ->save();
51
+ return true;
52
+ }
53
+
54
+ return false;
55
+ //parent::confirm($code);
56
+ }
57
  }
app/code/community/Ebizmarts/MageMonkey/etc/config.xml CHANGED
@@ -10,7 +10,7 @@
10
  <config>
11
  <modules>
12
  <Ebizmarts_MageMonkey>
13
- <version>1.1.35</version>
14
  </Ebizmarts_MageMonkey>
15
  </modules>
16
  <global>
@@ -182,7 +182,7 @@
182
  <adminhtml>
183
  <args>
184
  <modules>
185
- <monkey before="Mage_Adminhtml">Ebizmarts_MageMonkey_Adminhtml</monkey>
186
  </modules>
187
  </args>
188
  </adminhtml>
@@ -262,7 +262,7 @@
262
  <maxlistsamount>25</maxlistsamount>
263
  <checkout_subscribe>0</checkout_subscribe>
264
  <transactional_emails>false</transactional_emails>
265
- <map_fields><![CDATA[a:14:{i:0;a:2:{s:7:"magento";s:9:"firstname";s:9:"mailchimp";s:5:"FNAME";}i:1;a:2:{s:7:"magento";s:8:"lastname";s:9:"mailchimp";s:5:"LNAME";}i:2;a:2:{s:7:"magento";s:3:"dob";s:9:"mailchimp";s:3:"DOB";}i:3;a:2:{s:7:"magento";s:6:"prefix";s:9:"mailchimp";s:7:"PRENAME";}i:4;a:2:{s:7:"magento";s:15:"billing_address";s:9:"mailchimp";s:7:"BILLING";}i:5;a:2:{s:7:"magento";s:16:"shipping_address";s:9:"mailchimp";s:8:"SHIPPING";}i:6;a:2:{s:7:"magento";s:6:"gender";s:9:"mailchimp";s:6:"GENDER";}i:7;a:2:{s:7:"magento";s:8:"store_id";s:9:"mailchimp";s:7:"STOREID";}i:8;a:2:{s:7:"magento";s:10:"website_id";s:9:"mailchimp";s:7:"WEBSITE";}i:9;a:2:{s:7:"magento";s:16:"date_of_purchase";s:9:"mailchimp";s:3:"DOP";}i:10;a:2:{s:7:"magento";s:19:"ee_customer_balance";s:9:"mailchimp";s:9:"STORECRED";}i:11;a:2:{s:7:"magento";s:8:"group_id";s:9:"mailchimp";s:6:"CGROUP";}i:12;a:2:{s:7:"magento";s:9:"telephone";s:9:"mailchimp";s:9:"TELEPHONE";}i:13;a:2:{s:7:"magento";s:7:"company";s:9:"mailchimp";s:7:"COMPANY";}}]]></map_fields>
266
  <cron_export>1000</cron_export>
267
  <enable_log>1</enable_log>
268
  <checkout_async>1</checkout_async>
10
  <config>
11
  <modules>
12
  <Ebizmarts_MageMonkey>
13
+ <version>1.2.0</version>
14
  </Ebizmarts_MageMonkey>
15
  </modules>
16
  <global>
182
  <adminhtml>
183
  <args>
184
  <modules>
185
+ <monkey after="Mage_Adminhtml">Ebizmarts_MageMonkey_Adminhtml</monkey>
186
  </modules>
187
  </args>
188
  </adminhtml>
262
  <maxlistsamount>25</maxlistsamount>
263
  <checkout_subscribe>0</checkout_subscribe>
264
  <transactional_emails>false</transactional_emails>
265
+ <map_fields><![CDATA[a:15:{i:0;a:2:{s:7:"magento";s:9:"firstname";s:9:"mailchimp";s:5:"FNAME";}i:1;a:2:{s:7:"magento";s:8:"lastname";s:9:"mailchimp";s:5:"LNAME";}i:2;a:2:{s:7:"magento";s:3:"dob";s:9:"mailchimp";s:3:"DOB";}i:3;a:2:{s:7:"magento";s:6:"prefix";s:9:"mailchimp";s:7:"PRENAME";}i:4;a:2:{s:7:"magento";s:15:"billing_address";s:9:"mailchimp";s:7:"BILLING";}i:5;a:2:{s:7:"magento";s:16:"shipping_address";s:9:"mailchimp";s:8:"SHIPPING";}i:6;a:2:{s:7:"magento";s:6:"gender";s:9:"mailchimp";s:6:"GENDER";}i:7;a:2:{s:7:"magento";s:8:"store_id";s:9:"mailchimp";s:7:"STOREID";}i:8;a:2:{s:7:"magento";s:10:"website_id";s:9:"mailchimp";s:7:"WEBSITE";}i:9;a:2:{s:7:"magento";s:16:"date_of_purchase";s:9:"mailchimp";s:3:"DOP";}i:10;a:2:{s:7:"magento";s:19:"ee_customer_balance";s:9:"mailchimp";s:9:"STORECRED";}i:11;a:2:{s:7:"magento";s:8:"group_id";s:9:"mailchimp";s:6:"CGROUP";}i:12;a:2:{s:7:"magento";s:9:"telephone";s:9:"mailchimp";s:9:"TELEPHONE";}i:13;a:2:{s:7:"magento";s:7:"company";s:9:"mailchimp";s:7:"COMPANY";}i:14;a:2:{s:7:"magento";s:10:"store_code";s:9:"mailchimp";s:8:"STORECOD";}}]]></map_fields>
266
  <cron_export>1000</cron_export>
267
  <enable_log>1</enable_log>
268
  <checkout_async>1</checkout_async>
app/code/community/Ebizmarts/Mandrill/etc/config.xml CHANGED
@@ -48,7 +48,7 @@
48
  <adminhtml>
49
  <args>
50
  <modules>
51
- <mandrill before="Mage_Adminhtml">Ebizmarts_Mandrill_Adminhtml</mandrill>
52
  </modules>
53
  </args>
54
  </adminhtml>
48
  <adminhtml>
49
  <args>
50
  <modules>
51
+ <mandrill after="Mage_Adminhtml">Ebizmarts_Mandrill_Adminhtml</mandrill>
52
  </modules>
53
  </args>
54
  </adminhtml>
app/code/community/Ebizmarts/SweetMonkey/Model/Cron.php DELETED
@@ -1,36 +0,0 @@
1
- <?php
2
-
3
- /**
4
- * Model to handle cron tasks logic
5
- *
6
- * @author Ebizmarts Team <info@ebizmarts.com>
7
- */
8
- class Ebizmarts_SweetMonkey_Model_Cron
9
- {
10
-
11
- /**
12
- * Push customers vars to MailChimp
13
- *
14
- * @return void
15
- */
16
- public function pushMergeVarsForCustomers()
17
- {
18
- $allStores = Mage::app()->getStores();
19
- foreach ($allStores as $storeId => $val) {
20
- if (Mage::getStoreConfig('sweetmonkey/general/active', $storeId)) {
21
- $customers = Mage::getModel('rewards/customer')->getCollection()
22
- ->addFieldToFilter('store_id', array('eq' => $storeId));
23
-
24
- foreach ($customers as $c) {
25
- /*if (!Mage::helper('rewards/expiry')->isEnabled($c->getStoreId())) {
26
- continue;
27
- }*/
28
-
29
- $customer = Mage::getModel('rewards/customer')->load($c->getId());
30
- Mage::helper('sweetmonkey')->pushVars($customer);
31
- }
32
- }
33
- }
34
- }
35
-
36
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/code/community/Ebizmarts/SweetMonkey/Model/Observer.php CHANGED
@@ -29,19 +29,6 @@ class Ebizmarts_SweetMonkey_Model_Observer
29
  return $observer;
30
  }
31
 
32
- /**
33
- * Sende merge vars after customer logs in
34
- *
35
- * @param Varien_Event_Observer $observer
36
- * @return void
37
- */
38
- public function customerLogin($observer)
39
- {
40
- $customer = $observer->getEvent()->getCustomer();
41
- Mage::helper('sweetmonkey')->pushVars($customer);
42
- return $this;
43
- }
44
-
45
  /**
46
  * Sende merge vars after Rewards/Customer saves
47
  *
29
  return $observer;
30
  }
31
 
 
 
 
 
 
 
 
 
 
 
 
 
 
32
  /**
33
  * Sende merge vars after Rewards/Customer saves
34
  *
app/code/community/Ebizmarts/SweetMonkey/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <Ebizmarts_SweetMonkey>
5
- <version>1.1.11</version>
6
  </Ebizmarts_SweetMonkey>
7
  </modules>
8
  <global>
@@ -22,22 +22,7 @@
22
  </sweetmonkey>
23
  </helpers>
24
  <events>
25
- <rewards_points_indexer_update>
26
- <observers>
27
- <sweetmonkey_send_vars>
28
- <class>sweetmonkey/observer</class>
29
- <method>pointsEvent</method>
30
- </sweetmonkey_send_vars>
31
- </observers>
32
- </rewards_points_indexer_update>
33
- <model_save_after>
34
- <observers>
35
- <sweetmonkey_send_vars>
36
- <class>sweetmonkey/observer</class>
37
- <method>customerRewardSave</method>
38
- </sweetmonkey_send_vars>
39
- </observers>
40
- </model_save_after>
41
  <magemonkey_mergevars_after>
42
  <observers>
43
  <sweetmonkey_merge_vars>
@@ -50,16 +35,6 @@
50
 
51
  </global>
52
  <frontend>
53
- <events>
54
- <customer_login>
55
- <observers>
56
- <sweetmonkey_send_vars>
57
- <class>sweetmonkey/observer</class>
58
- <method>customerLogin</method>
59
- </sweetmonkey_send_vars>
60
- </observers>
61
- </customer_login>
62
- </events>
63
  <translate>
64
  <modules>
65
  <Ebizmarts_SweetMonkey>
@@ -75,7 +50,7 @@
75
  <adminhtml>
76
  <args>
77
  <modules>
78
- <sweetmonkey before="Mage_Adminhtml">Ebizmarts_SweetMonkey_Adminhtml</sweetmonkey>
79
  </modules>
80
  </args>
81
  </adminhtml>
@@ -118,16 +93,4 @@
118
  </general>
119
  </sweetmonkey>
120
  </default>
121
- <crontab>
122
- <jobs>
123
- <sweetmonkey_send_vars>
124
- <schedule>
125
- <cron_expr>0 1 * * *</cron_expr>
126
- </schedule>
127
- <run>
128
- <model>sweetmonkey/cron::pushMergeVarsForCustomers</model>
129
- </run>
130
- </sweetmonkey_send_vars>
131
- </jobs>
132
- </crontab>
133
  </config>
2
  <config>
3
  <modules>
4
  <Ebizmarts_SweetMonkey>
5
+ <version>1.1.11.1</version>
6
  </Ebizmarts_SweetMonkey>
7
  </modules>
8
  <global>
22
  </sweetmonkey>
23
  </helpers>
24
  <events>
25
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  <magemonkey_mergevars_after>
27
  <observers>
28
  <sweetmonkey_merge_vars>
35
 
36
  </global>
37
  <frontend>
 
 
 
 
 
 
 
 
 
 
38
  <translate>
39
  <modules>
40
  <Ebizmarts_SweetMonkey>
50
  <adminhtml>
51
  <args>
52
  <modules>
53
+ <sweetmonkey after="Mage_Adminhtml">Ebizmarts_SweetMonkey_Adminhtml</sweetmonkey>
54
  </modules>
55
  </args>
56
  </adminhtml>
93
  </general>
94
  </sweetmonkey>
95
  </default>
 
 
 
 
 
 
 
 
 
 
 
 
96
  </config>
app/design/frontend/base/default/template/ebizmarts/autoresponder/backtostock/item.phtml CHANGED
@@ -34,7 +34,7 @@
34
  <h2>
35
  <a href="<?php echo $product->getProductUrl(); ?>"><?php echo $this->escapeHtml($product->getName()); ?></a>
36
  </h2></p>
37
- <?php echo $this->escapeHtml($product->getShortDescription()); ?>
38
  </td>
39
  </tr>
40
  <tr>
34
  <h2>
35
  <a href="<?php echo $product->getProductUrl(); ?>"><?php echo $this->escapeHtml($product->getName()); ?></a>
36
  </h2></p>
37
+ <?php echo $product->getShortDescription(); ?>
38
  </td>
39
  </tr>
40
  <tr>
app/design/frontend/base/default/template/ebizmarts/autoresponder/related/items.phtml CHANGED
@@ -22,7 +22,7 @@
22
  alt="<?php echo $this->escapeHtml($product->getName()); ?>"/></a>
23
  </td>
24
  <td valign="top" align="left" style="padding:3px 9px">
25
- <p><?php echo $this->escapeHtml($product->getName()); ?></p><?php echo $this->escapeHtml($product->getShortDescription()); ?>
26
  </td>
27
  </tr>
28
  <?php endforeach; ?>
22
  alt="<?php echo $this->escapeHtml($product->getName()); ?>"/></a>
23
  </td>
24
  <td valign="top" align="left" style="padding:3px 9px">
25
+ <p><?php echo $this->escapeHtml($product->getName()); ?></p><?php echo $product->getShortDescription(); ?>
26
  </td>
27
  </tr>
28
  <?php endforeach; ?>
app/design/frontend/base/default/template/ebizmarts/autoresponder/review/items.phtml CHANGED
@@ -36,7 +36,7 @@ $token = $this->getToken();
36
  <td valign="top" align="left" style="padding:3px 9px"><p>
37
 
38
  <h2><a href="<?php echo $url; ?>"> Rate <?php echo $this->escapeHtml($product->getName()); ?></a>
39
- </h2></p><?php echo $this->escapeHtml($product->getShortDescription()); ?></td>
40
  </tr>
41
  <?php endforeach; ?>
42
  </table>
36
  <td valign="top" align="left" style="padding:3px 9px"><p>
37
 
38
  <h2><a href="<?php echo $url; ?>"> Rate <?php echo $this->escapeHtml($product->getName()); ?></a>
39
+ </h2></p><?php echo $product->getShortDescription(); ?></td>
40
  </tr>
41
  <?php endforeach; ?>
42
  </table>
app/design/frontend/base/default/template/ebizmarts/autoresponder/wishlist/items.phtml CHANGED
@@ -25,7 +25,7 @@
25
 
26
  <h2>
27
  <a href="<?php echo $product->getProductUrl(); ?>"> <?php echo $this->escapeHtml($product->getName()); ?></a>
28
- </h2></p><?php echo $this->escapeHtml($product->getShortDescription()); ?></td>
29
  </tr>
30
  <?php endforeach; ?>
31
  </table>
25
 
26
  <h2>
27
  <a href="<?php echo $product->getProductUrl(); ?>"> <?php echo $this->escapeHtml($product->getName()); ?></a>
28
+ </h2></p><?php echo $product->getShortDescription(); ?></td>
29
  </tr>
30
  <?php endforeach; ?>
31
  </table>
app/design/frontend/base/default/template/ebizmarts_abandonedcart/popup/emailcatcher.phtml CHANGED
@@ -4,7 +4,7 @@
4
 
5
 
6
 
7
- <div id="popup-heading" style="min-height: <?php Print(json_decode((Mage::getStoreConfig(Ebizmarts_AbandonedCart_Model_Config::POPUP_HEIGHT, $this->_getStoreId())-25))); ?>px;">
8
  <h2><?php echo $this->_popupHeading(); ?></h2>
9
  </div>
10
  <div id="popup-form-content">
@@ -68,11 +68,13 @@
68
  });
69
  var cookieStored = emailCookieExists();
70
  if (!cookieStored) {
 
 
71
  var win = Dialog.confirm($('email').innerHTML, {
72
  className: "popup",
73
  id: "popupDialog",
74
- width: <?php Print(json_decode(Mage::getStoreConfig(Ebizmarts_AbandonedCart_Model_Config::POPUP_WIDTH, $this->_getStoreId()))); ?>,
75
- height: <?php Print(json_decode(Mage::getStoreConfig(Ebizmarts_AbandonedCart_Model_Config::POPUP_HEIGHT, $this->_getStoreId()))); ?>,
76
  zIndex: 2001,
77
  okLabel: '<?php echo $this->__('Confirm') ?>',
78
  <?php if(!$this->_canCancel()): ?>closeOnEsc: false,
4
 
5
 
6
 
7
+ <div id="popup-heading">
8
  <h2><?php echo $this->_popupHeading(); ?></h2>
9
  </div>
10
  <div id="popup-form-content">
68
  });
69
  var cookieStored = emailCookieExists();
70
  if (!cookieStored) {
71
+ var popupWidth = <?php Print(json_decode(Mage::getStoreConfig(Ebizmarts_AbandonedCart_Model_Config::POPUP_WIDTH, $this->_getStoreId()))); ?>*window.innerWidth/100;
72
+ var popupHeight = <?php Print(json_decode(Mage::getStoreConfig(Ebizmarts_AbandonedCart_Model_Config::POPUP_HEIGHT, $this->_getStoreId()))); ?>*window.innerHeight/100;
73
  var win = Dialog.confirm($('email').innerHTML, {
74
  className: "popup",
75
  id: "popupDialog",
76
+ width: popupWidth,
77
+
78
  zIndex: 2001,
79
  okLabel: '<?php echo $this->__('Confirm') ?>',
80
  <?php if(!$this->_canCancel()): ?>closeOnEsc: false,
js/ebizmarts/abandonedcart/popup.css CHANGED
@@ -6,44 +6,100 @@
6
  }
7
 
8
  .popup_content {
9
- overflow: auto;
 
 
10
  color: #000;
11
  font-family: Tahoma, Arial, sans-serif;
12
  font: 12px arial;
13
  background: #FDFDFD;
14
- margin: 10px 5px 5px 5px;
15
  }
16
 
17
  .popup_message {
18
  font: 12px arial;
19
  text-align: center;
20
  width: 100%;
21
- line-height: 20px;
22
  }
23
 
24
  .popup_buttons {
25
  text-align: center;
26
  width: 100%;
 
27
  }
28
 
29
  #popup-heading {
30
- width: 30%;
31
- margin-right: 10px;
32
- background:rgb(36,131,199);
33
- float: right;
34
- display: flex;
35
  align-items: center;
 
 
 
36
  }
37
 
38
- #popup-heading > h2 {
39
- color: white;
 
 
 
 
 
 
 
40
  }
41
 
42
  #popup-form-content {
43
- width: 70%;
44
  text-align: center;
45
  }
46
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
47
  #popup-form-data {
48
  margin-right: 6%;
49
  line-height: 45px;
@@ -53,23 +109,15 @@
53
  margin-left: 13pt;
54
  }
55
 
56
- .email_label {
57
- margin: 5px;
58
  }
59
 
60
- #popup-text {
61
- margin: 10px;
62
  }
63
 
64
- .cancel_button {
65
- position: absolute;
66
- top: 0;
67
- right: 0;
68
- border-style : none;
69
- color: transparent;
70
- height: 32px;
71
- width: 32px;
72
- background: url(xmark.png) no-repeat;
73
  }
74
 
75
-
6
  }
7
 
8
  .popup_content {
9
+ width:100%;
10
+ height: auto;
11
+ overflow: visible;
12
  color: #000;
13
  font-family: Tahoma, Arial, sans-serif;
14
  font: 12px arial;
15
  background: #FDFDFD;
16
+ margin: 1% 1% 1% 0%;
17
  }
18
 
19
  .popup_message {
20
  font: 12px arial;
21
  text-align: center;
22
  width: 100%;
23
+ height: 84%;
24
  }
25
 
26
  .popup_buttons {
27
  text-align: center;
28
  width: 100%;
29
+ height: 100%;
30
  }
31
 
32
  #popup-heading {
33
+ background: rgb(36, 131, 199);
 
 
 
 
34
  align-items: center;
35
+ display: table;
36
+ margin-left: auto;
37
+ margin-right: auto;
38
  }
39
 
40
+ .cancel_button {
41
+ position: absolute;
42
+ top: 0;
43
+ right: 0;
44
+ border-style : none;
45
+ color: transparent;
46
+ height: 32px;
47
+ width: 32px;
48
+ background: url(xmark.png) no-repeat;
49
  }
50
 
51
  #popup-form-content {
52
+ width: 100%;
53
  text-align: center;
54
  }
55
 
56
+ .ok_button{
57
+ position: relative;
58
+ top: 5%;
59
+ bottom: 0;
60
+ }
61
+
62
+ @media (min-width: 720px) {
63
+ #popup-heading {
64
+ width: 30%;
65
+ height: 100%;
66
+ background: rgb(36, 131, 199);
67
+ float: right;
68
+ display: flex;
69
+ vertical-align: middle
70
+ }
71
+ .cancel_button {
72
+ position: relative;
73
+ top: -119%;
74
+ right: -45%;
75
+ border-style : none;
76
+ color: transparent;
77
+ height: 32px;
78
+ width: 32px;
79
+ background: url(xmark.png) no-repeat;
80
+ }
81
+ #popup-form-content {
82
+ width: 70%;
83
+ text-align: center;
84
+ }
85
+ .popup_message {
86
+ font: 12px arial;
87
+ text-align: center;
88
+ width: 100%;
89
+ height: 100%;
90
+ }
91
+ .ok_button{
92
+ position: relative;
93
+ top: -10%;
94
+ }
95
+ }
96
+
97
+
98
+ #popup-heading > h2 {
99
+ color: white;
100
+ overflow: visible;
101
+ }
102
+
103
  #popup-form-data {
104
  margin-right: 6%;
105
  line-height: 45px;
109
  margin-left: 13pt;
110
  }
111
 
112
+ #popup-form-data input {
113
+ width: 60%;
114
  }
115
 
116
+ .email_label {
117
+ margin: 1%;
118
  }
119
 
120
+ #popup-text {
121
+ margin: 2%;
 
 
 
 
 
 
 
122
  }
123
 
 
package.xml CHANGED
@@ -1,33 +1,38 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Ebizmarts_MageMonkey</name>
4
- <version>1.1.35</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>MailChimp integration for Magento by Ebizmarts</summary>
10
  <description>Full MailChimp integration, automatic webhooks, multiple lists, interest groups</description>
11
- <notes>1.1.35&#xD;
12
  --------&#xD;
13
- - Fixed typo in modman&#xD;
14
- - Firstname sent to MailChimp if customer name is available.&#xD;
15
- - Lastname sent to MailChimp if customer name is available.&#xD;
16
- - Fixed problem when displaying customer groups.&#xD;
17
- - Added storeId for unsubscription.&#xD;
18
- - Added check to see if first and last name are enabled on popup.&#xD;
19
- - Fixed typo error when sending orders to MailChimp manually.&#xD;
20
- - Corrected typo error on isAllowed for send to MailChimp action at orders grid.&#xD;
21
- - Fixed Yesnovariation.php to show A/B testing correctly.&#xD;
22
- - Added Dutch translations. (marcobax)&#xD;
23
- - Set Abandoned Cart to stop checking the same cart when an order has been made after its creation.&#xD;
24
- - Fixed ecommerce360 problem.&#xD;
25
- - Fixed problem with Popup coupon.&#xD;
26
- - Added MailChimp sign in all the modules.</notes>
 
 
 
 
 
27
  <authors><author><name>Ebizmarts Development Team</name><user>auto-converted</user><email>info@ebizmarts.com</email></author></authors>
28
- <date>2015-08-21</date>
29
- <time>17:29:01</time>
30
- <contents><target name="magecommunity"><dir name="Ebizmarts"><dir name="MageMonkey"><dir name="Block"><dir name="Adminhtml"><dir name="Bulksync"><dir name="Export"><file name="Form.php" hash="ae560b94bb9e440d660be69f5165b69f"/></dir><dir name="Import"><file name="Form.php" hash="0421281b9cfbc446329d7482c24c2c11"/></dir><dir name="Queue"><file name="Grid.php" hash="23b3edec3bc13fae8aee5b7292c4d4d1"/></dir><dir name="QueueExport"><file name="Grid.php" hash="68ec401dc23cddf8a1362c53aaab69b2"/></dir><dir name="QueueImport"><file name="Grid.php" hash="a695371e46328137d025b0fdf09944fe"/></dir><file name="Export.php" hash="62714f95580e489105914270b889a142"/><file name="Import.php" hash="d573582da25766aecba918d299c02586"/><file name="Queue.php" hash="c3cea1da02e0a09d7876958058ee091e"/><file name="QueueExport.php" hash="69536eee264346535f1c786d61b3cf84"/><file name="QueueImport.php" hash="d9fbc0d22f94df54f71116d0d484d1a3"/></dir><dir name="Customer"><dir name="Edit"><dir name="Tab"><file name="Memberactivity.php" hash="55fbb4519c6d862948dc4d8bf4416cfb"/></dir></dir></dir><dir name="Ecommerce"><file name="Grid.php" hash="b1ad37ffe9fe0752356d29a6548b0434"/></dir><dir name="Ecommerceapi"><dir name="Renderer"><file name="Items.php" hash="d72cfedf0cafc938becf9bd52801ba3a"/></dir><file name="Grid.php" hash="ee1be42cb6c893e3c59cac784df67fb3"/></dir><dir name="Memberactivity"><file name="Grid.php" hash="f4b341dd60b361098394618cf3382620"/></dir><dir name="Newsletter"><dir name="Subscriber"><dir name="Renderer"><file name="Firstname.php" hash="e814d3ba07b32e851585363b29e37b3a"/><file name="Lastname.php" hash="9a8b007c2db6add0572cf4012b28f63e"/></dir></dir></dir><dir name="Renderer"><file name="Date.php" hash="6e4e52403ec55df3aa2183fd4b51b095"/><file name="Importypes.php" hash="87c7a222e403781fcd8ee08cf0b489ba"/><file name="Lists.php" hash="15f5b5e087b49396a6f844e0f1bfb6b1"/><file name="Progress.php" hash="31eaaa5a7e99b21a4ed705971fe1001d"/><file name="Yesno.php" hash="c3173a8e8ea2d5f03531e7d996bbd259"/></dir><dir name="System"><dir name="Config"><dir name="Fieldset"><file name="Hint.php" hash="31bf492c4e6137312c55bc437bf226cf"/></dir><dir name="Form"><dir name="Field"><file name="Mapfields.php" hash="8f2a10ca1a1d239b3b231ca2cee5f96e"/></dir></dir><file name="Account.php" hash="fccf1faac2682d754655631e6451c026"/><file name="Date.php" hash="455120f4f2e8d7801f3c220e231b6789"/><file name="OauthWizard.php" hash="bd79f8b43d71137337e732fbeb415ffb"/><file name="ResetLocalEcommerce.php" hash="493126ac056c3585ed2d3020d62c76e1"/><file name="ResetRemoteEcommerce.php" hash="40d54bb2d6e7dd7bf3a91c9346f988bf"/></dir></dir><file name="Ecommerce.php" hash="48c237e8cc1223ad26a88d2409679fec"/><file name="Ecommerceapi.php" hash="a9f659502d96bcd1a69a88d15fcab4f9"/></dir><dir name="Checkout"><file name="Subscribe.php" hash="14de0075005dafe3363716e3ffd10d20"/></dir><dir name="Customer"><dir name="Account"><file name="Lists.php" hash="64f0e5a8360750f6b19d8b5db0fcac23"/></dir></dir><file name="Lists.php" hash="1e92aea24b1a59b7d7ae7c264a18c96c"/><file name="Signup.php" hash="93b0e787e63a90a5fb4bacba1e03bd05"/></dir><dir name="Helper"><file name="Cache.php" hash="4e6cd9724c2788056aacacd37f5699cc"/><file name="Data.php" hash="d86f3c5e5fdab1691995e9703360d06f"/><file name="Export.php" hash="91f24805e9cbbe124f0c99cb8f1f1272"/><file name="Oauth2.php" hash="684a7b71d97b438081ebf332057ec8ea"/></dir><dir name="Model"><dir name="Custom"><file name="Collection.php" hash="304d372c1b8bd8d8d09dd743e03cdf66"/></dir><dir name="Email"><file name="Template.php" hash="81c9f040cf931dfb9e2a2484d9cc0b09"/></dir><dir name="Feed"><file name="Updates.php" hash="d6401edef548f125f238ae7d80a458fe"/></dir><dir name="Mysql4"><dir name="Apidebug"><file name="Collection.php" hash="7cc3fe74a46da1a4770b49eb7ac47f97"/></dir><dir name="Asyncorders"><file name="Collection.php" hash="e7b17fac028f7116c762e120b0f3f0a8"/></dir><dir name="Asyncsubscribers"><file name="Collection.php" hash="3458134c9a1ced7359db40f7b79a133f"/></dir><dir name="Bulksync"><dir name="Export"><file name="Collection.php" hash="ac64bc652233136189c504f678062374"/></dir><dir name="Import"><file name="Collection.php" hash="6cb3e09a817488f9bfa50f877a5c2b0b"/></dir><file name="Export.php" hash="eedc5a3549b3815f0d290eca3e0579df"/><file name="Import.php" hash="487fc6c0335ebf352081185d9afe3f88"/></dir><dir name="Ecommerce"><file name="Collection.php" hash="80319b6c991c510f1569800c80d384f1"/></dir><dir name="Lastorder"><file name="Collection.php" hash="38d6a7519cfe21caf7f5d22877aa1477"/></dir><file name="Apidebug.php" hash="2699eec825e8fb88b1d572728c10b7bc"/><file name="Asyncorders.php" hash="3eb64d883705854ce7899fd891101c63"/><file name="Asyncsubscribers.php" hash="a067c1e951ce61558e00f3aa8e5d15ef"/><file name="Ecommerce.php" hash="b3290a6170c8c8f275dcd4300840ea26"/><file name="Lastorder.php" hash="f3987329cb78c978bcc94ba375d9f998"/></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="Account.php" hash="5bbf12b572234101af3e753ba74bcd41"/><file name="Attributes.php" hash="4ac1c98f3b3b84b2c93ddfcc3df5d817"/><file name="BulksyncDatasource.php" hash="36331ac3ecd034f914666a49e4d75cbc"/><file name="BulksyncStatus.php" hash="658f1f9d1ee7177d5dc094862bce155a"/><file name="Checkoutsubscribe.php" hash="28c8641a8fa4c336487af2227e152136"/><file name="CronProcessLimit.php" hash="3ca3a61f07b7aa84479eddda35efdde4"/><file name="CustomerGroup.php" hash="299b8514de098e02efe5393ebe7bdf65"/><file name="Ecommerce360.php" hash="24906da389cbf6b4a97c3edab5c7f020"/><file name="List.php" hash="bd9ef222e15d69b5c5038a98723d18c6"/><file name="OrderProcessLimit.php" hash="bc3add48e125caa904774cb6b669ba0c"/><file name="OrderStatus.php" hash="d3eeeee5d614e8fa83e258ce53cbed79"/><file name="Status.php" hash="e1e5cf6252241f39d0ceaff6f94d3afb"/><file name="TransactionalEmails.php" hash="b2f0d564a59372cba59d3aac7e4fe9e0"/><file name="WebhookDelete.php" hash="c90bbf8b0cf2a546c0f72193f8c605cf"/></dir></dir></dir><file name="Api.php" hash="ea7c720767bc58cb740d2f70100f699b"/><file name="Asyncorders.php" hash="3f60d1a1c1885268ae7e2ddfb1772feb"/><file name="Asyncsubscribers.php" hash="b79a42df357267205d7e74bb7c220755"/><file name="BulksyncExport.php" hash="71af9a6134b415a324dc9c937a5b2f8e"/><file name="BulksyncImport.php" hash="fb3716e235bc22cf91c4c17edf10ec23"/><file name="Cache.php" hash="89ac2fac903a566e6f6a3c0951bf274d"/><file name="Config.php" hash="276026d2d6ac8af349b7f2f82dc17668"/><file name="Cron.php" hash="3d0160a020ac8fd3b95251d40452d0b1"/><file name="Ecommerce.php" hash="f4581befe128963df3e3d062b1bc4d55"/><file name="Ecommerce360.php" hash="b2571e3e8e619360ed6f3fc9b8a67435"/><file name="Lastorder.php" hash="f2977e76892b0b1a5e031f8eabf93f18"/><file name="MCAPI.php" hash="c86a58e5a40b709aefecd05c813ee7be"/><file name="MCEXPORTAPI.php" hash="810b1c7b0f6daf93e11c7fbbc90980a3"/><file name="Monkey.php" hash="a8141ae234a5944d47510670f69c3d58"/><file name="Observer.php" hash="969b470a2711965f63c4ad254dc1f444"/><file name="Subscriber.php" hash="70423d00c03e9fb7436921f93052c75d"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="BulksyncController.php" hash="eca2f78696482b5422294a8b7ce1e1d5"/><file name="ConfigController.php" hash="6a307ba4b4a39991392935dd368ba1f8"/><file name="EcommerceController.php" hash="36cb709dd0eaf0592b4f5d8cf54f272d"/></dir><dir name="Customer"><file name="AccountController.php" hash="14479dffeacd3c2421ce5822f7d7f190"/></dir><file name="SignupController.php" hash="e379f52f8ee0191a4c7289cd2afcd19d"/><file name="WebhookController.php" hash="319878266b5463d5d8591b6a4fb5e096"/></dir><dir name="etc"><file name="adminhtml.xml" hash="2ca3d47af5d16f1d5e0efb71346d3fe4"/><file name="config.xml" hash="9ed5ff6f5bd59e68ca77d9e82f0c2339"/><file name="system.xml" hash="9dd307a54fc966aade4676055e36f5b6"/></dir><dir name="sql"><dir name="monkey_setup"><file name="mysql4-install-0.0.1.php" hash="4df34769f4d5a8ceca90fd582500e3a9"/><file name="mysql4-upgrade-0.0.1-0.0.2.php" hash="d81147dab407bc55c59cddb5a764c53e"/><file name="mysql4-upgrade-0.0.2-0.0.3.php" hash="ce1925ff2ab03aa9fd6cbe43283ea37d"/><file name="mysql4-upgrade-0.0.3-0.0.4.php" hash="7f1e38bcf030e6346a9fd8321f1a4362"/><file name="mysql4-upgrade-0.0.4-0.0.5.php" hash="bbe6b895320effca77cc2c23431f043f"/><file name="mysql4-upgrade-0.0.5-0.0.6.php" hash="98b72d9ef4ec8078c09a1f641fc35a39"/><file name="mysql4-upgrade-0.0.6-0.0.7.php" hash="ea15755fc072e7c82b78063589360779"/><file name="mysql4-upgrade-1.0.10-1.0.11.php" hash="b2ec497921eb2bd9a97a318554fd980b"/><file name="mysql4-upgrade-1.1.21-1.1.22.php" hash="738e3d3e33c1a3a02bb101b89743cc5c"/><file name="mysql4-upgrade-1.1.23-1.1.24.php" hash="5a1bfdc8014edbc8b8c728954405a9f5"/><file name="mysql4-upgrade-1.1.33-1.1.34.php" hash="68f74c77460e76ea6153ebc823d49990"/><file name="mysql4-upgrade-1.1.5-1.1.6.php" hash="14750274ece5816d6c1ab490f7d610ab"/></dir></dir></dir><dir name="Mandrill"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Fieldset"><file name="Hint.php" hash="6ca5fb9bf9254323e1f2b4447203b562"/></dir><file name="Userinfo.php" hash="7cd34efc0231424c9e2f5e662154c41c"/></dir></dir><dir name="Templates"><dir name="Templates"><file name="Grid.php" hash="1ecdb6b04fbd16043de908f261353b8d"/></dir><file name="Templates.php" hash="1682fe6d39605a9839bf3cdb3c1185b7"/></dir><dir name="Users"><dir name="Senders"><file name="Grid.php" hash="292097a493de241540d3e3aea463241f"/></dir><file name="Senders.php" hash="4a4449652c495a9d4c12966ab007e7a4"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="86fcaa6a66a5a628ded7215172448daf"/></dir><dir name="Model"><dir name="Email"><file name="Template.php" hash="7a387e01c007e5bbca225dd8f3e1f2d5"/></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="Userinfo.php" hash="12a9c9c27c985efd021a4e6c7fdfcf5e"/></dir></dir><file name="Config.php" hash="2219d951bf6b2553ec0284b65d8d92a2"/></dir><file name="Customcollection.php" hash="9b5766c0393a54b4356254725b4d78b2"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Mandrill"><file name="UsersController.php" hash="82f6e810f51b12b65d009bdeaded95e8"/></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="8ea87cce062596388f7e9507943e8bb5"/><file name="config.xml" hash="45d3f59fe2c04eb0aca424cf3606052c"/><file name="system.xml" hash="d05b90ca129297b6ffda52a4ba1fd26a"/></dir></dir><dir name="AbandonedCart"><dir name="Block"><dir name="Adminhtml"><dir name="Abandonedmails"><file name="Grid.php" hash="f2813a7ec47e20b78874a0dbb1461b3e"/></dir><dir name="Abandonedorder"><file name="Grid.php" hash="5ab9e3884d3306d78e78133f09e22614"/></dir><dir name="Dashboard"><file name="Sales.php" hash="b0d6fce3a5f4ef5a891c8578eb36ef97"/><file name="Totals.php" hash="4cd3c1e0d8d357c79ec6e7a2ed98c6a0"/></dir><dir name="System"><dir name="Config"><dir name="Fieldset"><file name="Hint.php" hash="6358bc58857011c08dedcbab885b461f"/></dir><file name="Date.php" hash="323a49af281f06dfa72c1d3512257e04"/></dir></dir><file name="Abandonedmails.php" hash="c2714b5a6cb534c91564ebc340fe3f26"/><file name="Abandonedorder.php" hash="1a14da87647612a8773f34f70bc05dea"/><file name="Dashboard.php" hash="c27d5ec29455176fff7e2fac86fcce21"/></dir><dir name="Email"><dir name="Order"><file name="Items.php" hash="5c4be14f72d2cfe0a25058246d016d25"/></dir></dir><dir name="Popup"><file name="Emailcatcher.php" hash="319fd3d617a9d092f38c910baaf86693"/></dir></dir><dir name="Helper"><file name="Data.php" hash="7395f6fc74f1851de4de9e962964f2d4"/></dir><dir name="Model"><dir name="Resource"><dir name="Abtesting"><file name="Collection.php" hash="f96fe4be550bef6daabc5d211c86aca0"/></dir><dir name="Mailssent"><file name="Collection.php" hash="dc1e2c44eb53381d57d10a6bc08ad497"/></dir><dir name="Order"><file name="Collection.php" hash="a079410c43e1afbb428b7163d1537482"/></dir><dir name="Popup"><file name="Collection.php" hash="af37502f9802c7574318ab28a8fb1b16"/></dir><file name="Abtesting.php" hash="46e70f8507676e157ddec44f66094e59"/><file name="Mailssent.php" hash="80f0b4e3f29d10951362f07eb45a3ece"/><file name="Popup.php" hash="446921e9b1da1973c83665e8f749bbbb"/></dir><dir name="System"><dir name="Config"><file name="Automatic.php" hash="a4f5e052810187fb824933e76ea8a1cf"/><file name="Cmspage.php" hash="89bfcbe90a7b2f396a56b3f1fe72dbd2"/><file name="Customergroup.php" hash="74af027c3fb6745d0e45938f83394489"/><file name="Discounttype.php" hash="55c251fafbd10821d6c18c381c307888"/><file name="Maxemails.php" hash="63b860ace056552d159ada056eebfbd7"/><file name="Unit.php" hash="07fa0c25182538e08479cc4f91c7ca16"/><file name="Yesnovariation.php" hash="d24e4bf79afe73e85422c53835de0012"/></dir></dir><file name="Abtesting.php" hash="fdf9df78b6656c898fd74fbcb3ec51e1"/><file name="Config.php" hash="3571e63f143d9b49a272da02b0a48f84"/><file name="Cron.php" hash="69f28a82ec42bd5bde295974b42f3acc"/><file name="EventObserver.php" hash="717246fa2ef5b4e13a4eb36e23ac78e5"/><file name="Mailssent.php" hash="e238f4116cb473cdcfb3a909d08adaa4"/><file name="Popup.php" hash="d2a4922acc0c5c3994cbc0b2114658b8"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="AbandonedmailsController.php" hash="060e46a386be3365ae23722c951de848"/><file name="AbandonedorderController.php" hash="3b74880847f1e33d06043eb673b6c39a"/></dir><file name="AbandonedController.php" hash="70aa47c1c680760e849e8fc032bfab08"/></dir><dir name="etc"><file name="adminhtml.xml" hash="62708e88154b231e694210cca0aa6c97"/><file name="config.xml" hash="11d74c0c2ecf82c86734e72f23b056b6"/><file name="system.xml" hash="7f801e216f7a8752924bc43d3b1a427b"/></dir><dir name="sql"><dir name="ebizmarts_abandonedcart_setup"><file name="mysql4-install-0.1.0.php" hash="0e1a8c0391654c480773b78a50db5a83"/><file name="mysql4-upgrade-0.1.12-0.1.13.php" hash="4835436b744f8cbff61a66c2e345976f"/><file name="mysql4-upgrade-0.1.18-0.1.19.php" hash="e51b332cb70c81ee472b586fda4e8a7e"/><file name="mysql4-upgrade-0.1.2-0.1.3.php" hash="2e87d09a5008ac2f2432a25e08474c87"/><file name="mysql4-upgrade-0.1.20-0.1.21.php" hash="c461ba10961b4ee4e9385173d4264617"/><file name="mysql4-upgrade-0.1.29-0.1.30.php" hash="e9fdf4551cf19b488ed68ca0dd55ab67"/><file name="mysql4-upgrade-0.1.30-0.1.31.php" hash="2889ca071f7b974f2cd85a6b9405e541"/><file name="mysql4-upgrade-0.1.6-0.1.7.php" hash="60daa0d70a1af929a39d6e20ee52ee9c"/></dir></dir></dir><dir name="Autoresponder"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Backtostock"><dir name="Fieldset"><file name="Hint.php" hash="196c96e0bdfb853c42510d8cef4bf69a"/></dir></dir><dir name="Birthday"><dir name="Fieldset"><file name="Hint.php" hash="bff790a4ecf1f7ed7ac5d966cb8d516f"/></dir></dir><dir name="Fieldset"><file name="Hint.php" hash="eea231bb3f99b0f3708c2d43144e0f44"/></dir><dir name="Review"><dir name="Fieldset"><file name="Hint.php" hash="d9906e111824893ef363926dd2b485eb"/></dir></dir><dir name="Wishlist"><dir name="Fieldset"><file name="Hint.php" hash="75a66f64700f02eebfa391f953bc42d0"/></dir></dir></dir></dir></dir><dir name="Backtostock"><file name="Notice.php" hash="30efc30519a1ecb31d39a5fe59a6ae90"/></dir><dir name="Customer"><dir name="Account"><file name="List.php" hash="755d6d07d113450617bc31e8bc039df0"/></dir></dir><dir name="Email"><dir name="Backtostock"><file name="Item.php" hash="178b97ceae8c488bf49cb44b6f5f5d11"/></dir><dir name="Related"><file name="Items.php" hash="831fda241af415c53d47274ecc395299"/></dir><dir name="Review"><file name="Items.php" hash="de3dd88f0a2399314c746b08cbe4ab82"/></dir><dir name="Wishlist"><file name="Items.php" hash="5c712e43bca1a83bf7592e082acca863"/></dir></dir><dir name="Review"><file name="Form.php" hash="cb10cbe1702bc6261874ed68eec47a00"/></dir><file name="Unsubscribe.php" hash="bb945f9a63f38ca0b6cdd2a0daed5416"/></dir><dir name="Helper"><file name="Data.php" hash="45eec5e986cf0997ff5f97f7148f0ec3"/></dir><dir name="Model"><dir name="Resource"><dir name="Backtostock"><file name="Collection.php" hash="95a70c48dce1bac7fcb86447bb899057"/></dir><dir name="Backtostockalert"><file name="Collection.php" hash="c0c5d87c559d2e4011697b1a0ccf4846"/></dir><dir name="Review"><file name="Collection.php" hash="098061d250555679c9f609d2087ef9d4"/></dir><dir name="Unsubscribe"><file name="Collection.php" hash="11048027437c0a5bc1478e4f2cdcc51d"/></dir><dir name="Visited"><file name="Collection.php" hash="b09c0ce08ac30cc30f974e5c744eabf1"/></dir><file name="Backtostock.php" hash="85c29c73ba30f2fdf819fc88f5e03098"/><file name="Backtostockalert.php" hash="148ae085ef93a7cf6e52cdd60f1ca9a2"/><file name="Review.php" hash="cf78994db6e262e42a589b6538a45a32"/><file name="Unsubscribe.php" hash="3b9e4d09dbb7ba483a5d16b6312050e6"/><file name="Visited.php" hash="55f2d0c1f90b41e852ecbf964925dc10"/></dir><dir name="System"><dir name="Config"><file name="Automatic.php" hash="4de4d5c373fa1ea373751cbd5ed7efbc"/><file name="Couponcounter.php" hash="18049531633e26b8970935e6b9c73823"/><file name="Customergroup.php" hash="aa31f980b1d28248f137fe2a06b3ba2c"/><file name="Discounttype.php" hash="1228055f8abc3bffba6020f4bb4210e0"/><file name="Generaltype.php" hash="463210c06e00794b79df38a61dfa56c2"/><file name="Hours.php" hash="db8c055c1fc0628f5fad84fc15c6d389"/><file name="Newordertrigger.php" hash="757bcc13562d4a5b905d57920906411f"/><file name="Time.php" hash="4b491667d8ea9816b07f584e84556556"/></dir></dir><file name="Backtostock.php" hash="fa62a4685c70474a2ce3da394e68c597"/><file name="Backtostockalert.php" hash="eabe65c559ee1d93bc8b67dc0bb32a40"/><file name="Config.php" hash="75a65035e240a5154b2037feceb4d864"/><file name="Cron.php" hash="c629466715e0dcad4d2ac64a27f36bcb"/><file name="EventObserver.php" hash="6fbdbe95331c9b4a15853b49d3984d6e"/><file name="Review.php" hash="c14806dfb106363262b9911e8d06f628"/><file name="Unsubscribe.php" hash="cb20baf948256b9b70a13ed52ab91bab"/><file name="Visited.php" hash="2e9f119fc630cefc50f5a2a21546ebfc"/></dir><dir name="controllers"><file name="AutoresponderController.php" hash="60f7a997438b80a76a7c5c08db8d11d5"/><file name="BacktostockController.php" hash="34b99cc172104773070d9d39cb290534"/></dir><dir name="etc"><file name="adminhtml.xml" hash="59a240f12b496566f1a2b1de5f053e96"/><file name="config.xml" hash="ae176e6d72c66cf82c568dac6da82505"/><file name="system.xml" hash="790c6d43450e7a251c19e09a78cf9d93"/></dir><dir name="sql"><dir name="ebizmarts_autoresponder_setup"><file name="mysql4-install-0.1.0.php" hash="d2152df00146562b30910ebe36c9b4e8"/><file name="mysql4-upgrade-0.1.3-0.1.4.php" hash="2ab92d2cf0f5fa7ccf7b61d9ab142a01"/><file name="mysql4-upgrade-0.1.4-0.1.5.php" hash="af5c814496fe07a20aac583cd68cb0b7"/><file name="mysql4-upgrade-0.1.5-0.1.6.php" hash="378accc07eb80b16029db84f56bed683"/><file name="mysql4-upgrade-0.1.9-0.1.10.php" hash="53cc6beed11e8631c11a008c5fd78ce1"/></dir></dir></dir><dir name="SweetMonkey"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Fieldset"><file name="Hint.php" hash="a1d28320ed21eaa6c20aa98c0b4e3492"/></dir><dir name="Form"><dir name="Field"><file name="Mapfields.php" hash="a0dfcfa3e1e22bdb33005a999cb0867b"/></dir></dir><file name="Autovars.php" hash="fc3ebb5ffe5344ef74a294547614c28f"/></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="83c32ef3e5433e701a10ef9cc5370d04"/></dir><dir name="Model"><file name="Cron.php" hash="5257a6a5f016ea353fcaeaabfdd9301c"/><file name="Observer.php" hash="cb0e1e7a66c042205c415c5029a3b071"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="MageMonkeyController.php" hash="f7d0e23ca908825800044a19ef68094a"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="8a81e6639cd53c96717a6b993d5fcd93"/><file name="config.xml" hash="53764df5e2f3b21a6e3901c4449d5e20"/><file name="system.xml" hash="93e8f26427a0df9183f6680441ce23f6"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Ebizmarts_MageMonkey.xml" hash="951aa15bc51345726e05080bd5fc084b"/><file name="Ebizmarts_Mandrill.xml" hash="ea4b352b5a0233330ecde76a0f9113dd"/><file name="Ebizmarts_AbandonedCart.xml" hash="48c4cfe8246d5a995e2836c43ab38d74"/><file name="Ebizmarts_Autoresponder.xml" hash="97302f94f5893147db18c4034d135256"/><file name="Ebizmarts_SweetMonkey.xml" hash="05d9393c17c76a589fd7681ed668d53f"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><dir name="ebizmarts"><file name="abandonedcart.xml" hash="14282d8f8739578d51c57def5df1227a"/><file name="autoresponder.xml" hash="d8dfb68cfd7c838cf29e9281a9a76c36"/></dir><file name="magemonkey.xml" hash="8eef43f9d728e252a5f7d7b6cea93a19"/></dir><dir name="template"><dir name="magemonkey"><dir name="checkout"><file name="subscribe.phtml" hash="d974501533c084c82bcbbc85a7fa4cbc"/></dir><file name="lists.phtml" hash="8562e11e1d5e60807e7d8d991b8d1fb1"/></dir><dir name="ebizmarts_abandonedcart"><dir name="email"><dir name="order"><dir name="items"><dir name="order"><file name="default.phtml" hash="c078d029b2065e8b1938c3cfb24e8219"/></dir></dir><file name="items.phtml" hash="7be104a21130974fd4aae1f8727d5e7d"/></dir></dir><dir name="popup"><file name="emailcatcher.phtml" hash="c827cbc181d2b98dfb3e15d4bdfa7376"/></dir></dir><dir name="ebizmarts"><dir name="autoresponder"><dir name="backtostock"><dir name="catalog"><dir name="product"><file name="form.phtml" hash="c04b1aaf96617c47d1530538f2f9f5e0"/><file name="notice.phtml" hash="ba7963278c9ed51066c736cdc0b73978"/></dir></dir><file name="item.phtml" hash="55f82ee9207c9e5a2d6fbd77ffc9921f"/></dir><dir name="customer"><file name="list.phtml" hash="21d2f116e2f509943175c43bc5863582"/></dir><dir name="related"><file name="items.phtml" hash="7de2510a4dcfc9627a0dc514360bf423"/></dir><dir name="review"><file name="items.phtml" hash="d409b68a2bc8cbe6779f11cc2784d022"/></dir><dir name="wishlist"><file name="items.phtml" hash="73a0cf8ee106d4cff7a77c9c4a69e363"/></dir><file name="unsubscribe.phtml" hash="ca8ed1c5810e07f1cdc91edb64420417"/></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><dir name="ebizmarts"><file name="mandrill.xml" hash="ba93e973a9019841c7d914ecd729983c"/><file name="abandonedcart.xml" hash="9ed91dab216911a13a2669bd81734180"/></dir><file name="magemonkey.xml" hash="4a2ba63a9d3002774b622e76339e6fbb"/></dir><dir name="template"><dir name="magemonkey"><dir name="system"><dir name="config"><dir name="fieldset"><file name="hint.phtml" hash="d5613b376031fd67f883d64cfc20eb50"/></dir><file name="oauth_wizard.phtml" hash="91b3472b4e9a5bc26851b76bfcea59c5"/><file name="resetlocal360.phtml" hash="ee9a0fa8f8b09323b9f0d7786f645c8f"/><file name="resetremote360.phtml" hash="2a67ad95f8ffabdc1e2d1e572c4118ae"/></dir></dir></dir><dir name="ebizmarts"><dir name="mandrill"><dir name="system"><dir name="config"><dir name="fieldset"><file name="hint.phtml" hash="ae30b23b623555f4945c56292f004003"/></dir></dir></dir></dir><dir name="abandonedcart"><dir name="dashboard"><file name="index.phtml" hash="31a02b6aa63614bb2a52044195568f15"/><file name="salebar.phtml" hash="7a8c978ff415853550f9b1a3cbabfd1c"/><file name="totalbar.phtml" hash="95cb90a952f5548481c180004e39b7f1"/></dir><dir name="system"><dir name="config"><dir name="fieldset"><file name="hint.phtml" hash="ba6ebe4bb4a1e8ed5c964fc17b381785"/></dir></dir></dir></dir><dir name="autoresponder"><dir name="system"><dir name="config"><dir name="backtostock"><dir name="fieldset"><file name="hint.phtml" hash="623380a9c486eae57da00de6bd8b843d"/></dir></dir><dir name="birthday"><dir name="fieldset"><file name="hint.phtml" hash="d7f944a685769a46cb709f89c6e56f3b"/></dir></dir><dir name="fieldset"><file name="hint.phtml" hash="4f33fe2e4d8f997b6adca212450e4d9b"/></dir><dir name="review"><dir name="fieldset"><file name="hint.phtml" hash="205b3fac2bc9682cdbdc9e3a8ec688df"/></dir></dir><dir name="wishlist"><dir name="fieldset"><file name="hint.phtml" hash="563ece5feca65f3ff728b89929cb2339"/></dir></dir></dir></dir></dir></dir><dir name="sweetmonkey"><dir name="system"><dir name="config"><dir name="fieldset"><file name="hint.phtml" hash="9d3cbc62ce5f2afc38f5c1936a29484c"/></dir><file name="autovars.phtml" hash="53da8402573546ecdcbe2f5e9b3ab57a"/></dir></dir></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><dir name="template"><dir name="email"><dir name="ebizmarts"><dir name="abandonedcart"><file name="abandoned_cart_mail_1.html" hash="36ceaf0e511ecb2c785fb482c634ed2c"/><file name="abandoned_cart_mail_2.html" hash="ab628f7bf4f82d44d8d9a5b39c838e00"/><file name="abandoned_cart_mail_3.html" hash="c46eef13c346494f26f2e01ff7de9de2"/><file name="abandoned_cart_mail_generic.html" hash="c87513fa9e7fc18035c9b4421c51478e"/><file name="popup_coupon_template.html" hash="7411805f6751997e3de8a4f11196c14e"/></dir><dir name="autoresponder"><file name="backtostock.html" hash="f909f0edf431e2da29281904612bd902"/><file name="birthday.html" hash="716502b8dd97b4b485264c18e7c75317"/><file name="neworder.html" hash="14db5244b8bb8e7b33ad32991ea8060f"/><file name="noactivity.html" hash="ca5ba93441cf80ccf0ea79aef039fc77"/><file name="relatedproducts.html" hash="9cd19f74d0c42967526d54a197453945"/><file name="review.html" hash="0d9d872e4a0d0290cea079ccec3658c5"/><file name="reviewcoupon.html" hash="925152cf7f223b6caf92f0a502233e03"/><file name="visitedproducts.html" hash="fc89e6fd3007ca57a6359553f389a656"/><file name="wishlist.html" hash="804468d3e1f758988c633d3b8eb547ea"/></dir></dir></dir></dir><file name="Ebizmarts_MageMonkey.csv" hash="181e91ed91dfea5fe7dab66af5719af8"/><file name="Ebizmarts_Mandrill.csv" hash="3dac3af57664fd34f5eda8abf4098ee0"/><file name="Ebizmarts_AbandonedCart.csv" hash="214bcd0e8cd6153c48fab236dcfdba1b"/><file name="Ebizmarts_Autoresponder.csv" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="Ebizmarts_SweetMonkey.csv" hash="f0cdb51ba2052ce7f7ec1c9885ee5d3c"/></dir><dir name="nl_NL"><dir name="template"><dir name="email"><dir name="ebizmarts"><dir name="abandonedcart"><file name="abandoned_cart_mail_1.html" hash="64df67da5c2759572c80c47677fc4244"/><file name="abandoned_cart_mail_2.html" hash="3e65ab1c4140408422b6fd7e190a2f4b"/><file name="abandoned_cart_mail_3.html" hash="de4cbef63748e20638017e04827d39b9"/><file name="abandoned_cart_mail_generic.html" hash="de90f1d4f52d4603e3c08ebd4c5aa4e5"/><file name="popup_coupon_template.html" hash="8059d68fce7783956033ff0cf27f2c0b"/></dir><dir name="autoresponder"><file name="backtostock.html" hash="d5feeeaaf9f7416dcfb072e1b39844fa"/><file name="birthday.html" hash="b7099ba5f0de5e8c7f56f1aca1ec8779"/><file name="neworder.html" hash="dd016910da8029a2b2266e9a82eac167"/><file name="noactivity.html" hash="6d3b63329f5d664a9f81b2aba55b5588"/><file name="relatedproducts.html" hash="5bb28d77374568fbab07519048edb301"/><file name="review.html" hash="a1116b4a34c72fb94d8945730096ed83"/><file name="reviewcoupon.html" hash="bdd27369d3e76d915489399d95a502fc"/><file name="visitedproducts.html" hash="74941796112fba1158707ab6bdf4b2d4"/><file name="wishlist.html" hash="e456275499caa1cc018d7da1da32d525"/></dir></dir></dir></dir><file name="Ebizmarts_MageMonkey.csv" hash="3e0b1485b10cf7c9f6f64437f870c7fe"/><file name="Ebizmarts_SweetMonkey.csv" hash="063c94afbaa6e2fbe2028580209bc09b"/><file name="Ebizmarts_AbandonedCart.csv" hash="099104a7a9492249c0e24909145abfa3"/></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="magemonkey"><file name="magemonkey.css" hash="2072357ef844855f7a4607245b1e9a17"/><file name="magemonkey.js" hash="1a515d6697d533ee012754dd20e60345"/><file name="mailchimp-connected-ebizmarts-title.png" hash="c6bcb1aa606ecd3b0a9753bb48ddeb58"/><file name="mailchimp-ico.png" hash="14978ec398cede4060bc9b00365bb6c5"/><file name="mailchimp-section-background.png" hash="d4536261c6a3534fbb855428c0cca62c"/><file name="mailchimp-tab.png" hash="61972b4e063364071e81d8c9e10d8feb"/></dir><dir name="abandonedcart"><file name="abandonedcart.css" hash="bd6049fa8b17a1060e8a63fa29aefd94"/></dir><dir name="ebizmarts"><dir name="mandrill"><file name="mandrill-tab.png" hash="d7eaf9deef355e4b8b55a96070b90ffe"/><file name="mandrill.css" hash="d93f1f52db38195a4f85d20de519151e"/></dir><file name="ebizmarts-tab.png" hash="6dfa08c5cd4329d1df6e7b71fb1f925a"/><file name="ebizmarts.css" hash="a579734639953c1970ec26f56dda5837"/></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="magemonkey"><file name="magemonkey.css" hash="8f25ca79fc6901215f713f0e048c4a9f"/><file name="monkey.js" hash="5984cd563aee48b7ba648066f733113a"/></dir></dir></dir></dir></target><target name="mage"><dir name="lib"><dir name="Mandrill"><dir name="Mandrill"><file name="Exceptions.php" hash="54d952267c004cddeedd8d9be07698c8"/><file name="Exports.php" hash="3ed368771a7174af0e01287e3a3e030f"/><file name="Inbound.php" hash="32378db89f2f47fe158577c256837896"/><file name="Internal.php" hash="fa680d47c780922a111078827cad1505"/><file name="Ips.php" hash="c70c08b34454d2e7aebc31101cfdca81"/><file name="Messages.php" hash="f1f3c20b6c872c72dcc33790d6a3adf4"/><file name="Metadata.php" hash="57820ae2032206334fb6e6d9b12f4df2"/><file name="Rejects.php" hash="f40f9ef016c338c6ae9d161c3112eea6"/><file name="Senders.php" hash="875ddbeff3f920397c73c2c2797f3eea"/><file name="Subaccounts.php" hash="9b6b61a8e0364c9f917952deffe0320c"/><file name="Tags.php" hash="ee2f9e328d4d49aa8b0289978f7375b0"/><file name="Templates.php" hash="9920cf5d10bdcb5416193435c425f123"/><file name="Urls.php" hash="184c17ebb031f1f6e6dad687a4bf767d"/><file name="Users.php" hash="826dac98663eefce2f5ccc4a5b0d38e9"/><file name="Webhooks.php" hash="37ea24a982630aa321444b85392f3397"/><file name="Whitelists.php" hash="d132144d50c3b713c98ad699984e4e38"/></dir><file name="Mandrill.php" hash="cb6620ee6d4767e9b4edb1d574fe5dbe"/><file name="Message.php" hash="784920e095d8d9f0269b46f00071fcc9"/></dir></dir><dir name="js"><dir name="ebizmarts"><dir name="abandonedcart"><file name="popup.css" hash="06b3fe11e77211382137fd4e34004919"/><file name="xmark.png" hash="6f14c834def36c1185347c49021030a4"/></dir><dir name="autoresponders"><file name="visitedproducts.js" hash="61ef8d19642d349a19a43d018888f205"/><file name="visitedproductsstorecodes.js" hash="2cea5956611572cae6140db11c6d4672"/></dir><dir name="magemonkey"><file name="campaignCatcher.js" hash="9f4c4fc34c221e593186f7acb70f64b2"/></dir></dir></dir></target></contents>
31
  <compatible/>
32
  <dependencies/>
33
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Ebizmarts_MageMonkey</name>
4
+ <version>1.2.0</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>MailChimp integration for Magento by Ebizmarts</summary>
10
  <description>Full MailChimp integration, automatic webhooks, multiple lists, interest groups</description>
11
+ <notes>1.2.0&#xD;
12
  --------&#xD;
13
+ Fixed multiple subscription confirmation message.&#xD;
14
+ Fixed problem with bulk sync export.&#xD;
15
+ Fixed issue when subscribing with Magento's email confirmation in stead of MailChimp's.&#xD;
16
+ Added compatibility with old One Step Checkout versions.&#xD;
17
+ Product description can now be put in html.&#xD;
18
+ Changed review Autoresponder to get the order with the created_at date instead of the updated_at.&#xD;
19
+ Changed popup coupon email name to be displayed on Emails Sent view.&#xD;
20
+ Fixed problem when subscribe on checkout disabled but MageMonkey subscribed anyways.&#xD;
21
+ Added store code to be sent to MailChimp by default&#xD;
22
+ Added confirmation email when subscription forced.&#xD;
23
+ Fixed problem on visited product table with new popup.&#xD;
24
+ Fixed problem when subscribing on checkout.&#xD;
25
+ Fixed finished status for export process.&#xD;
26
+ Added campaign title on Customer Information (Back end) tab MailChimp List Member Activity&#xD;
27
+ Added upgrade to allow custom blocks after new Magento patch.&#xD;
28
+ Changed the modules to be loaded after Magento's core.&#xD;
29
+ Popup is now responsive.&#xD;
30
+ Popup works depending on the store view.&#xD;
31
+ Fix for store id on popup table to send coupon for each store.</notes>
32
  <authors><author><name>Ebizmarts Development Team</name><user>auto-converted</user><email>info@ebizmarts.com</email></author></authors>
33
+ <date>2015-10-28</date>
34
+ <time>15:40:52</time>
35
+ <contents><target name="magecommunity"><dir name="Ebizmarts"><dir name="MageMonkey"><dir name="Block"><dir name="Adminhtml"><dir name="Bulksync"><dir name="Export"><file name="Form.php" hash="ae560b94bb9e440d660be69f5165b69f"/></dir><dir name="Import"><file name="Form.php" hash="0421281b9cfbc446329d7482c24c2c11"/></dir><dir name="Queue"><file name="Grid.php" hash="23b3edec3bc13fae8aee5b7292c4d4d1"/></dir><dir name="QueueExport"><file name="Grid.php" hash="68ec401dc23cddf8a1362c53aaab69b2"/></dir><dir name="QueueImport"><file name="Grid.php" hash="a695371e46328137d025b0fdf09944fe"/></dir><file name="Export.php" hash="62714f95580e489105914270b889a142"/><file name="Import.php" hash="d573582da25766aecba918d299c02586"/><file name="Queue.php" hash="c3cea1da02e0a09d7876958058ee091e"/><file name="QueueExport.php" hash="69536eee264346535f1c786d61b3cf84"/><file name="QueueImport.php" hash="d9fbc0d22f94df54f71116d0d484d1a3"/></dir><dir name="Customer"><dir name="Edit"><dir name="Tab"><file name="Memberactivity.php" hash="55fbb4519c6d862948dc4d8bf4416cfb"/></dir></dir></dir><dir name="Ecommerce"><file name="Grid.php" hash="b1ad37ffe9fe0752356d29a6548b0434"/></dir><dir name="Ecommerceapi"><dir name="Renderer"><file name="Items.php" hash="d72cfedf0cafc938becf9bd52801ba3a"/></dir><file name="Grid.php" hash="ee1be42cb6c893e3c59cac784df67fb3"/></dir><dir name="Memberactivity"><file name="Grid.php" hash="2753517318120344d1f7694a6b7a278d"/></dir><dir name="Newsletter"><dir name="Subscriber"><dir name="Renderer"><file name="Firstname.php" hash="e814d3ba07b32e851585363b29e37b3a"/><file name="Lastname.php" hash="9a8b007c2db6add0572cf4012b28f63e"/></dir></dir></dir><dir name="Renderer"><file name="Date.php" hash="6e4e52403ec55df3aa2183fd4b51b095"/><file name="Importypes.php" hash="87c7a222e403781fcd8ee08cf0b489ba"/><file name="Lists.php" hash="15f5b5e087b49396a6f844e0f1bfb6b1"/><file name="Progress.php" hash="31eaaa5a7e99b21a4ed705971fe1001d"/><file name="Yesno.php" hash="c3173a8e8ea2d5f03531e7d996bbd259"/></dir><dir name="System"><dir name="Config"><dir name="Fieldset"><file name="Hint.php" hash="31bf492c4e6137312c55bc437bf226cf"/></dir><dir name="Form"><dir name="Field"><file name="Mapfields.php" hash="8f2a10ca1a1d239b3b231ca2cee5f96e"/></dir></dir><file name="Account.php" hash="fccf1faac2682d754655631e6451c026"/><file name="Date.php" hash="455120f4f2e8d7801f3c220e231b6789"/><file name="OauthWizard.php" hash="bd79f8b43d71137337e732fbeb415ffb"/><file name="ResetLocalEcommerce.php" hash="493126ac056c3585ed2d3020d62c76e1"/><file name="ResetRemoteEcommerce.php" hash="40d54bb2d6e7dd7bf3a91c9346f988bf"/></dir></dir><file name="Ecommerce.php" hash="48c237e8cc1223ad26a88d2409679fec"/><file name="Ecommerceapi.php" hash="a9f659502d96bcd1a69a88d15fcab4f9"/></dir><dir name="Checkout"><file name="Subscribe.php" hash="14de0075005dafe3363716e3ffd10d20"/></dir><dir name="Customer"><dir name="Account"><file name="Lists.php" hash="64f0e5a8360750f6b19d8b5db0fcac23"/></dir></dir><file name="Lists.php" hash="1e92aea24b1a59b7d7ae7c264a18c96c"/><file name="Signup.php" hash="93b0e787e63a90a5fb4bacba1e03bd05"/></dir><dir name="Helper"><file name="Cache.php" hash="4e6cd9724c2788056aacacd37f5699cc"/><file name="Data.php" hash="d9d65684cbbe959b45db17ddb4d82403"/><file name="Export.php" hash="91f24805e9cbbe124f0c99cb8f1f1272"/><file name="Oauth2.php" hash="684a7b71d97b438081ebf332057ec8ea"/></dir><dir name="Model"><dir name="Custom"><file name="Collection.php" hash="304d372c1b8bd8d8d09dd743e03cdf66"/></dir><dir name="Email"><file name="Template.php" hash="81c9f040cf931dfb9e2a2484d9cc0b09"/></dir><dir name="Feed"><file name="Updates.php" hash="d6401edef548f125f238ae7d80a458fe"/></dir><dir name="Mysql4"><dir name="Apidebug"><file name="Collection.php" hash="7cc3fe74a46da1a4770b49eb7ac47f97"/></dir><dir name="Asyncorders"><file name="Collection.php" hash="e7b17fac028f7116c762e120b0f3f0a8"/></dir><dir name="Asyncsubscribers"><file name="Collection.php" hash="3458134c9a1ced7359db40f7b79a133f"/></dir><dir name="Bulksync"><dir name="Export"><file name="Collection.php" hash="ac64bc652233136189c504f678062374"/></dir><dir name="Import"><file name="Collection.php" hash="6cb3e09a817488f9bfa50f877a5c2b0b"/></dir><file name="Export.php" hash="eedc5a3549b3815f0d290eca3e0579df"/><file name="Import.php" hash="487fc6c0335ebf352081185d9afe3f88"/></dir><dir name="Ecommerce"><file name="Collection.php" hash="80319b6c991c510f1569800c80d384f1"/></dir><dir name="Lastorder"><file name="Collection.php" hash="38d6a7519cfe21caf7f5d22877aa1477"/></dir><file name="Apidebug.php" hash="2699eec825e8fb88b1d572728c10b7bc"/><file name="Asyncorders.php" hash="3eb64d883705854ce7899fd891101c63"/><file name="Asyncsubscribers.php" hash="a067c1e951ce61558e00f3aa8e5d15ef"/><file name="Ecommerce.php" hash="b3290a6170c8c8f275dcd4300840ea26"/><file name="Lastorder.php" hash="f3987329cb78c978bcc94ba375d9f998"/></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="Account.php" hash="5bbf12b572234101af3e753ba74bcd41"/><file name="Attributes.php" hash="4ac1c98f3b3b84b2c93ddfcc3df5d817"/><file name="BulksyncDatasource.php" hash="36331ac3ecd034f914666a49e4d75cbc"/><file name="BulksyncStatus.php" hash="658f1f9d1ee7177d5dc094862bce155a"/><file name="Checkoutsubscribe.php" hash="28c8641a8fa4c336487af2227e152136"/><file name="CronProcessLimit.php" hash="3ca3a61f07b7aa84479eddda35efdde4"/><file name="CustomerGroup.php" hash="299b8514de098e02efe5393ebe7bdf65"/><file name="Ecommerce360.php" hash="24906da389cbf6b4a97c3edab5c7f020"/><file name="List.php" hash="bd9ef222e15d69b5c5038a98723d18c6"/><file name="OrderProcessLimit.php" hash="bc3add48e125caa904774cb6b669ba0c"/><file name="OrderStatus.php" hash="d3eeeee5d614e8fa83e258ce53cbed79"/><file name="Status.php" hash="e1e5cf6252241f39d0ceaff6f94d3afb"/><file name="TransactionalEmails.php" hash="b2f0d564a59372cba59d3aac7e4fe9e0"/><file name="WebhookDelete.php" hash="c90bbf8b0cf2a546c0f72193f8c605cf"/></dir></dir></dir><file name="Api.php" hash="ea7c720767bc58cb740d2f70100f699b"/><file name="Asyncorders.php" hash="3f60d1a1c1885268ae7e2ddfb1772feb"/><file name="Asyncsubscribers.php" hash="b79a42df357267205d7e74bb7c220755"/><file name="BulksyncExport.php" hash="71af9a6134b415a324dc9c937a5b2f8e"/><file name="BulksyncImport.php" hash="fb3716e235bc22cf91c4c17edf10ec23"/><file name="Cache.php" hash="89ac2fac903a566e6f6a3c0951bf274d"/><file name="Config.php" hash="276026d2d6ac8af349b7f2f82dc17668"/><file name="Cron.php" hash="e2e724c016b3521a8d690f8bbab6e4e3"/><file name="Ecommerce.php" hash="f4581befe128963df3e3d062b1bc4d55"/><file name="Ecommerce360.php" hash="b2571e3e8e619360ed6f3fc9b8a67435"/><file name="Lastorder.php" hash="f2977e76892b0b1a5e031f8eabf93f18"/><file name="MCAPI.php" hash="c86a58e5a40b709aefecd05c813ee7be"/><file name="MCEXPORTAPI.php" hash="810b1c7b0f6daf93e11c7fbbc90980a3"/><file name="Monkey.php" hash="f04b642b018553eeca9f7d1a84d143f1"/><file name="Observer.php" hash="1135a6b0b31f6c74bb618a9c5e604232"/><file name="Subscriber.php" hash="26903cf8899d9cf1d2a0548d2a01a287"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="BulksyncController.php" hash="eca2f78696482b5422294a8b7ce1e1d5"/><file name="ConfigController.php" hash="6a307ba4b4a39991392935dd368ba1f8"/><file name="EcommerceController.php" hash="36cb709dd0eaf0592b4f5d8cf54f272d"/></dir><dir name="Customer"><file name="AccountController.php" hash="14479dffeacd3c2421ce5822f7d7f190"/></dir><file name="SignupController.php" hash="e379f52f8ee0191a4c7289cd2afcd19d"/><file name="WebhookController.php" hash="319878266b5463d5d8591b6a4fb5e096"/></dir><dir name="etc"><file name="adminhtml.xml" hash="2ca3d47af5d16f1d5e0efb71346d3fe4"/><file name="config.xml" hash="84bbf8ada143091664de829e792d7270"/><file name="system.xml" hash="9dd307a54fc966aade4676055e36f5b6"/></dir><dir name="sql"><dir name="monkey_setup"><file name="mysql4-install-0.0.1.php" hash="4df34769f4d5a8ceca90fd582500e3a9"/><file name="mysql4-upgrade-0.0.1-0.0.2.php" hash="d81147dab407bc55c59cddb5a764c53e"/><file name="mysql4-upgrade-0.0.2-0.0.3.php" hash="ce1925ff2ab03aa9fd6cbe43283ea37d"/><file name="mysql4-upgrade-0.0.3-0.0.4.php" hash="7f1e38bcf030e6346a9fd8321f1a4362"/><file name="mysql4-upgrade-0.0.4-0.0.5.php" hash="bbe6b895320effca77cc2c23431f043f"/><file name="mysql4-upgrade-0.0.5-0.0.6.php" hash="98b72d9ef4ec8078c09a1f641fc35a39"/><file name="mysql4-upgrade-0.0.6-0.0.7.php" hash="ea15755fc072e7c82b78063589360779"/><file name="mysql4-upgrade-1.0.10-1.0.11.php" hash="b2ec497921eb2bd9a97a318554fd980b"/><file name="mysql4-upgrade-1.1.21-1.1.22.php" hash="738e3d3e33c1a3a02bb101b89743cc5c"/><file name="mysql4-upgrade-1.1.23-1.1.24.php" hash="5a1bfdc8014edbc8b8c728954405a9f5"/><file name="mysql4-upgrade-1.1.33-1.1.34.php" hash="68f74c77460e76ea6153ebc823d49990"/><file name="mysql4-upgrade-1.1.5-1.1.6.php" hash="14750274ece5816d6c1ab490f7d610ab"/></dir></dir></dir><dir name="Mandrill"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Fieldset"><file name="Hint.php" hash="6ca5fb9bf9254323e1f2b4447203b562"/></dir><file name="Userinfo.php" hash="7cd34efc0231424c9e2f5e662154c41c"/></dir></dir><dir name="Templates"><dir name="Templates"><file name="Grid.php" hash="1ecdb6b04fbd16043de908f261353b8d"/></dir><file name="Templates.php" hash="1682fe6d39605a9839bf3cdb3c1185b7"/></dir><dir name="Users"><dir name="Senders"><file name="Grid.php" hash="292097a493de241540d3e3aea463241f"/></dir><file name="Senders.php" hash="4a4449652c495a9d4c12966ab007e7a4"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="86fcaa6a66a5a628ded7215172448daf"/></dir><dir name="Model"><dir name="Email"><file name="Template.php" hash="7a387e01c007e5bbca225dd8f3e1f2d5"/></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="Userinfo.php" hash="12a9c9c27c985efd021a4e6c7fdfcf5e"/></dir></dir><file name="Config.php" hash="2219d951bf6b2553ec0284b65d8d92a2"/></dir><file name="Customcollection.php" hash="9b5766c0393a54b4356254725b4d78b2"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Mandrill"><file name="UsersController.php" hash="82f6e810f51b12b65d009bdeaded95e8"/></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="8ea87cce062596388f7e9507943e8bb5"/><file name="config.xml" hash="665cd0d4711816875ba91c1df15250ed"/><file name="system.xml" hash="d05b90ca129297b6ffda52a4ba1fd26a"/></dir></dir><dir name="AbandonedCart"><dir name="Block"><dir name="Adminhtml"><dir name="Abandonedmails"><file name="Grid.php" hash="f2813a7ec47e20b78874a0dbb1461b3e"/></dir><dir name="Abandonedorder"><file name="Grid.php" hash="5ab9e3884d3306d78e78133f09e22614"/></dir><dir name="Dashboard"><file name="Sales.php" hash="b0d6fce3a5f4ef5a891c8578eb36ef97"/><file name="Totals.php" hash="4cd3c1e0d8d357c79ec6e7a2ed98c6a0"/></dir><dir name="System"><dir name="Config"><dir name="Fieldset"><file name="Hint.php" hash="6358bc58857011c08dedcbab885b461f"/></dir><file name="Date.php" hash="323a49af281f06dfa72c1d3512257e04"/></dir></dir><file name="Abandonedmails.php" hash="c2714b5a6cb534c91564ebc340fe3f26"/><file name="Abandonedorder.php" hash="1a14da87647612a8773f34f70bc05dea"/><file name="Dashboard.php" hash="c27d5ec29455176fff7e2fac86fcce21"/></dir><dir name="Email"><dir name="Order"><file name="Items.php" hash="5c4be14f72d2cfe0a25058246d016d25"/></dir></dir><dir name="Popup"><file name="Emailcatcher.php" hash="e9605eaf417f12ac10bfe5676ce17eca"/></dir></dir><dir name="Helper"><file name="Data.php" hash="7395f6fc74f1851de4de9e962964f2d4"/></dir><dir name="Model"><dir name="Resource"><dir name="Abtesting"><file name="Collection.php" hash="f96fe4be550bef6daabc5d211c86aca0"/></dir><dir name="Mailssent"><file name="Collection.php" hash="dc1e2c44eb53381d57d10a6bc08ad497"/></dir><dir name="Order"><file name="Collection.php" hash="a079410c43e1afbb428b7163d1537482"/></dir><dir name="Popup"><file name="Collection.php" hash="af37502f9802c7574318ab28a8fb1b16"/></dir><file name="Abtesting.php" hash="46e70f8507676e157ddec44f66094e59"/><file name="Mailssent.php" hash="80f0b4e3f29d10951362f07eb45a3ece"/><file name="Popup.php" hash="446921e9b1da1973c83665e8f749bbbb"/></dir><dir name="System"><dir name="Config"><file name="Automatic.php" hash="a4f5e052810187fb824933e76ea8a1cf"/><file name="Cmspage.php" hash="89bfcbe90a7b2f396a56b3f1fe72dbd2"/><file name="Customergroup.php" hash="74af027c3fb6745d0e45938f83394489"/><file name="Discounttype.php" hash="55c251fafbd10821d6c18c381c307888"/><file name="Maxemails.php" hash="63b860ace056552d159ada056eebfbd7"/><file name="Unit.php" hash="07fa0c25182538e08479cc4f91c7ca16"/><file name="Yesnovariation.php" hash="d24e4bf79afe73e85422c53835de0012"/></dir></dir><file name="Abtesting.php" hash="fdf9df78b6656c898fd74fbcb3ec51e1"/><file name="Config.php" hash="3571e63f143d9b49a272da02b0a48f84"/><file name="Cron.php" hash="562046cdce3b931a9f77c6fe90264fd0"/><file name="EventObserver.php" hash="717246fa2ef5b4e13a4eb36e23ac78e5"/><file name="Mailssent.php" hash="e238f4116cb473cdcfb3a909d08adaa4"/><file name="Popup.php" hash="d2a4922acc0c5c3994cbc0b2114658b8"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="AbandonedmailsController.php" hash="060e46a386be3365ae23722c951de848"/><file name="AbandonedorderController.php" hash="3b74880847f1e33d06043eb673b6c39a"/></dir><file name="AbandonedController.php" hash="70aa47c1c680760e849e8fc032bfab08"/></dir><dir name="etc"><file name="adminhtml.xml" hash="62708e88154b231e694210cca0aa6c97"/><file name="config.xml" hash="9085224df1c354e2d5cf55bac87c4928"/><file name="system.xml" hash="0add7faf564acd7e1129836e6af6ca3f"/></dir><dir name="sql"><dir name="ebizmarts_abandonedcart_setup"><file name="mysql4-install-0.1.0.php" hash="0e1a8c0391654c480773b78a50db5a83"/><file name="mysql4-upgrade-0.1.12-0.1.13.php" hash="4835436b744f8cbff61a66c2e345976f"/><file name="mysql4-upgrade-0.1.18-0.1.19.php" hash="e51b332cb70c81ee472b586fda4e8a7e"/><file name="mysql4-upgrade-0.1.2-0.1.3.php" hash="2e87d09a5008ac2f2432a25e08474c87"/><file name="mysql4-upgrade-0.1.20-0.1.21.php" hash="c461ba10961b4ee4e9385173d4264617"/><file name="mysql4-upgrade-0.1.29-0.1.30.php" hash="e9fdf4551cf19b488ed68ca0dd55ab67"/><file name="mysql4-upgrade-0.1.30-0.1.31.php" hash="2889ca071f7b974f2cd85a6b9405e541"/><file name="mysql4-upgrade-0.1.6-0.1.7.php" hash="60daa0d70a1af929a39d6e20ee52ee9c"/><file name="mysql4-upgrade-1.1.35-1.2.0.php" hash="435ee27890cfc2ee135098148ccc6635"/></dir></dir></dir><dir name="Autoresponder"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Backtostock"><dir name="Fieldset"><file name="Hint.php" hash="196c96e0bdfb853c42510d8cef4bf69a"/></dir></dir><dir name="Birthday"><dir name="Fieldset"><file name="Hint.php" hash="bff790a4ecf1f7ed7ac5d966cb8d516f"/></dir></dir><dir name="Fieldset"><file name="Hint.php" hash="eea231bb3f99b0f3708c2d43144e0f44"/></dir><dir name="Review"><dir name="Fieldset"><file name="Hint.php" hash="d9906e111824893ef363926dd2b485eb"/></dir></dir><dir name="Wishlist"><dir name="Fieldset"><file name="Hint.php" hash="75a66f64700f02eebfa391f953bc42d0"/></dir></dir></dir></dir></dir><dir name="Backtostock"><file name="Notice.php" hash="30efc30519a1ecb31d39a5fe59a6ae90"/></dir><dir name="Customer"><dir name="Account"><file name="List.php" hash="755d6d07d113450617bc31e8bc039df0"/></dir></dir><dir name="Email"><dir name="Backtostock"><file name="Item.php" hash="178b97ceae8c488bf49cb44b6f5f5d11"/></dir><dir name="Related"><file name="Items.php" hash="831fda241af415c53d47274ecc395299"/></dir><dir name="Review"><file name="Items.php" hash="de3dd88f0a2399314c746b08cbe4ab82"/></dir><dir name="Wishlist"><file name="Items.php" hash="5c712e43bca1a83bf7592e082acca863"/></dir></dir><dir name="Review"><file name="Form.php" hash="cb10cbe1702bc6261874ed68eec47a00"/></dir><file name="Unsubscribe.php" hash="bb945f9a63f38ca0b6cdd2a0daed5416"/></dir><dir name="Helper"><file name="Data.php" hash="45eec5e986cf0997ff5f97f7148f0ec3"/></dir><dir name="Model"><dir name="Resource"><dir name="Backtostock"><file name="Collection.php" hash="95a70c48dce1bac7fcb86447bb899057"/></dir><dir name="Backtostockalert"><file name="Collection.php" hash="c0c5d87c559d2e4011697b1a0ccf4846"/></dir><dir name="Review"><file name="Collection.php" hash="098061d250555679c9f609d2087ef9d4"/></dir><dir name="Unsubscribe"><file name="Collection.php" hash="11048027437c0a5bc1478e4f2cdcc51d"/></dir><dir name="Visited"><file name="Collection.php" hash="b09c0ce08ac30cc30f974e5c744eabf1"/></dir><file name="Backtostock.php" hash="85c29c73ba30f2fdf819fc88f5e03098"/><file name="Backtostockalert.php" hash="148ae085ef93a7cf6e52cdd60f1ca9a2"/><file name="Review.php" hash="cf78994db6e262e42a589b6538a45a32"/><file name="Unsubscribe.php" hash="3b9e4d09dbb7ba483a5d16b6312050e6"/><file name="Visited.php" hash="55f2d0c1f90b41e852ecbf964925dc10"/></dir><dir name="System"><dir name="Config"><file name="Automatic.php" hash="4de4d5c373fa1ea373751cbd5ed7efbc"/><file name="Couponcounter.php" hash="18049531633e26b8970935e6b9c73823"/><file name="Customergroup.php" hash="aa31f980b1d28248f137fe2a06b3ba2c"/><file name="Discounttype.php" hash="1228055f8abc3bffba6020f4bb4210e0"/><file name="Generaltype.php" hash="463210c06e00794b79df38a61dfa56c2"/><file name="Hours.php" hash="db8c055c1fc0628f5fad84fc15c6d389"/><file name="Newordertrigger.php" hash="757bcc13562d4a5b905d57920906411f"/><file name="Time.php" hash="4b491667d8ea9816b07f584e84556556"/></dir></dir><file name="Backtostock.php" hash="fa62a4685c70474a2ce3da394e68c597"/><file name="Backtostockalert.php" hash="eabe65c559ee1d93bc8b67dc0bb32a40"/><file name="Config.php" hash="75a65035e240a5154b2037feceb4d864"/><file name="Cron.php" hash="cfd5d4e21dce1cacb6344065494cb09e"/><file name="EventObserver.php" hash="6fbdbe95331c9b4a15853b49d3984d6e"/><file name="Review.php" hash="c14806dfb106363262b9911e8d06f628"/><file name="Unsubscribe.php" hash="cb20baf948256b9b70a13ed52ab91bab"/><file name="Visited.php" hash="2e9f119fc630cefc50f5a2a21546ebfc"/></dir><dir name="controllers"><file name="AutoresponderController.php" hash="bd9c5001c6438f5b76e53371f6149798"/><file name="BacktostockController.php" hash="34b99cc172104773070d9d39cb290534"/></dir><dir name="etc"><file name="adminhtml.xml" hash="59a240f12b496566f1a2b1de5f053e96"/><file name="config.xml" hash="057bfa4b4259e87958dd1758c18a6381"/><file name="system.xml" hash="790c6d43450e7a251c19e09a78cf9d93"/></dir><dir name="sql"><dir name="ebizmarts_autoresponder_setup"><file name="mysql4-install-0.1.0.php" hash="d2152df00146562b30910ebe36c9b4e8"/><file name="mysql4-upgrade-0.1.3-0.1.4.php" hash="2ab92d2cf0f5fa7ccf7b61d9ab142a01"/><file name="mysql4-upgrade-0.1.4-0.1.5.php" hash="af5c814496fe07a20aac583cd68cb0b7"/><file name="mysql4-upgrade-0.1.5-0.1.6.php" hash="378accc07eb80b16029db84f56bed683"/><file name="mysql4-upgrade-0.1.9-0.1.10.php" hash="53cc6beed11e8631c11a008c5fd78ce1"/><file name="mysql4-upgrade-1.1.14-1.2.0.php" hash="e81b473674590c747a05eb3665d6b18e"/></dir></dir></dir><dir name="SweetMonkey"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Fieldset"><file name="Hint.php" hash="a1d28320ed21eaa6c20aa98c0b4e3492"/></dir><dir name="Form"><dir name="Field"><file name="Mapfields.php" hash="a0dfcfa3e1e22bdb33005a999cb0867b"/></dir></dir><file name="Autovars.php" hash="fc3ebb5ffe5344ef74a294547614c28f"/></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="83c32ef3e5433e701a10ef9cc5370d04"/></dir><dir name="Model"><file name="Observer.php" hash="d293aae1eae63f787b78d310d3364e79"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="MageMonkeyController.php" hash="f7d0e23ca908825800044a19ef68094a"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="8a81e6639cd53c96717a6b993d5fcd93"/><file name="config.xml" hash="0550e8de5d4215aeb945d06514ae6959"/><file name="system.xml" hash="93e8f26427a0df9183f6680441ce23f6"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Ebizmarts_MageMonkey.xml" hash="951aa15bc51345726e05080bd5fc084b"/><file name="Ebizmarts_Mandrill.xml" hash="ea4b352b5a0233330ecde76a0f9113dd"/><file name="Ebizmarts_AbandonedCart.xml" hash="48c4cfe8246d5a995e2836c43ab38d74"/><file name="Ebizmarts_Autoresponder.xml" hash="97302f94f5893147db18c4034d135256"/><file name="Ebizmarts_SweetMonkey.xml" hash="05d9393c17c76a589fd7681ed668d53f"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><dir name="ebizmarts"><file name="abandonedcart.xml" hash="14282d8f8739578d51c57def5df1227a"/><file name="autoresponder.xml" hash="d8dfb68cfd7c838cf29e9281a9a76c36"/></dir><file name="magemonkey.xml" hash="8eef43f9d728e252a5f7d7b6cea93a19"/></dir><dir name="template"><dir name="magemonkey"><dir name="checkout"><file name="subscribe.phtml" hash="d974501533c084c82bcbbc85a7fa4cbc"/></dir><file name="lists.phtml" hash="8562e11e1d5e60807e7d8d991b8d1fb1"/></dir><dir name="ebizmarts_abandonedcart"><dir name="email"><dir name="order"><dir name="items"><dir name="order"><file name="default.phtml" hash="c078d029b2065e8b1938c3cfb24e8219"/></dir></dir><file name="items.phtml" hash="7be104a21130974fd4aae1f8727d5e7d"/></dir></dir><dir name="popup"><file name="emailcatcher.phtml" hash="a79344eea2b900a96a3396b0fb5e25cf"/></dir></dir><dir name="ebizmarts"><dir name="autoresponder"><dir name="backtostock"><dir name="catalog"><dir name="product"><file name="form.phtml" hash="c04b1aaf96617c47d1530538f2f9f5e0"/><file name="notice.phtml" hash="ba7963278c9ed51066c736cdc0b73978"/></dir></dir><file name="item.phtml" hash="9ff57a2867309f380525ad671a753f9e"/></dir><dir name="customer"><file name="list.phtml" hash="21d2f116e2f509943175c43bc5863582"/></dir><dir name="related"><file name="items.phtml" hash="b2a04397a22c9cdd421fe04b4c107dd7"/></dir><dir name="review"><file name="items.phtml" hash="3fd942bafbb36bff0010eaf73b77caf8"/></dir><dir name="wishlist"><file name="items.phtml" hash="1e65bee4638cb557503b36e3224b853c"/></dir><file name="unsubscribe.phtml" hash="ca8ed1c5810e07f1cdc91edb64420417"/></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><dir name="ebizmarts"><file name="mandrill.xml" hash="ba93e973a9019841c7d914ecd729983c"/><file name="abandonedcart.xml" hash="9ed91dab216911a13a2669bd81734180"/></dir><file name="magemonkey.xml" hash="4a2ba63a9d3002774b622e76339e6fbb"/></dir><dir name="template"><dir name="magemonkey"><dir name="system"><dir name="config"><dir name="fieldset"><file name="hint.phtml" hash="d5613b376031fd67f883d64cfc20eb50"/></dir><file name="oauth_wizard.phtml" hash="91b3472b4e9a5bc26851b76bfcea59c5"/><file name="resetlocal360.phtml" hash="ee9a0fa8f8b09323b9f0d7786f645c8f"/><file name="resetremote360.phtml" hash="2a67ad95f8ffabdc1e2d1e572c4118ae"/></dir></dir></dir><dir name="ebizmarts"><dir name="mandrill"><dir name="system"><dir name="config"><dir name="fieldset"><file name="hint.phtml" hash="ae30b23b623555f4945c56292f004003"/></dir></dir></dir></dir><dir name="abandonedcart"><dir name="dashboard"><file name="index.phtml" hash="31a02b6aa63614bb2a52044195568f15"/><file name="salebar.phtml" hash="7a8c978ff415853550f9b1a3cbabfd1c"/><file name="totalbar.phtml" hash="95cb90a952f5548481c180004e39b7f1"/></dir><dir name="system"><dir name="config"><dir name="fieldset"><file name="hint.phtml" hash="ba6ebe4bb4a1e8ed5c964fc17b381785"/></dir></dir></dir></dir><dir name="autoresponder"><dir name="system"><dir name="config"><dir name="backtostock"><dir name="fieldset"><file name="hint.phtml" hash="623380a9c486eae57da00de6bd8b843d"/></dir></dir><dir name="birthday"><dir name="fieldset"><file name="hint.phtml" hash="d7f944a685769a46cb709f89c6e56f3b"/></dir></dir><dir name="fieldset"><file name="hint.phtml" hash="4f33fe2e4d8f997b6adca212450e4d9b"/></dir><dir name="review"><dir name="fieldset"><file name="hint.phtml" hash="205b3fac2bc9682cdbdc9e3a8ec688df"/></dir></dir><dir name="wishlist"><dir name="fieldset"><file name="hint.phtml" hash="563ece5feca65f3ff728b89929cb2339"/></dir></dir></dir></dir></dir></dir><dir name="sweetmonkey"><dir name="system"><dir name="config"><dir name="fieldset"><file name="hint.phtml" hash="9d3cbc62ce5f2afc38f5c1936a29484c"/></dir><file name="autovars.phtml" hash="53da8402573546ecdcbe2f5e9b3ab57a"/></dir></dir></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><dir name="template"><dir name="email"><dir name="ebizmarts"><dir name="abandonedcart"><file name="abandoned_cart_mail_1.html" hash="36ceaf0e511ecb2c785fb482c634ed2c"/><file name="abandoned_cart_mail_2.html" hash="ab628f7bf4f82d44d8d9a5b39c838e00"/><file name="abandoned_cart_mail_3.html" hash="c46eef13c346494f26f2e01ff7de9de2"/><file name="abandoned_cart_mail_generic.html" hash="c87513fa9e7fc18035c9b4421c51478e"/><file name="popup_coupon_template.html" hash="7411805f6751997e3de8a4f11196c14e"/></dir><dir name="autoresponder"><file name="backtostock.html" hash="f909f0edf431e2da29281904612bd902"/><file name="birthday.html" hash="716502b8dd97b4b485264c18e7c75317"/><file name="neworder.html" hash="14db5244b8bb8e7b33ad32991ea8060f"/><file name="noactivity.html" hash="ca5ba93441cf80ccf0ea79aef039fc77"/><file name="relatedproducts.html" hash="9cd19f74d0c42967526d54a197453945"/><file name="review.html" hash="0d9d872e4a0d0290cea079ccec3658c5"/><file name="reviewcoupon.html" hash="925152cf7f223b6caf92f0a502233e03"/><file name="visitedproducts.html" hash="fc89e6fd3007ca57a6359553f389a656"/><file name="wishlist.html" hash="804468d3e1f758988c633d3b8eb547ea"/></dir></dir></dir></dir><file name="Ebizmarts_MageMonkey.csv" hash="181e91ed91dfea5fe7dab66af5719af8"/><file name="Ebizmarts_Mandrill.csv" hash="3dac3af57664fd34f5eda8abf4098ee0"/><file name="Ebizmarts_AbandonedCart.csv" hash="214bcd0e8cd6153c48fab236dcfdba1b"/><file name="Ebizmarts_Autoresponder.csv" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="Ebizmarts_SweetMonkey.csv" hash="f0cdb51ba2052ce7f7ec1c9885ee5d3c"/></dir><dir name="nl_NL"><dir name="template"><dir name="email"><dir name="ebizmarts"><dir name="abandonedcart"><file name="abandoned_cart_mail_1.html" hash="64df67da5c2759572c80c47677fc4244"/><file name="abandoned_cart_mail_2.html" hash="3e65ab1c4140408422b6fd7e190a2f4b"/><file name="abandoned_cart_mail_3.html" hash="de4cbef63748e20638017e04827d39b9"/><file name="abandoned_cart_mail_generic.html" hash="de90f1d4f52d4603e3c08ebd4c5aa4e5"/><file name="popup_coupon_template.html" hash="8059d68fce7783956033ff0cf27f2c0b"/></dir><dir name="autoresponder"><file name="backtostock.html" hash="d5feeeaaf9f7416dcfb072e1b39844fa"/><file name="birthday.html" hash="b7099ba5f0de5e8c7f56f1aca1ec8779"/><file name="neworder.html" hash="dd016910da8029a2b2266e9a82eac167"/><file name="noactivity.html" hash="6d3b63329f5d664a9f81b2aba55b5588"/><file name="relatedproducts.html" hash="5bb28d77374568fbab07519048edb301"/><file name="review.html" hash="a1116b4a34c72fb94d8945730096ed83"/><file name="reviewcoupon.html" hash="bdd27369d3e76d915489399d95a502fc"/><file name="visitedproducts.html" hash="74941796112fba1158707ab6bdf4b2d4"/><file name="wishlist.html" hash="e456275499caa1cc018d7da1da32d525"/></dir></dir></dir></dir><file name="Ebizmarts_MageMonkey.csv" hash="3e0b1485b10cf7c9f6f64437f870c7fe"/><file name="Ebizmarts_SweetMonkey.csv" hash="063c94afbaa6e2fbe2028580209bc09b"/><file name="Ebizmarts_AbandonedCart.csv" hash="099104a7a9492249c0e24909145abfa3"/></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="magemonkey"><file name="magemonkey.css" hash="2072357ef844855f7a4607245b1e9a17"/><file name="magemonkey.js" hash="1a515d6697d533ee012754dd20e60345"/><file name="mailchimp-connected-ebizmarts-title.png" hash="c6bcb1aa606ecd3b0a9753bb48ddeb58"/><file name="mailchimp-ico.png" hash="14978ec398cede4060bc9b00365bb6c5"/><file name="mailchimp-section-background.png" hash="d4536261c6a3534fbb855428c0cca62c"/><file name="mailchimp-tab.png" hash="61972b4e063364071e81d8c9e10d8feb"/></dir><dir name="abandonedcart"><file name="abandonedcart.css" hash="bd6049fa8b17a1060e8a63fa29aefd94"/></dir><dir name="ebizmarts"><dir name="mandrill"><file name="mandrill-tab.png" hash="d7eaf9deef355e4b8b55a96070b90ffe"/><file name="mandrill.css" hash="d93f1f52db38195a4f85d20de519151e"/></dir><file name="ebizmarts-tab.png" hash="6dfa08c5cd4329d1df6e7b71fb1f925a"/><file name="ebizmarts.css" hash="a579734639953c1970ec26f56dda5837"/></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="magemonkey"><file name="magemonkey.css" hash="8f25ca79fc6901215f713f0e048c4a9f"/><file name="monkey.js" hash="5984cd563aee48b7ba648066f733113a"/></dir></dir></dir></dir></target><target name="mage"><dir name="lib"><dir name="Mandrill"><dir name="Mandrill"><file name="Exceptions.php" hash="54d952267c004cddeedd8d9be07698c8"/><file name="Exports.php" hash="3ed368771a7174af0e01287e3a3e030f"/><file name="Inbound.php" hash="32378db89f2f47fe158577c256837896"/><file name="Internal.php" hash="fa680d47c780922a111078827cad1505"/><file name="Ips.php" hash="c70c08b34454d2e7aebc31101cfdca81"/><file name="Messages.php" hash="f1f3c20b6c872c72dcc33790d6a3adf4"/><file name="Metadata.php" hash="57820ae2032206334fb6e6d9b12f4df2"/><file name="Rejects.php" hash="f40f9ef016c338c6ae9d161c3112eea6"/><file name="Senders.php" hash="875ddbeff3f920397c73c2c2797f3eea"/><file name="Subaccounts.php" hash="9b6b61a8e0364c9f917952deffe0320c"/><file name="Tags.php" hash="ee2f9e328d4d49aa8b0289978f7375b0"/><file name="Templates.php" hash="9920cf5d10bdcb5416193435c425f123"/><file name="Urls.php" hash="184c17ebb031f1f6e6dad687a4bf767d"/><file name="Users.php" hash="826dac98663eefce2f5ccc4a5b0d38e9"/><file name="Webhooks.php" hash="37ea24a982630aa321444b85392f3397"/><file name="Whitelists.php" hash="d132144d50c3b713c98ad699984e4e38"/></dir><file name="Mandrill.php" hash="cb6620ee6d4767e9b4edb1d574fe5dbe"/><file name="Message.php" hash="784920e095d8d9f0269b46f00071fcc9"/></dir></dir><dir name="js"><dir name="ebizmarts"><dir name="abandonedcart"><file name="popup.css" hash="2bf9fef85964298cc44143ef0fc78d21"/><file name="xmark.png" hash="6f14c834def36c1185347c49021030a4"/></dir><dir name="autoresponders"><file name="visitedproducts.js" hash="61ef8d19642d349a19a43d018888f205"/><file name="visitedproductsstorecodes.js" hash="2cea5956611572cae6140db11c6d4672"/></dir><dir name="magemonkey"><file name="campaignCatcher.js" hash="9f4c4fc34c221e593186f7acb70f64b2"/></dir></dir></dir></target></contents>
36
  <compatible/>
37
  <dependencies/>
38
  </package>