EmailDirect_Integration - Version 1.5.2

Version Notes

Bug Fixes

Download this release

Release Info

Developer Magento Core Team
Extension EmailDirect_Integration
Version 1.5.2
Comparing to
See all releases


Code changes from version 1.5.1 to 1.5.2

app/code/local/EmailDirect/Integration/Block/Customer/Account/Dashboard/Info.php CHANGED
@@ -2,28 +2,6 @@
2
 
3
  class EmailDirect_Integration_Block_Customer_Account_Dashboard_Info extends Mage_Customer_Block_Account_Dashboard_Info
4
  {
5
- public function IsSubscribed($email)
6
- {
7
- $rc = Mage::getSingleton('emaildirect/wrapper_subscribers')->getProperties($email);
8
- $lists = array();
9
-
10
- $abandonedID = Mage::helper('emaildirect')->config('abandonedpublication');
11
-
12
- if ($rc->Publications->Publication && $rc->Publications->Publication->PublicationID != $abandonedID)
13
- {
14
- $lists[]=(string)$rc->Publications->Publication->Name;
15
- }
16
- $abandonedID = Mage::helper('emaildirect')->config('abandonedlist');
17
-
18
- foreach($rc->Lists->List as $i)
19
- {
20
- if($i->ListID != $abandonedID) {
21
- $lists[]=(string)$i->Name;
22
- }
23
- }
24
- return $lists;
25
- }
26
-
27
  protected function _toHtml()
28
  {
29
  if (!Mage::helper('emaildirect')->canEDirect())
2
 
3
  class EmailDirect_Integration_Block_Customer_Account_Dashboard_Info extends Mage_Customer_Block_Account_Dashboard_Info
4
  {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  protected function _toHtml()
6
  {
7
  if (!Mage::helper('emaildirect')->canEDirect())
app/code/local/EmailDirect/Integration/Helper/Data.php CHANGED
@@ -16,12 +16,26 @@ class EmailDirect_Integration_Helper_Data extends Mage_Core_Helper_Abstract
16
  private $_log_area = "";
17
 
18
  public function formatSize($size)
19
- {
20
- if ($size == 0 || $size == null || $size = "")
21
- return "0b";
 
 
 
 
 
 
22
 
23
- $unit=array('b','kb','mb','gb','tb','pb');
24
- return @round($size/pow(1024,($i=floor(log($size,1024)))),2).' '.$unit[$i];
 
 
 
 
 
 
 
 
25
  }
26
 
27
  function timeElapsed2string($time)
@@ -56,7 +70,7 @@ class EmailDirect_Integration_Helper_Data extends Mage_Core_Helper_Abstract
56
  }
57
 
58
  public function getApiKey($store = null)
59
- {
60
  return $this->config('apikey',$store);
61
  }
62
 
@@ -114,7 +128,10 @@ class EmailDirect_Integration_Helper_Data extends Mage_Core_Helper_Abstract
114
  }
115
 
116
  $options = array();
117
-
 
 
 
118
  foreach ($columns as $column)
119
  {
120
  if ($column->IsCustom == 'true' && !in_array((string)$column->ColumnName,$invalid_columns))
@@ -310,16 +327,21 @@ class EmailDirect_Integration_Helper_Data extends Mage_Core_Helper_Abstract
310
  }
311
  public function canEdirect()
312
  {
313
- // TEST THIS!
314
- //Mage::helper('core')->isModuleOutputEnabled($moduleName)
315
 
316
  $active = $this->config('active');
317
  $setup = $this->config('setup');
318
 
319
- if (!$active || !$setup)
320
- return false;
321
 
322
- return true;
 
 
 
 
 
323
  }
324
 
325
  public function registerGuestCustomer($order)
@@ -509,12 +531,14 @@ class EmailDirect_Integration_Helper_Data extends Mage_Core_Helper_Abstract
509
  {
510
  $data = array(
511
  'Magento Version' => Mage::getVersion(),
512
- 'Magento Edition' => Mage::getEdition(),
513
  'EmailDirect Version' => (string) Mage::getConfig()->getNode('modules/EmailDirect_Integration/version'),
514
  'Website URL' => Mage::getBaseUrl(),
515
  'PHP Version' => phpversion(),
516
  'Server Software' => $_SERVER['SERVER_SOFTWARE']
517
  );
 
 
 
518
  return $data;
519
  }
520
 
16
  private $_log_area = "";
17
 
18
  public function formatSize($size)
19
+ {
20
+ try
21
+ {
22
+ if ($size == 0 || $size == null || $size == "")
23
+ return "0 b";
24
+
25
+ $unit = array('b','kb','mb','gb','tb','pb');
26
+
27
+ $numeric_size = @round($size/pow(1024,($i=$size?floor(log($size,1024)):0)),2);
28
 
29
+ if (!isset($unit[$i]))
30
+ return "Unknown";
31
+
32
+ return "{$numeric_size} {$unit[$i]}";
33
+ }
34
+ catch (Exception $e)
35
+ {
36
+ $this->logException($e);
37
+ return "Unknown";
38
+ }
39
  }
40
 
41
  function timeElapsed2string($time)
70
  }
71
 
72
  public function getApiKey($store = null)
73
+ {
74
  return $this->config('apikey',$store);
75
  }
76
 
128
  }
129
 
130
  $options = array();
131
+
132
+ if (!isset($columns))
133
+ return $options;
134
+
135
  foreach ($columns as $column)
136
  {
137
  if ($column->IsCustom == 'true' && !in_array((string)$column->ColumnName,$invalid_columns))
327
  }
328
  public function canEdirect()
329
  {
330
+ // Necessary?
331
+ //Mage::helper('core')->isModuleOutputEnabled('EmailDirect_Integration');
332
 
333
  $active = $this->config('active');
334
  $setup = $this->config('setup');
335
 
336
+ if ($active && $setup)
337
+ return true;
338
 
339
+ $controller = Mage::app()->getRequest()->getControllerName();
340
+
341
+ if ($controller == 'system_config')
342
+ return true;
343
+
344
+ return false;
345
  }
346
 
347
  public function registerGuestCustomer($order)
531
  {
532
  $data = array(
533
  'Magento Version' => Mage::getVersion(),
 
534
  'EmailDirect Version' => (string) Mage::getConfig()->getNode('modules/EmailDirect_Integration/version'),
535
  'Website URL' => Mage::getBaseUrl(),
536
  'PHP Version' => phpversion(),
537
  'Server Software' => $_SERVER['SERVER_SOFTWARE']
538
  );
539
+
540
+ if (method_exists("Mage","getEdition"))
541
+ $data['Magento Edition'] = Mage::getEdition();
542
  return $data;
543
  }
544
 
app/code/local/EmailDirect/Integration/Helper/Fields.php CHANGED
@@ -69,6 +69,9 @@ class EmailDirect_Integration_Helper_Fields extends Mage_Core_Helper_Abstract
69
 
70
  $existing = array();
71
 
 
 
 
72
  foreach ($columns as $column)
73
  {
74
  $name = (string)$column->ColumnName;
@@ -83,11 +86,18 @@ class EmailDirect_Integration_Helper_Fields extends Mage_Core_Helper_Abstract
83
  {
84
  $columns = $this->getExistingColumns();
85
 
 
 
 
 
 
 
 
86
  $missing = array();
87
 
88
  foreach ($fields as $field)
89
  {
90
- if (!isset($columns[$field['name']]))
91
  {
92
  $missing[] = $field;
93
  }
69
 
70
  $existing = array();
71
 
72
+ if (!isset($columns))
73
+ return $existing;
74
+
75
  foreach ($columns as $column)
76
  {
77
  $name = (string)$column->ColumnName;
86
  {
87
  $columns = $this->getExistingColumns();
88
 
89
+ $check_columns = array();
90
+
91
+ foreach ($columns as $key => $column)
92
+ {
93
+ $check_columns[strtolower($key)] = $column;
94
+ }
95
+
96
  $missing = array();
97
 
98
  foreach ($fields as $field)
99
  {
100
+ if (!isset($check_columns[strtolower($field['name'])]))
101
  {
102
  $missing[] = $field;
103
  }
app/code/local/EmailDirect/Integration/Model/Wrapper/Execute.php CHANGED
@@ -16,10 +16,19 @@ class EmailDirect_Integration_Model_Wrapper_Execute
16
  $helper = Mage::helper('emaildirect');
17
 
18
  if (!$helper->canEdirect())
19
- return;
 
 
 
20
 
21
  $apikey = Mage::helper('emaildirect')->getApiKey();
22
 
 
 
 
 
 
 
23
  if ($xmldata != null)
24
  $helper->log($xmldata,"Xml Data ({$command})");
25
 
16
  $helper = Mage::helper('emaildirect');
17
 
18
  if (!$helper->canEdirect())
19
+ {
20
+ $strxml = "<Response><ErrorCode>0</ErrorCode><Message>EmailDirect not enabled</Message></Response>";
21
+ return simplexml_load_string($strxml);
22
+ }
23
 
24
  $apikey = Mage::helper('emaildirect')->getApiKey();
25
 
26
+ if (!$apikey)
27
+ {
28
+ $strxml = "<Response><ErrorCode>0</ErrorCode><Message>APIKey not found</Message></Response>";
29
+ return simplexml_load_string($strxml);
30
+ }
31
+
32
  if ($xmldata != null)
33
  $helper->log($xmldata,"Xml Data ({$command})");
34
 
app/code/local/EmailDirect/Integration/Model/Wrapper/Lists.php CHANGED
@@ -6,6 +6,10 @@ class EmailDirect_Integration_Model_Wrapper_Lists
6
  {
7
  $lists = array();
8
  $rc = Mage::getSingleton('emaildirect/wrapper_execute')->sendCommand('lists');
 
 
 
 
9
  foreach($rc->List as $list)
10
  {
11
  $newlist = array('id' => (int)$list->ListID,
6
  {
7
  $lists = array();
8
  $rc = Mage::getSingleton('emaildirect/wrapper_execute')->sendCommand('lists');
9
+
10
+ if (!isset($rc->List))
11
+ return $lists;
12
+
13
  foreach($rc->List as $list)
14
  {
15
  $newlist = array('id' => (int)$list->ListID,
app/code/local/EmailDirect/Integration/Model/Wrapper/Orders.php CHANGED
@@ -33,7 +33,8 @@ class EmailDirect_Integration_Model_Wrapper_Orders extends EmailDirect_Integrati
33
  $price = $item->getPrice();
34
  $xml .= "<UnitPrice>{$price}</UnitPrice>";
35
  $weight = $item->getWeight();
36
- $xml .= "<Weight>{$weight}</Weight>";
 
37
  $status = 'Completed';
38
  $xml .= "<Status>{$status}</Status>";
39
  $xml .= "</OrderItem>";
33
  $price = $item->getPrice();
34
  $xml .= "<UnitPrice>{$price}</UnitPrice>";
35
  $weight = $item->getWeight();
36
+ if ($weight)
37
+ $xml .= "<Weight>{$weight}</Weight>";
38
  $status = 'Completed';
39
  $xml .= "<Status>{$status}</Status>";
40
  $xml .= "</OrderItem>";
app/code/local/EmailDirect/Integration/Model/Wrapper/Publications.php CHANGED
@@ -6,7 +6,11 @@ class EmailDirect_Integration_Model_Wrapper_Publications
6
  {
7
  $publications = array();
8
  $rc = Mage::getSingleton('emaildirect/wrapper_execute')->sendCommand('publications');
9
- foreach($rc->Publication as $publication)
 
 
 
 
10
  {
11
  $newpublication = array('id' => (int)$publication->PublicationID,
12
  'name' => (string)$publication->Name,
6
  {
7
  $publications = array();
8
  $rc = Mage::getSingleton('emaildirect/wrapper_execute')->sendCommand('publications');
9
+
10
+ if (!isset($rc->Publication))
11
+ return $publications;
12
+
13
+ foreach ($rc->Publication as $publication)
14
  {
15
  $newpublication = array('id' => (int)$publication->PublicationID,
16
  'name' => (string)$publication->Name,
app/code/local/EmailDirect/Integration/Model/Wrapper/Sources.php CHANGED
@@ -9,6 +9,9 @@ class EmailDirect_Integration_Model_Wrapper_Sources
9
  if (isset($rc->ErrorCode))
10
  return (string) $rc->Message;
11
 
 
 
 
12
  foreach($rc->Source as $source)
13
  {
14
  $newsource = array('id' => (int)$source->SourceID,
9
  if (isset($rc->ErrorCode))
10
  return (string) $rc->Message;
11
 
12
+ if (!isset($rc->Source))
13
+ return $sources;
14
+
15
  foreach($rc->Source as $source)
16
  {
17
  $newsource = array('id' => (int)$source->SourceID,
app/code/local/EmailDirect/Integration/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <EmailDirect_Integration>
5
- <version>1.5.1</version>
6
  </EmailDirect_Integration>
7
  </modules>
8
  <global>
2
  <config>
3
  <modules>
4
  <EmailDirect_Integration>
5
+ <version>1.5.2</version>
6
  </EmailDirect_Integration>
7
  </modules>
8
  <global>
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>EmailDirect_Integration</name>
4
- <version>1.5.1</version>
5
  <stability>stable</stability>
6
  <license>GNU</license>
7
  <channel>community</channel>
@@ -10,9 +10,9 @@
10
  <description>EmailDirect integration for magento</description>
11
  <notes>Bug Fixes</notes>
12
  <authors><author><name>Kevin Linden</name><user>auto-converted</user><email>Kevin@EmailDirect.com</email></author></authors>
13
- <date>2013-06-19</date>
14
- <time>18:56:12</time>
15
- <contents><target name="magelocal"><dir name="EmailDirect"><dir name="Integration"><dir name="Block"><dir name="Adminhtml"><dir name="Abandoned"><file name="Grid.php" hash="b664b1a7b368199656db734788cfb72c"/></dir><dir name="System"><dir name="Config"><dir name="Fieldset"><file name="Hint.php" hash="7649b64cf2319484207c5179df7b4e9f"/></dir><dir name="Form"><dir name="Field"><file name="Addressmapfields.php" hash="97b75c8340d561e863a3985ad73ce228"/><file name="Button.php" hash="ca555e93c55812795d2504ee6de13f3a"/><file name="Common.php" hash="e597ff375c4b46b92d6aa35646e3d8c9"/><file name="Mapfields.php" hash="677ebfd526fba11a1c177c00ae085526"/><file name="Shippingmapfields.php" hash="589a74260f394a5eae1b57ca89a74a8b"/><file name="Troubleshooting.php" hash="3699df84e4856983e679bd6c8fc9513e"/></dir></dir><file name="Account.php" hash="60fa8e43a87e1f2ff71c319c979556b2"/></dir><dir name="Convert"><dir name="Profile"><file name="Export.php" hash="95956414af4ec5b400244b246b8f1cf9"/></dir></dir></dir><dir name="Troubleshooting"><dir name="View"><dir name="Tab"><file name="Download.php" hash="9315a364a46f9e39972bbd0a47152e90"/><file name="Info.php" hash="6714b756a3fa7a5812356e544fe48f1b"/><file name="Log.php" hash="7c3661722d1197cd8a564f76275353c7"/><file name="Submit.php" hash="8831d886858fde08a4323eea66ec76d2"/></dir><file name="Form.php" hash="e527a3a2335b109c48a69f06c1b0d01f"/></dir><file name="Tabs.php" hash="ab1fdbe561e8572c2c50cdbec9573f82"/><file name="View.php" hash="7cd8350545f6b6119b2c91b3fc6ae562"/></dir><file name="Abandoned.php" hash="9d69cb3b2d561a97d0df0b456aa8f7b5"/></dir><dir name="Checkout"><file name="Subscribe.php" hash="ae325e815a54bde93507562cf0d86b8a"/></dir><dir name="Customer"><dir name="Account"><dir name="Dashboard"><file name="Info.php" hash="0d56c53c7c98046c435a2b87621c3e3b"/></dir><file name="Lists.php" hash="e56926d8681b4dacd5ecf8d0ccc31fc7"/></dir></dir><dir name="Widget"><dir name="Grid"><dir name="Column"><dir name="Renderer"><file name="AbandonedMinutes.php" hash="22e33be85dc8348fce9b49637ead919d"/><file name="Action.php" hash="b85ef0454ab5c65ef0c43c7ef057ecc2"/></dir></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="820afaa8459b860cbd7384380ecd4229"/><file name="Fields.php" hash="3517ad00c7323e9bc5ef7d97ec076514"/></dir><dir name="Model"><dir name="System"><dir name="Config"><dir name="Source"><dir name="Export"><file name="Batch.php" hash="fd2fcedc80472895b2081e21af8fa7f5"/></dir><file name="Abandoned.php" hash="d4985049dbd47d79a9d8f3361528bc87"/><file name="Abandonedlist.php" hash="a5d3b987ea2a2d8672c9c2c3473c24e2"/><file name="Additionallist.php" hash="1fcede7a1efe84ce13104194f3dc9962"/><file name="Checkoutsubscribe.php" hash="fd90252a1f19649a420dae136ad2a2ba"/><file name="List.php" hash="00611b9215b54e86171a8e4a9a5e54db"/><file name="Maxtimes.php" hash="465ffb2acf45adf594b6e8c720dd23dc"/><file name="Publication.php" hash="903657f0b2a911af97f8bccb6d9cffab"/><file name="Source.php" hash="fb706f2418208b2a8f7a29a6050e815d"/><file name="Time.php" hash="0e26839880e25ec0eedce1ce8a663c0f"/></dir></dir></dir><dir name="Wrapper"><file name="Abandoned.php" hash="f33d3ef289c147ce572bcafdce47665c"/><file name="Abstract.php" hash="90935a39addc872b82639ae97855c894"/><file name="Database.php" hash="3cceb467358d13584baff58c043762ec"/><file name="Execute.php" hash="9ffc0b88992783e22b5d9e6817d859b3"/><file name="Ftp.php" hash="d5335cfb68f99761d6902dd390a3d7a8"/><file name="Lists.php" hash="07436322d71a6065e75b3fcb902a5952"/><file name="Orders.php" hash="0c5f01418fa2f0fabc8bed26b4434704"/><file name="Publications.php" hash="72ccdc495868308d9831cbf01ddea3b0"/><file name="Sources.php" hash="c67d1e8877e7f3ce907090d8fb7d4f00"/><file name="Subscribers.php" hash="c3093bd2f86fdc3a7e4b2a2d4beadd2b"/></dir><file name="Observer.php" hash="582f3510f6419107f607f029c8170a12"/></dir><dir name="controllers"><dir name="Admin"><file name="AbandonedController.php" hash="485bdcbe2ec956346e232287b8b48c5e"/><file name="ExportController.php" hash="e32b979b0fa256582a85d0d3116b356b"/><file name="TroubleshootingController.php" hash="7a4939b33d875417f19429614d8896ae"/></dir><dir name="Customer"><file name="AccountController.php" hash="16bfdb6de4804a5d71cb972afbff4537"/></dir><file name="AbandonedController.php" hash="12d8655ed118d280320e5457f4933881"/><file name="ExportController.php" hash="d34f5f1842db64f5eb1f18b4938c8c29"/></dir><dir name="etc"><file name="adminhtml.xml" hash="896c10d8a3f932346e7d301052b1b6a6"/><file name="config.xml" hash="e8204c973574a8ce8b364dd58ff218e5"/><file name="system.xml" hash="fb3e4ced708718df052a9e429bbfa8ed"/></dir><dir name="sql"><dir name="emaildirect_setup"><file name="mysql4-install-1.0.0.php" hash="9dc51edb346e9676735e15d3e78fa3eb"/><file name="mysql4-upgrade-1.0.13-1.0.14.php" hash="c42e2677b3960a049d7137b622552084"/><file name="mysql4-upgrade-1.0.19-1.2.0.php" hash="742be042b7f56e7ff2002b0606270ca6"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="emaildirect"><file name="emaildirect-connected-ebizmarts-title.png" hash="faf3858f23eafe3a89cce144fef6bd2a"/><file name="emaildirect-section-background.png" hash="c205ce454fe63280d7d7dd74428b7ea4"/><file name="emaildirect-tab.png" hash="9ddb077b74a7078ac509d79b024631a1"/><file name="emaildirect.css" hash="016ecc627aa3e7e971d53ec73d52858e"/><file name="emaildirect.js" hash="ce03dd6f51ea529fc4acdc5116f4e030"/></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="emaildirect"><dir name="images"><file name="bkg_block-title.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="dotted_divider.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="emaildirect-tile.png" hash="86a0ed36169ab9691480fc995ab674a8"/><file name="i_block-subscribe.gif" hash="9e5fee06a543742045118a95f2debcb8"/></dir><file name="integration.js" hash="d8c8d5bf0ddb4f6ead23bec8a2814475"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="emaildirect.xml" hash="91d689f9f169c4b1e5c59cf19aa89301"/></dir><dir name="template"><dir name="emaildirect"><dir name="abandoned"><file name="grid.phtml" hash="d41d8cd98f00b204e9800998ecf8427e"/></dir><dir name="system"><dir name="config"><dir name="fieldset"><file name="hint.phtml" hash="4d7607ecb15d13cfe8bb0cc889cb724f"/></dir><dir name="form"><dir name="field"><file name="array.phtml" hash="d6af9f840f4dda9c73d106e167ec1bc6"/><file name="button.phtml" hash="ad2811d37509d0919d3b41ecad1f37df"/><file name="trouble.phtml" hash="d7eae00a25ceda36d5880d431a176c6c"/></dir></dir></dir><dir name="convert"><dir name="profile"><file name="export.phtml" hash="86339d17e83bd8dcc2a268b3ace3d9e7"/></dir></dir></dir><dir name="troubleshooting"><dir name="view"><dir name="tab"><file name="download.phtml" hash="78ec34fd9c3c8b660b19f9e799d8e76e"/><file name="info.phtml" hash="547b1e906ed142983d1034e05f6251bd"/><file name="log.phtml" hash="c9e2c9493a2dad579bba4ed53795cf5e"/><file name="submit.phtml" hash="c2269f4a6a52d66bff5eac660d0831bd"/></dir><file name="form.phtml" hash="d2338bfe3598e9315ca8f5ac8d9b5516"/></dir><file name="view.phtml" hash="ee6af3fe79d916af764f41e7e8c5cc37"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="emaildirect.xml" hash="9803fe9024b7eb6415713d81fe27c629"/></dir><dir name="template"><dir name="emaildirect"><dir name="checkout"><file name="subscribe.phtml" hash="351ea790305f0a3ec99c34180bbee235"/></dir><dir name="customer"><dir name="account"><dir name="dashboard"><file name="info.phtml" hash="4256a03d67ec2a6f97867a87564cff92"/></dir><file name="lists.phtml" hash="4c697dcfa63ece1db7885cadb02982d1"/></dir></dir><dir name="email"><dir name="order"><dir name="items"><dir name="order"><file name="default.phtml" hash="2d65f3d02b9baa08969d68f2a2cca348"/></dir></dir><file name="items.phtml" hash="e6b15e6460010c5acae66017d177bfb9"/></dir></dir></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><dir name="template"><dir name="email"><file name="newsletter_subscr_success_emaildirect.html" hash="f6afb69d207bbc3f8920e7a72ac9dd07"/><file name="newsletter_unsub_success_emaildirect.html" hash="bd9f97e8f5485180d4420097b5200ef4"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="EmailDirect_Integration.xml" hash="2d2666e6d9cd8d40a4974d5e242721d6"/></dir></target></contents>
16
  <compatible/>
17
  <dependencies/>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>EmailDirect_Integration</name>
4
+ <version>1.5.2</version>
5
  <stability>stable</stability>
6
  <license>GNU</license>
7
  <channel>community</channel>
10
  <description>EmailDirect integration for magento</description>
11
  <notes>Bug Fixes</notes>
12
  <authors><author><name>Kevin Linden</name><user>auto-converted</user><email>Kevin@EmailDirect.com</email></author></authors>
13
+ <date>2013-06-27</date>
14
+ <time>17:05:40</time>
15
+ <contents><target name="magelocal"><dir name="EmailDirect"><dir name="Integration"><dir name="Block"><dir name="Adminhtml"><dir name="Abandoned"><file name="Grid.php" hash="b664b1a7b368199656db734788cfb72c"/></dir><dir name="System"><dir name="Config"><dir name="Fieldset"><file name="Hint.php" hash="7649b64cf2319484207c5179df7b4e9f"/></dir><dir name="Form"><dir name="Field"><file name="Addressmapfields.php" hash="97b75c8340d561e863a3985ad73ce228"/><file name="Button.php" hash="ca555e93c55812795d2504ee6de13f3a"/><file name="Common.php" hash="e597ff375c4b46b92d6aa35646e3d8c9"/><file name="Mapfields.php" hash="677ebfd526fba11a1c177c00ae085526"/><file name="Shippingmapfields.php" hash="589a74260f394a5eae1b57ca89a74a8b"/><file name="Troubleshooting.php" hash="3699df84e4856983e679bd6c8fc9513e"/></dir></dir><file name="Account.php" hash="60fa8e43a87e1f2ff71c319c979556b2"/></dir><dir name="Convert"><dir name="Profile"><file name="Export.php" hash="95956414af4ec5b400244b246b8f1cf9"/></dir></dir></dir><dir name="Troubleshooting"><dir name="View"><dir name="Tab"><file name="Download.php" hash="9315a364a46f9e39972bbd0a47152e90"/><file name="Info.php" hash="6714b756a3fa7a5812356e544fe48f1b"/><file name="Log.php" hash="7c3661722d1197cd8a564f76275353c7"/><file name="Submit.php" hash="8831d886858fde08a4323eea66ec76d2"/></dir><file name="Form.php" hash="e527a3a2335b109c48a69f06c1b0d01f"/></dir><file name="Tabs.php" hash="ab1fdbe561e8572c2c50cdbec9573f82"/><file name="View.php" hash="7cd8350545f6b6119b2c91b3fc6ae562"/></dir><file name="Abandoned.php" hash="9d69cb3b2d561a97d0df0b456aa8f7b5"/></dir><dir name="Checkout"><file name="Subscribe.php" hash="ae325e815a54bde93507562cf0d86b8a"/></dir><dir name="Customer"><dir name="Account"><dir name="Dashboard"><file name="Info.php" hash="20e74d9c2b2c02611c8f69b254d81ef5"/></dir><file name="Lists.php" hash="e56926d8681b4dacd5ecf8d0ccc31fc7"/></dir></dir><dir name="Widget"><dir name="Grid"><dir name="Column"><dir name="Renderer"><file name="AbandonedMinutes.php" hash="22e33be85dc8348fce9b49637ead919d"/><file name="Action.php" hash="b85ef0454ab5c65ef0c43c7ef057ecc2"/></dir></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="13f8d2f5896e1102dd164bc964663509"/><file name="Fields.php" hash="1275a766d979e1ac3efabbf168ac92f5"/></dir><dir name="Model"><dir name="System"><dir name="Config"><dir name="Source"><dir name="Export"><file name="Batch.php" hash="fd2fcedc80472895b2081e21af8fa7f5"/></dir><file name="Abandoned.php" hash="d4985049dbd47d79a9d8f3361528bc87"/><file name="Abandonedlist.php" hash="a5d3b987ea2a2d8672c9c2c3473c24e2"/><file name="Additionallist.php" hash="1fcede7a1efe84ce13104194f3dc9962"/><file name="Checkoutsubscribe.php" hash="fd90252a1f19649a420dae136ad2a2ba"/><file name="List.php" hash="00611b9215b54e86171a8e4a9a5e54db"/><file name="Maxtimes.php" hash="465ffb2acf45adf594b6e8c720dd23dc"/><file name="Publication.php" hash="903657f0b2a911af97f8bccb6d9cffab"/><file name="Source.php" hash="fb706f2418208b2a8f7a29a6050e815d"/><file name="Time.php" hash="0e26839880e25ec0eedce1ce8a663c0f"/></dir></dir></dir><dir name="Wrapper"><file name="Abandoned.php" hash="f33d3ef289c147ce572bcafdce47665c"/><file name="Abstract.php" hash="90935a39addc872b82639ae97855c894"/><file name="Database.php" hash="3cceb467358d13584baff58c043762ec"/><file name="Execute.php" hash="c28fc4a49b7d1b01ed96c15e14bb8d48"/><file name="Ftp.php" hash="d5335cfb68f99761d6902dd390a3d7a8"/><file name="Lists.php" hash="dff74c445f6a9582b35bb24560582c2b"/><file name="Orders.php" hash="81dbf1045688e932fa6175784c2bf0cb"/><file name="Publications.php" hash="815715549df345ccb5b69ed65589aa53"/><file name="Sources.php" hash="c6caf0274f7d0c50114324bc47a490c4"/><file name="Subscribers.php" hash="c3093bd2f86fdc3a7e4b2a2d4beadd2b"/></dir><file name="Observer.php" hash="582f3510f6419107f607f029c8170a12"/></dir><dir name="controllers"><dir name="Admin"><file name="AbandonedController.php" hash="485bdcbe2ec956346e232287b8b48c5e"/><file name="ExportController.php" hash="e32b979b0fa256582a85d0d3116b356b"/><file name="TroubleshootingController.php" hash="7a4939b33d875417f19429614d8896ae"/></dir><dir name="Customer"><file name="AccountController.php" hash="16bfdb6de4804a5d71cb972afbff4537"/></dir><file name="AbandonedController.php" hash="12d8655ed118d280320e5457f4933881"/><file name="ExportController.php" hash="d34f5f1842db64f5eb1f18b4938c8c29"/></dir><dir name="etc"><file name="adminhtml.xml" hash="896c10d8a3f932346e7d301052b1b6a6"/><file name="config.xml" hash="e7db83e83898f34ad315018998b9d4d9"/><file name="system.xml" hash="fb3e4ced708718df052a9e429bbfa8ed"/></dir><dir name="sql"><dir name="emaildirect_setup"><file name="mysql4-install-1.0.0.php" hash="9dc51edb346e9676735e15d3e78fa3eb"/><file name="mysql4-upgrade-1.0.13-1.0.14.php" hash="c42e2677b3960a049d7137b622552084"/><file name="mysql4-upgrade-1.0.19-1.2.0.php" hash="742be042b7f56e7ff2002b0606270ca6"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="emaildirect"><file name="emaildirect-connected-ebizmarts-title.png" hash="faf3858f23eafe3a89cce144fef6bd2a"/><file name="emaildirect-section-background.png" hash="c205ce454fe63280d7d7dd74428b7ea4"/><file name="emaildirect-tab.png" hash="9ddb077b74a7078ac509d79b024631a1"/><file name="emaildirect.css" hash="016ecc627aa3e7e971d53ec73d52858e"/><file name="emaildirect.js" hash="ce03dd6f51ea529fc4acdc5116f4e030"/></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="emaildirect"><dir name="images"><file name="bkg_block-title.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="dotted_divider.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="emaildirect-tile.png" hash="86a0ed36169ab9691480fc995ab674a8"/><file name="i_block-subscribe.gif" hash="9e5fee06a543742045118a95f2debcb8"/></dir><file name="integration.js" hash="d8c8d5bf0ddb4f6ead23bec8a2814475"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="emaildirect.xml" hash="91d689f9f169c4b1e5c59cf19aa89301"/></dir><dir name="template"><dir name="emaildirect"><dir name="abandoned"><file name="grid.phtml" hash="d41d8cd98f00b204e9800998ecf8427e"/></dir><dir name="system"><dir name="config"><dir name="fieldset"><file name="hint.phtml" hash="4d7607ecb15d13cfe8bb0cc889cb724f"/></dir><dir name="form"><dir name="field"><file name="array.phtml" hash="d6af9f840f4dda9c73d106e167ec1bc6"/><file name="button.phtml" hash="ad2811d37509d0919d3b41ecad1f37df"/><file name="trouble.phtml" hash="d7eae00a25ceda36d5880d431a176c6c"/></dir></dir></dir><dir name="convert"><dir name="profile"><file name="export.phtml" hash="86339d17e83bd8dcc2a268b3ace3d9e7"/></dir></dir></dir><dir name="troubleshooting"><dir name="view"><dir name="tab"><file name="download.phtml" hash="78ec34fd9c3c8b660b19f9e799d8e76e"/><file name="info.phtml" hash="547b1e906ed142983d1034e05f6251bd"/><file name="log.phtml" hash="c9e2c9493a2dad579bba4ed53795cf5e"/><file name="submit.phtml" hash="c2269f4a6a52d66bff5eac660d0831bd"/></dir><file name="form.phtml" hash="d2338bfe3598e9315ca8f5ac8d9b5516"/></dir><file name="view.phtml" hash="ee6af3fe79d916af764f41e7e8c5cc37"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="emaildirect.xml" hash="9803fe9024b7eb6415713d81fe27c629"/></dir><dir name="template"><dir name="emaildirect"><dir name="checkout"><file name="subscribe.phtml" hash="351ea790305f0a3ec99c34180bbee235"/></dir><dir name="customer"><dir name="account"><dir name="dashboard"><file name="info.phtml" hash="4256a03d67ec2a6f97867a87564cff92"/></dir><file name="lists.phtml" hash="4c697dcfa63ece1db7885cadb02982d1"/></dir></dir><dir name="email"><dir name="order"><dir name="items"><dir name="order"><file name="default.phtml" hash="2d65f3d02b9baa08969d68f2a2cca348"/></dir></dir><file name="items.phtml" hash="e6b15e6460010c5acae66017d177bfb9"/></dir></dir></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><dir name="template"><dir name="email"><file name="newsletter_subscr_success_emaildirect.html" hash="f6afb69d207bbc3f8920e7a72ac9dd07"/><file name="newsletter_unsub_success_emaildirect.html" hash="bd9f97e8f5485180d4420097b5200ef4"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="EmailDirect_Integration.xml" hash="2d2666e6d9cd8d40a4974d5e242721d6"/></dir></target></contents>
16
  <compatible/>
17
  <dependencies/>
18
  </package>