mailplatformconnector - Version 2.0.1.2

Version Notes

Changed code style to PSR-2
Moved code files from local to community
Removed unnecessary files
Removed unnecessary code lines
Removed unnecessary code logic
Fixed file names
Alternated code by Magento standards
Corrected English grammar
Tested on Magento CE 1.7, 1.8 and 1.9

Download this release

Release Info

Developer ADEO WEB
Extension mailplatformconnector
Version 2.0.1.2
Comparing to
See all releases


Code changes from version 2.0.1.1 to 2.0.1.2

Files changed (17) hide show
  1. app/code/community/Mp/{Mailplatform → Mailplatformconnector}/Block/Adminhtml/Newsletter/Subscriber.php +1 -1
  2. app/code/community/Mp/{Mailplatform → Mailplatformconnector}/Block/Adminhtml/System/Config/Form/Button/Synccategories.php +1 -1
  3. app/code/community/Mp/{Mailplatform → Mailplatformconnector}/Helper/Data.php +1 -1
  4. app/code/community/Mp/{Mailplatform → Mailplatformconnector}/Model/Cron.php +2 -2
  5. app/code/community/Mp/{Mailplatform → Mailplatformconnector}/Model/Customfields.php +1 -1
  6. app/code/community/Mp/{Mailplatform → Mailplatformconnector}/Model/Emailtype.php +1 -1
  7. app/code/community/Mp/{Mailplatform → Mailplatformconnector}/Model/Listids.php +1 -1
  8. app/code/community/Mp/{Mailplatform → Mailplatformconnector}/Model/Lists.php +1 -1
  9. app/code/community/Mp/{Mailplatform → Mailplatformconnector}/Model/Newsletter/Subscriber.php +1 -1
  10. app/code/community/Mp/{Mailplatform → Mailplatformconnector}/Model/Observer.php +1 -1
  11. app/code/community/Mp/{Mailplatform → Mailplatformconnector}/Model/Request.php +1 -1
  12. app/code/community/Mp/{Mailplatform → Mailplatformconnector}/Model/Subscribers.php +1 -1
  13. app/code/community/Mp/{Mailplatform → Mailplatformconnector}/controllers/Adminhtml/MailplatformController.php +1 -1
  14. app/code/community/Mp/{Mailplatform → Mailplatformconnector}/etc/config.xml +140 -140
  15. app/code/community/Mp/{Mailplatform → Mailplatformconnector}/etc/system.xml +0 -0
  16. app/etc/modules/Mp_Mailplatformconnector.xml +9 -0
  17. package.xml +4 -4
app/code/community/Mp/{Mailplatform → Mailplatformconnector}/Block/Adminhtml/Newsletter/Subscriber.php RENAMED
@@ -1,6 +1,6 @@
1
  <?php
2
 
3
- class Mp_mailplatform_Block_Adminhtml_Newsletter_Subscriber extends Mage_Adminhtml_Block_Newsletter_Subscriber
4
  {
5
 
6
  public function __construct()
1
  <?php
2
 
3
+ class Mp_Mailplatformconnector_Block_Adminhtml_Newsletter_Subscriber extends Mage_Adminhtml_Block_Newsletter_Subscriber
4
  {
5
 
6
  public function __construct()
app/code/community/Mp/{Mailplatform → Mailplatformconnector}/Block/Adminhtml/System/Config/Form/Button/Synccategories.php RENAMED
@@ -1,6 +1,6 @@
1
  <?php
2
 
3
- class Mp_Mailplatform_Block_Adminhtml_System_Config_Form_Button_Synccategories extends Mage_Adminhtml_Block_System_Config_Form_Field
4
  {
5
 
6
  /*
1
  <?php
2
 
3
+ class Mp_Mailplatformconnector_Block_Adminhtml_System_Config_Form_Button_Synccategories extends Mage_Adminhtml_Block_System_Config_Form_Field
4
  {
5
 
6
  /*
app/code/community/Mp/{Mailplatform → Mailplatformconnector}/Helper/Data.php RENAMED
@@ -1,6 +1,6 @@
1
  <?php
2
 
3
- class Mp_Mailplatform_Helper_Data extends Mage_Core_Helper_Abstract
4
  {
5
 
6
  public function isEnabled()
1
  <?php
2
 
3
+ class Mp_Mailplatformconnector_Helper_Data extends Mage_Core_Helper_Abstract
4
  {
5
 
6
  public function isEnabled()
app/code/community/Mp/{Mailplatform → Mailplatformconnector}/Model/Cron.php RENAMED
@@ -1,6 +1,6 @@
1
  <?php
2
 
3
- class Mp_Mailplatform_Model_Cron {
4
 
5
  public function sync($crontab = true) {
6
  if (! Mage::helper('mailplatform')->getCronTab('sync_subscribers') && $crontab) {
@@ -77,7 +77,7 @@ class Mp_Mailplatform_Model_Cron {
77
  return $this;
78
  }
79
 
80
- $customField = Mp_Mailplatform_Model_Subscribers::getCustomFieldId('product_categories');
81
 
82
  if (! $customField) {
83
  return $this;
1
  <?php
2
 
3
+ class Mp_Mailplatformconnector_Model_Cron {
4
 
5
  public function sync($crontab = true) {
6
  if (! Mage::helper('mailplatform')->getCronTab('sync_subscribers') && $crontab) {
77
  return $this;
78
  }
79
 
80
+ $customField = Mp_Mailplatformconnector_Model_Subscribers::getCustomFieldId('product_categories');
81
 
82
  if (! $customField) {
83
  return $this;
app/code/community/Mp/{Mailplatform → Mailplatformconnector}/Model/Customfields.php RENAMED
@@ -1,6 +1,6 @@
1
  <?php
2
 
3
- class Mp_Mailplatform_Model_Customfields extends Mp_Mailplatform_Model_Request
4
  {
5
  protected function _construct()
6
  {
1
  <?php
2
 
3
+ class Mp_Mailplatformconnector_Model_Customfields extends Mp_Mailplatformconnector_Model_Request
4
  {
5
  protected function _construct()
6
  {
app/code/community/Mp/{Mailplatform → Mailplatformconnector}/Model/Emailtype.php RENAMED
@@ -1,6 +1,6 @@
1
  <?php
2
 
3
- class Mp_Mailplatform_Model_Emailtype
4
  {
5
 
6
  public function toOptionArray()
1
  <?php
2
 
3
+ class Mp_Mailplatformconnector_Model_Emailtype
4
  {
5
 
6
  public function toOptionArray()
app/code/community/Mp/{Mailplatform → Mailplatformconnector}/Model/Listids.php RENAMED
@@ -1,6 +1,6 @@
1
  <?php
2
 
3
- class Mp_Mailplatform_Model_Listids extends Varien_Object
4
  {
5
 
6
  protected $_options;
1
  <?php
2
 
3
+ class Mp_Mailplatformconnector_Model_Listids extends Varien_Object
4
  {
5
 
6
  protected $_options;
app/code/community/Mp/{Mailplatform → Mailplatformconnector}/Model/Lists.php RENAMED
@@ -1,6 +1,6 @@
1
  <?php
2
 
3
- class Mp_Mailplatform_Model_Lists extends Mp_Mailplatform_Model_Request
4
  {
5
 
6
  protected function _construct()
1
  <?php
2
 
3
+ class Mp_Mailplatformconnector_Model_Lists extends Mp_Mailplatformconnector_Model_Request
4
  {
5
 
6
  protected function _construct()
app/code/community/Mp/{Mailplatform → Mailplatformconnector}/Model/Newsletter/Subscriber.php RENAMED
@@ -1,6 +1,6 @@
1
  <?php
2
 
3
- class Mp_Mailplatform_Model_Newsletter_Subscriber extends Mage_Newsletter_Model_Subscriber
4
  {
5
 
6
  public function subscribe($email)
1
  <?php
2
 
3
+ class Mp_Mailplatformconnector_Model_Newsletter_Subscriber extends Mage_Newsletter_Model_Subscriber
4
  {
5
 
6
  public function subscribe($email)
app/code/community/Mp/{Mailplatform → Mailplatformconnector}/Model/Observer.php RENAMED
@@ -1,6 +1,6 @@
1
  <?php
2
 
3
- class Mp_Mailplatform_Model_Observer
4
  {
5
 
6
  public function onCheckoutSubmit(Varien_Event_Observer $observer)
1
  <?php
2
 
3
+ class Mp_Mailplatformconnector_Model_Observer
4
  {
5
 
6
  public function onCheckoutSubmit(Varien_Event_Observer $observer)
app/code/community/Mp/{Mailplatform → Mailplatformconnector}/Model/Request.php RENAMED
@@ -1,6 +1,6 @@
1
  <?php
2
 
3
- class Mp_Mailplatform_Model_Request extends Varien_Object
4
  {
5
 
6
  protected $_xml;
1
  <?php
2
 
3
+ class Mp_Mailplatformconnector_Model_Request extends Varien_Object
4
  {
5
 
6
  protected $_xml;
app/code/community/Mp/{Mailplatform → Mailplatformconnector}/Model/Subscribers.php RENAMED
@@ -1,6 +1,6 @@
1
  <?php
2
 
3
- class Mp_Mailplatform_Model_Subscribers extends Mp_Mailplatform_Model_Request
4
  {
5
 
6
  protected function _construct()
1
  <?php
2
 
3
+ class Mp_Mailplatformconnector_Model_Subscribers extends Mp_Mailplatformconnector_Model_Request
4
  {
5
 
6
  protected function _construct()
app/code/community/Mp/{Mailplatform → Mailplatformconnector}/controllers/Adminhtml/MailplatformController.php RENAMED
@@ -1,6 +1,6 @@
1
  <?php
2
 
3
- class Mp_Mailplatform_Adminhtml_MailplatformController extends Mage_Adminhtml_Controller_Action
4
  {
5
 
6
  public function indexAction()
1
  <?php
2
 
3
+ class Mp_Mailplatformconnector_Adminhtml_MailplatformController extends Mage_Adminhtml_Controller_Action
4
  {
5
 
6
  public function indexAction()
app/code/community/Mp/{Mailplatform → Mailplatformconnector}/etc/config.xml RENAMED
@@ -1,141 +1,141 @@
1
- <?xml version="1.0"?>
2
- <config>
3
- <modules>
4
- <Mp_Mailplatform>
5
- <version>2.0.1.1</version>
6
- </Mp_Mailplatform>
7
- </modules>
8
- <global>
9
- <blocks>
10
- <mailplatform>
11
- <class>Mp_Mailplatform_Block</class>
12
- </mailplatform>
13
- <adminhtml>
14
- <rewrite>
15
- <newsletter_subscriber>Mp_Mailplatform_Block_Adminhtml_Newsletter_Subscriber</newsletter_subscriber>
16
- </rewrite>
17
- </adminhtml>
18
- </blocks>
19
- <models>
20
- <mailplatform>
21
- <class>Mp_Mailplatform_Model</class>
22
- </mailplatform>
23
- <newsletter>
24
- <rewrite>
25
- <subscriber>Mp_Mailplatform_Model_Newsletter_Subscriber</subscriber>
26
- </rewrite>
27
- </newsletter>
28
- </models>
29
- <helpers>
30
- <mailplatform>
31
- <class>Mp_Mailplatform_Helper</class>
32
- </mailplatform>
33
- </helpers>
34
- <events>
35
- <checkout_submit_all_after>
36
- <observers>
37
- <mailplatform_checkout_submit_all_after>
38
- <type>singleton</type>
39
- <class>mailplatform/observer</class>
40
- <method>onCheckoutSubmit</method>
41
- </mailplatform_checkout_submit_all_after>
42
- </observers>
43
- </checkout_submit_all_after>
44
- </events>
45
- </global>
46
- <frontend>
47
- <layout>
48
- <updates>
49
- <mp_mailplatform module="Mp_Mailplatform">
50
- <file>mailplatform.xml</file>
51
- </mp_mailplatform>
52
- </updates>
53
- </layout>
54
- </frontend>
55
- <adminhtml>
56
- <acl>
57
- <resources>
58
- <admin>
59
- <children>
60
- <system>
61
- <children>
62
- <config>
63
- <children>
64
- <mailplatform translate="title" module="mailplatform">
65
- <title>mailplatform Section</title>
66
- <sort_order>50</sort_order>
67
- </mailplatform>
68
- </children>
69
- </config>
70
- </children>
71
- </system>
72
- </children>
73
- </admin>
74
- </resources>
75
- </acl>
76
- </adminhtml>
77
- <admin>
78
- <routers>
79
- <adminhtml>
80
- <args>
81
- <modules>
82
- <mailplatform after="Mage_Adminhtml">Mp_Mailplatform_Adminhtml</mailplatform>
83
- </modules>
84
- </args>
85
- </adminhtml>
86
- </routers>
87
- </admin>
88
- <default>
89
- <mailplatform>
90
- <general>
91
- <active>0</active>
92
- <url>http://client2.mailmailmail.net/xml.php</url>
93
- <username>admin</username>
94
- <token></token>
95
- </general>
96
- <subscribe>
97
- <firstname>2</firstname>
98
- <lastname>3</lastname>
99
- <city>8</city>
100
- <email_type>html</email_type>
101
- <double_optin>0</double_optin>
102
- <update_existing>1</update_existing>
103
- </subscribe>
104
- <unsubscribe>
105
- <delete_member>0</delete_member>
106
- <send_goodbye>0</send_goodbye>
107
- <send_notify>0</send_notify>
108
- <sendthankyou>1</sendthankyou>
109
- </unsubscribe>
110
- <log>
111
- <error>1</error>
112
- <success>0</success>
113
- <file_name>mailplatform.log</file_name>
114
- </log>
115
- <crontab>
116
- <sync_subscribers>0</sync_subscribers>
117
- <sync_categories>0</sync_categories>
118
- </crontab>
119
- </mailplatform>
120
- </default>
121
- <crontab>
122
- <jobs>
123
- <mailplatform_sync>
124
- <schedule>
125
- <cron_expr>0 */12 * * *</cron_expr>
126
- </schedule>
127
- <run>
128
- <model>mailplatform/cron::sync</model>
129
- </run>
130
- </mailplatform_sync>
131
- <mailplatform_sync_categories>
132
- <schedule>
133
- <cron_expr>0 */12 * * *</cron_expr>
134
- </schedule>
135
- <run>
136
- <model>mailplatform/cron::updateCategories</model>
137
- </run>
138
- </mailplatform_sync_categories>
139
- </jobs>
140
- </crontab>
141
  </config>
1
+ <?xml version="1.0"?>
2
+ <config>
3
+ <modules>
4
+ <Mp_Mailplatformconnector>
5
+ <version>2.0.1.2</version>
6
+ </Mp_Mailplatformconnector>
7
+ </modules>
8
+ <global>
9
+ <blocks>
10
+ <mailplatform>
11
+ <class>Mp_Mailplatformconnector_Block</class>
12
+ </mailplatform>
13
+ <adminhtml>
14
+ <rewrite>
15
+ <newsletter_subscriber>Mp_Mailplatformconnector_Block_Adminhtml_Newsletter_Subscriber</newsletter_subscriber>
16
+ </rewrite>
17
+ </adminhtml>
18
+ </blocks>
19
+ <models>
20
+ <mailplatform>
21
+ <class>Mp_Mailplatformconnector_Model</class>
22
+ </mailplatform>
23
+ <newsletter>
24
+ <rewrite>
25
+ <subscriber>Mp_Mailplatformconnector_Model_Newsletter_Subscriber</subscriber>
26
+ </rewrite>
27
+ </newsletter>
28
+ </models>
29
+ <helpers>
30
+ <mailplatform>
31
+ <class>Mp_Mailplatformconnector_Helper</class>
32
+ </mailplatform>
33
+ </helpers>
34
+ <events>
35
+ <checkout_submit_all_after>
36
+ <observers>
37
+ <mailplatform_checkout_submit_all_after>
38
+ <type>singleton</type>
39
+ <class>mailplatform/observer</class>
40
+ <method>onCheckoutSubmit</method>
41
+ </mailplatform_checkout_submit_all_after>
42
+ </observers>
43
+ </checkout_submit_all_after>
44
+ </events>
45
+ </global>
46
+ <frontend>
47
+ <layout>
48
+ <updates>
49
+ <mp_mailplatform module="Mp_Mailplatformconnector">
50
+ <file>mailplatform.xml</file>
51
+ </mp_mailplatform>
52
+ </updates>
53
+ </layout>
54
+ </frontend>
55
+ <adminhtml>
56
+ <acl>
57
+ <resources>
58
+ <admin>
59
+ <children>
60
+ <system>
61
+ <children>
62
+ <config>
63
+ <children>
64
+ <mailplatform translate="title" module="Mp_Mailplatformconnector">
65
+ <title>mailplatform Section</title>
66
+ <sort_order>50</sort_order>
67
+ </mailplatform>
68
+ </children>
69
+ </config>
70
+ </children>
71
+ </system>
72
+ </children>
73
+ </admin>
74
+ </resources>
75
+ </acl>
76
+ </adminhtml>
77
+ <admin>
78
+ <routers>
79
+ <adminhtml>
80
+ <args>
81
+ <modules>
82
+ <mailplatform after="Mage_Adminhtml">Mp_Mailplatformconnector_Adminhtml</mailplatform>
83
+ </modules>
84
+ </args>
85
+ </adminhtml>
86
+ </routers>
87
+ </admin>
88
+ <default>
89
+ <mailplatform>
90
+ <general>
91
+ <active>0</active>
92
+ <url>http://client2.mailmailmail.net/xml.php</url>
93
+ <username>admin</username>
94
+ <token></token>
95
+ </general>
96
+ <subscribe>
97
+ <firstname>2</firstname>
98
+ <lastname>3</lastname>
99
+ <city>8</city>
100
+ <email_type>html</email_type>
101
+ <double_optin>0</double_optin>
102
+ <update_existing>1</update_existing>
103
+ </subscribe>
104
+ <unsubscribe>
105
+ <delete_member>0</delete_member>
106
+ <send_goodbye>0</send_goodbye>
107
+ <send_notify>0</send_notify>
108
+ <sendthankyou>1</sendthankyou>
109
+ </unsubscribe>
110
+ <log>
111
+ <error>1</error>
112
+ <success>0</success>
113
+ <file_name>mailplatform.log</file_name>
114
+ </log>
115
+ <crontab>
116
+ <sync_subscribers>0</sync_subscribers>
117
+ <sync_categories>0</sync_categories>
118
+ </crontab>
119
+ </mailplatform>
120
+ </default>
121
+ <crontab>
122
+ <jobs>
123
+ <mailplatform_sync>
124
+ <schedule>
125
+ <cron_expr>0 */12 * * *</cron_expr>
126
+ </schedule>
127
+ <run>
128
+ <model>mailplatform/cron::sync</model>
129
+ </run>
130
+ </mailplatform_sync>
131
+ <mailplatform_sync_categories>
132
+ <schedule>
133
+ <cron_expr>0 */12 * * *</cron_expr>
134
+ </schedule>
135
+ <run>
136
+ <model>mailplatform/cron::updateCategories</model>
137
+ </run>
138
+ </mailplatform_sync_categories>
139
+ </jobs>
140
+ </crontab>
141
  </config>
app/code/community/Mp/{Mailplatform → Mailplatformconnector}/etc/system.xml RENAMED
File without changes
app/etc/modules/Mp_Mailplatformconnector.xml ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <config>
3
+ <modules>
4
+ <Mp_Mailplatformconnector>
5
+ <active>true</active>
6
+ <codePool>community</codePool>
7
+ </Mp_Mailplatformconnector>
8
+ </modules>
9
+ </config>
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>mailplatformconnector</name>
4
- <version>2.0.1.1</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
@@ -27,9 +27,9 @@ Alternated code by Magento standards&#xD;
27
  Corrected English grammar&#xD;
28
  Tested on Magento CE 1.7, 1.8 and 1.9</notes>
29
  <authors><author><name>ADEO WEB</name><user>adeoweb</user><email>info@adeoweb.biz</email></author></authors>
30
- <date>2015-09-03</date>
31
- <time>09:25:45</time>
32
- <contents><target name="magecommunity"><dir name="Mp"><dir name="Mailplatform"><dir name="Block"><dir name="Adminhtml"><dir name="Newsletter"><file name="Subscriber.php" hash="04d5f7999eb5e18cbe528f585177428b"/></dir><dir name="System"><dir name="Config"><dir name="Form"><dir name="Button"><file name="Synccategories.php" hash="237a2c689a921fdd1748343716b3d7f4"/></dir></dir></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="4a1873bfdc8c736ae3f8d281cb1276cf"/></dir><dir name="Model"><file name="Cron.php" hash="1e02e375198838ab25293bb6d87caba5"/><file name="Customfields.php" hash="bbf9a084f878cd3d41d5377b791070fb"/><file name="Emailtype.php" hash="f36192a5e1049df8794c5b76b8531b44"/><file name="Listids.php" hash="e2d44e356c32f0f2e0712e1b1b629b6b"/><file name="Lists.php" hash="06bebcece5b71cfdc8aaca78b991eabb"/><dir name="Newsletter"><file name="Subscriber.php" hash="7dc000082f10fd959e49ec7fe7f84c40"/></dir><file name="Observer.php" hash="d246f5c88ce2e3e95fe0e8e91ab8caf2"/><file name="Request.php" hash="92d34f897a63646c962fc5c716addbdd"/><file name="Subscribers.php" hash="e65553389baba4d6083d1cfff5d74dd2"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="MailplatformController.php" hash="ac3f091ea5aa85930c716d35898e49ef"/></dir></dir><dir name="etc"><file name="config.xml" hash="ba902452978e26a7b3b394b111551f8e"/><file name="system.xml" hash="540080ea0e3cef7a1d4678c20b05e535"/></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="mailplatform"><dir name="system"><dir name="config"><file name="button.phtml" hash="319d6ec55fc8a3cdf595aacfc42cfa8c"/></dir></dir></dir><dir name="newsletter"><dir name="subscriber"><file name="list_mailplatform.phtml" hash="9360f96d57fb8c9d2ade7b2cd564f5d7"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="mailplatform.xml" hash="7c7bb306998b8773091791b2c9650e8c"/></dir><dir name="template"><dir name="mailplatform"><dir name="checkout"><file name="subscribe.phtml" hash="01b1aaf72784ab6d1bf36d748e13bec2"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Mp_Mailplatform.xml" hash=""/></dir></target></contents>
33
  <compatible/>
34
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
35
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>mailplatformconnector</name>
4
+ <version>2.0.1.2</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
27
  Corrected English grammar&#xD;
28
  Tested on Magento CE 1.7, 1.8 and 1.9</notes>
29
  <authors><author><name>ADEO WEB</name><user>adeoweb</user><email>info@adeoweb.biz</email></author></authors>
30
+ <date>2015-11-12</date>
31
+ <time>10:49:20</time>
32
+ <contents><target name="magecommunity"><dir name="Mp"><dir name="Mailplatformconnector"><dir name="Block"><dir name="Adminhtml"><dir name="Newsletter"><file name="Subscriber.php" hash="9901b2d57542e349752d4f632bea7170"/></dir><dir name="System"><dir name="Config"><dir name="Form"><dir name="Button"><file name="Synccategories.php" hash="108b23568036ae66d5d7a53372d39765"/></dir></dir></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="9f8bf084d0a69e99313bbfa6284949d2"/></dir><dir name="Model"><file name="Cron.php" hash="f46bfcad0e097dae62d8e699b4775b4f"/><file name="Customfields.php" hash="2a0f3492c3ae037707e279ddaa2bd995"/><file name="Emailtype.php" hash="27b95214db75122aa1f6556ae88327cd"/><file name="Listids.php" hash="33936c75d680ce565b005c9e6799a4f8"/><file name="Lists.php" hash="51b49db45a11d140625224c313b62a1d"/><dir name="Newsletter"><file name="Subscriber.php" hash="dd98f7df8a47d4ecfa1f6ed544fdca09"/></dir><file name="Observer.php" hash="141cbd3b7f709b45b2372f3d60e5c71d"/><file name="Request.php" hash="110eebef447266083128b42e3d70eda1"/><file name="Subscribers.php" hash="0eada0a124fa45297f95b36913dcdb8a"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="MailplatformController.php" hash="c94c5a6b2eea1772f7689036c5a6a3f3"/></dir></dir><dir name="etc"><file name="config.xml" hash="5a5083375865ce5d5ebf0659f13a1d8c"/><file name="system.xml" hash="540080ea0e3cef7a1d4678c20b05e535"/></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="mailplatform"><dir name="system"><dir name="config"><file name="button.phtml" hash="319d6ec55fc8a3cdf595aacfc42cfa8c"/></dir></dir></dir><dir name="newsletter"><dir name="subscriber"><file name="list_mailplatform.phtml" hash="9360f96d57fb8c9d2ade7b2cd564f5d7"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="mailplatform.xml" hash="7c7bb306998b8773091791b2c9650e8c"/></dir><dir name="template"><dir name="mailplatform"><dir name="checkout"><file name="subscribe.phtml" hash="01b1aaf72784ab6d1bf36d748e13bec2"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Mp_Mailplatformconnector.xml" hash="14ea619d56358be2ca54d99ca0d6bf6e"/></dir></target></contents>
33
  <compatible/>
34
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
35
  </package>