dMkPostman - Version 1.1.4

Version Notes

Improvements for code documentation

Download this release

Release Info

Developer Holger Lösken
Extension dMkPostman
Version 1.1.4
Comparing to
See all releases


Code changes from version 1.1.3 to 1.1.4

app/code/local/DMK/Postman/Model/Observer.php CHANGED
@@ -71,9 +71,10 @@ class DMK_Postman_Model_Observer {
71
 
72
  /**
73
  * Send the register email
 
74
  * @access public
75
  * @param Varien_Event_Observer $observer
76
- * @return bool
77
  */
78
  public function sendRegisterEmail($observer)
79
  {
@@ -133,9 +134,10 @@ class DMK_Postman_Model_Observer {
133
 
134
  /**
135
  * Send a testnewsletter email
 
136
  * @access public
137
  * @param Varien_Event_Observer $observer
138
- * @return void
139
  */
140
  public function sendTestnewsletterEmail($observer)
141
  {
@@ -202,7 +204,7 @@ class DMK_Postman_Model_Observer {
202
  * Send a newsletter email
203
  * @access public
204
  * @param Varien_Event_Observer $observer
205
- * @return void
206
  */
207
  public function sendNewsletterEmail($observer)
208
  {
71
 
72
  /**
73
  * Send the register email
74
+ *
75
  * @access public
76
  * @param Varien_Event_Observer $observer
77
+ * @return boolean
78
  */
79
  public function sendRegisterEmail($observer)
80
  {
134
 
135
  /**
136
  * Send a testnewsletter email
137
+ *
138
  * @access public
139
  * @param Varien_Event_Observer $observer
140
+ * @return boolean
141
  */
142
  public function sendTestnewsletterEmail($observer)
143
  {
204
  * Send a newsletter email
205
  * @access public
206
  * @param Varien_Event_Observer $observer
207
+ * @return boolean
208
  */
209
  public function sendNewsletterEmail($observer)
210
  {
app/code/local/DMK/Postman/controllers/ActivateController.php CHANGED
@@ -34,6 +34,9 @@ class DMK_Postman_ActivateController extends Mage_Core_Controller_Front_Action
34
  {
35
  /**
36
  * Show the edit form for new registered subscribers to change newsletter format
 
 
 
37
  */
38
  public function editAction()
39
  {
@@ -59,6 +62,9 @@ class DMK_Postman_ActivateController extends Mage_Core_Controller_Front_Action
59
  /**
60
  * Show the success message for successfully editing the values for
61
  * new registered subscribers
 
 
 
62
  */
63
  public function successAction()
64
  {
@@ -115,6 +121,9 @@ class DMK_Postman_ActivateController extends Mage_Core_Controller_Front_Action
115
 
116
  /**
117
  * Validate the email token
 
 
 
118
  */
119
  public function validateAction()
120
  {
@@ -138,6 +147,9 @@ class DMK_Postman_ActivateController extends Mage_Core_Controller_Front_Action
138
 
139
  /**
140
  * Help function for building the current URL
 
 
 
141
  */
142
  private function _getValidationUrl()
143
  {
@@ -154,6 +166,9 @@ class DMK_Postman_ActivateController extends Mage_Core_Controller_Front_Action
154
 
155
  /**
156
  * Help function for getting the token
 
 
 
157
  */
158
  private function _getToken()
159
  {
34
  {
35
  /**
36
  * Show the edit form for new registered subscribers to change newsletter format
37
+ *
38
+ * @access public
39
+ * @return void
40
  */
41
  public function editAction()
42
  {
62
  /**
63
  * Show the success message for successfully editing the values for
64
  * new registered subscribers
65
+ *
66
+ * @access public
67
+ * @return void
68
  */
69
  public function successAction()
70
  {
121
 
122
  /**
123
  * Validate the email token
124
+ *
125
+ * @access public
126
+ * @return void
127
  */
128
  public function validateAction()
129
  {
147
 
148
  /**
149
  * Help function for building the current URL
150
+ *
151
+ * @access private
152
+ * @return mixed
153
  */
154
  private function _getValidationUrl()
155
  {
166
 
167
  /**
168
  * Help function for getting the token
169
+ *
170
+ * @access private
171
+ * @return string
172
  */
173
  private function _getToken()
174
  {
app/code/local/DMK/Postman/controllers/DeactivateController.php CHANGED
@@ -30,14 +30,14 @@
30
  * @package DMK Postman
31
  */
32
 
33
-
34
  class DMK_Postman_DeactivateController extends Mage_Core_Controller_Front_Action {
35
 
36
- /*
37
- * Check: User url and is check is already active? If yes delete this record.
38
- * Show: Show user is deleted or unknown url.
39
- */
40
-
 
41
  public function indexAction(){
42
  $this->loadLayout();
43
  $user = Mage::helper('postman/Email')->checkActivationUrl(Mage::helper('core/url')->getCurrentUrl(),1);
30
  * @package DMK Postman
31
  */
32
 
 
33
  class DMK_Postman_DeactivateController extends Mage_Core_Controller_Front_Action {
34
 
35
+ /*
36
+ * Check: User url and is check is already active? If yes delete this record.
37
+ * Show: Show user is deleted or unknown url.
38
+ * @access public
39
+ * @return void
40
+ */
41
  public function indexAction(){
42
  $this->loadLayout();
43
  $user = Mage::helper('postman/Email')->checkActivationUrl(Mage::helper('core/url')->getCurrentUrl(),1);
app/code/local/DMK/Postman/controllers/IndexController.php CHANGED
@@ -39,6 +39,7 @@ class DMK_Postman_IndexController extends Mage_Core_Controller_Front_Action
39
 
40
  /**
41
  * Method to prepare the display
 
42
  * @access public
43
  * @return void
44
  */
@@ -50,6 +51,7 @@ class DMK_Postman_IndexController extends Mage_Core_Controller_Front_Action
50
 
51
  /**
52
  * Evaluate tracking code and increment the newsletter open count
 
53
  * @access public
54
  * @return void;
55
  */
@@ -67,6 +69,7 @@ class DMK_Postman_IndexController extends Mage_Core_Controller_Front_Action
67
 
68
  /**
69
  * Acton when user (un)subscribes for the newsletter
 
70
  * @access public
71
  * @return void
72
  */
@@ -104,7 +107,8 @@ class DMK_Postman_IndexController extends Mage_Core_Controller_Front_Action
104
 
105
  /**
106
  * Check if user is already logged in
107
- *
 
108
  * @return boolean
109
  */
110
  private function _isLoggedIn()
@@ -120,6 +124,7 @@ class DMK_Postman_IndexController extends Mage_Core_Controller_Front_Action
120
  /**
121
  * Gets the Id of the current user, that is logged in
122
  *
 
123
  * @return int
124
  */
125
  private function _getCurrentUserId()
@@ -140,7 +145,10 @@ class DMK_Postman_IndexController extends Mage_Core_Controller_Front_Action
140
 
141
 
142
  /**
143
- * Get the object of the current user, that is logged in
 
 
 
144
  */
145
  private function _getCurrentUser()
146
  {
@@ -152,9 +160,10 @@ class DMK_Postman_IndexController extends Mage_Core_Controller_Front_Action
152
 
153
 
154
  /**
155
- * Check, if user is already subscribed to newsletter
156
  *
157
- * @return bool
 
158
  */
159
  private function _isSubscribed()
160
  {
@@ -168,7 +177,10 @@ class DMK_Postman_IndexController extends Mage_Core_Controller_Front_Action
168
 
169
 
170
  /**
171
- * Get the subscriber from postman_subscribers
 
 
 
172
  */
173
  private function _getPostmanSubscriber()
174
  {
@@ -187,11 +199,11 @@ class DMK_Postman_IndexController extends Mage_Core_Controller_Front_Action
187
 
188
 
189
  /**
190
- * Set the checkbox 'wantnewsletter'
191
- *
192
- * @param bool $w true if checkbox is checked, false if not
193
  *
194
- * @return mixed
 
 
195
  */
196
  private function _wantNewsletter($w=0)
197
  {
@@ -204,7 +216,10 @@ class DMK_Postman_IndexController extends Mage_Core_Controller_Front_Action
204
  }
205
 
206
  /**
207
- * Check if disclaimer/haftungsausschluss has been accepted
 
 
 
208
  */
209
  private function _hasDisclaimerAccepted()
210
  {
@@ -212,14 +227,14 @@ class DMK_Postman_IndexController extends Mage_Core_Controller_Front_Action
212
  }
213
 
214
  /**
215
- * Generate activate and deactivate links
216
- *
217
- * @param string @ctrl Controller action
218
- * @param string @action Action from controller
219
- * @param array $params Parameter that can be passed to the method,
220
- * f.ex. the token
221
- *
222
- * @return string
223
  */
224
  private function _generateLinks($ctrl, $action, $params=array())
225
  {
@@ -231,9 +246,11 @@ class DMK_Postman_IndexController extends Mage_Core_Controller_Front_Action
231
 
232
 
233
  /**
234
- * Creates a layout block with the appropriate error/success messages
235
- *
236
- * @param array $block Block, name and template that should be created
 
 
237
  */
238
  private function _generateBlock($block)
239
  {
@@ -246,8 +263,10 @@ class DMK_Postman_IndexController extends Mage_Core_Controller_Front_Action
246
 
247
  /**
248
  * Load and update the page layout with the messages
249
- *
250
- * @param type $block
 
 
251
  */
252
  private function _updateLayout($block=array())
253
  {
@@ -261,11 +280,11 @@ class DMK_Postman_IndexController extends Mage_Core_Controller_Front_Action
261
  }
262
 
263
  /**
264
- * Write/Delete the customer to DB
265
- *
266
- * @param bool $w Customer want newsletter or not
267
- *
268
- * @return void
269
  */
270
  private function _update($w)
271
  {
39
 
40
  /**
41
  * Method to prepare the display
42
+ *
43
  * @access public
44
  * @return void
45
  */
51
 
52
  /**
53
  * Evaluate tracking code and increment the newsletter open count
54
+ *
55
  * @access public
56
  * @return void;
57
  */
69
 
70
  /**
71
  * Acton when user (un)subscribes for the newsletter
72
+ *
73
  * @access public
74
  * @return void
75
  */
107
 
108
  /**
109
  * Check if user is already logged in
110
+ *
111
+ * @access private
112
  * @return boolean
113
  */
114
  private function _isLoggedIn()
124
  /**
125
  * Gets the Id of the current user, that is logged in
126
  *
127
+ * @access private
128
  * @return int
129
  */
130
  private function _getCurrentUserId()
145
 
146
 
147
  /**
148
+ * Get the object of the current user, that is logged in
149
+ *
150
+ * @access private
151
+ * @return Mage_Customer_Model_Session
152
  */
153
  private function _getCurrentUser()
154
  {
160
 
161
 
162
  /**
163
+ * Check, if user is already subscribed to newsletter
164
  *
165
+ * @access private
166
+ * @return bool
167
  */
168
  private function _isSubscribed()
169
  {
177
 
178
 
179
  /**
180
+ * Get the subscriber from postman_subscribers
181
+ *
182
+ * @access private
183
+ * @return DMK_Postman_Model_Subscribers_Subscribers
184
  */
185
  private function _getPostmanSubscriber()
186
  {
199
 
200
 
201
  /**
202
+ * Set the checkbox 'wantnewsletter'
 
 
203
  *
204
+ * @access private
205
+ * @param bool $w true if checkbox is checked, false if not
206
+ * @return mixed
207
  */
208
  private function _wantNewsletter($w=0)
209
  {
216
  }
217
 
218
  /**
219
+ * Check if disclaimer/haftungsausschluss has been accepted
220
+ *
221
+ * @access private
222
+ * @return string
223
  */
224
  private function _hasDisclaimerAccepted()
225
  {
227
  }
228
 
229
  /**
230
+ * Generate activate and deactivate links
231
+ *
232
+ * @access private
233
+ * @param string @ctrl Controller action
234
+ * @param string @action Action from controller
235
+ * @param array $params Parameter that can be passed to the method,
236
+ * f.ex. the token
237
+ * @return string
238
  */
239
  private function _generateLinks($ctrl, $action, $params=array())
240
  {
246
 
247
 
248
  /**
249
+ * Creates a layout block with the appropriate error/success messages
250
+ *
251
+ * @access private
252
+ * @param array $block Block, name and template that should be created
253
+ * @return Mage_Core_Block_Abstract
254
  */
255
  private function _generateBlock($block)
256
  {
263
 
264
  /**
265
  * Load and update the page layout with the messages
266
+ *
267
+ * @param private
268
+ * @param type $block
269
+ * @return void
270
  */
271
  private function _updateLayout($block=array())
272
  {
280
  }
281
 
282
  /**
283
+ * Write/Delete the customer to DB
284
+ *
285
+ * @access private
286
+ * @param bool $w Customer want newsletter or not
287
+ * @return void
288
  */
289
  private function _update($w)
290
  {
app/code/local/DMK/Postman/controllers/Newsletter/ManageController.php CHANGED
@@ -3,6 +3,12 @@
3
  require_once 'Mage/Newsletter/controllers/ManageController.php';
4
  class DMK_Postman_Newsletter_ManageController extends Mage_Newsletter_ManageController
5
  {
 
 
 
 
 
 
6
  public function indexAction()
7
  {
8
  $this->loadLayout();
@@ -16,6 +22,12 @@ class DMK_Postman_Newsletter_ManageController extends Mage_Newsletter_ManageCont
16
  $this->renderLayout();
17
  }
18
 
 
 
 
 
 
 
19
  public function saveAction()
20
  {
21
  if (!$this->_validateFormKey()) {
3
  require_once 'Mage/Newsletter/controllers/ManageController.php';
4
  class DMK_Postman_Newsletter_ManageController extends Mage_Newsletter_ManageController
5
  {
6
+ /**
7
+ * Index action for newsletter subscription
8
+ *
9
+ * @access public
10
+ * @return void
11
+ */
12
  public function indexAction()
13
  {
14
  $this->loadLayout();
22
  $this->renderLayout();
23
  }
24
 
25
+ /**
26
+ * Save customer subscription
27
+ *
28
+ * @access public
29
+ * @return void
30
+ */
31
  public function saveAction()
32
  {
33
  if (!$this->_validateFormKey()) {
app/code/local/DMK/Postman/etc/config.xml CHANGED
@@ -21,7 +21,7 @@
21
  * versions in the future. If you wish to customize Magento for your
22
  * needs please refer to http://www.magentocommerce.com for more information.
23
  *
24
- * @version 1.1.3
25
  * @package DMK Postman
26
  * @copyright (C) 2011 das Medienkombinat <kontakt@das-medienkombinat.de>
27
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
@@ -31,7 +31,7 @@
31
  <config>
32
  <modules>
33
  <DMK_Postman>
34
- <version>1.1.3</version>
35
  </DMK_Postman>
36
  </modules>
37
 
@@ -138,10 +138,10 @@
138
  <table>dmk_postman_newsletters_lists</table>
139
  </postman_newsletters_lists>
140
  <postman_newsletters_statistic_basic>
141
- <table>dmk_postman_newsletter_statistic</table>
142
  </postman_newsletters_statistic_basic>
143
  <postman_newsletters_template>
144
- <table>dmk_postman_newsletter_template</table>
145
  </postman_newsletters_template>
146
  <postman_sendmailcontent>
147
  <table>dmk_postman_sendmailcontent</table>
21
  * versions in the future. If you wish to customize Magento for your
22
  * needs please refer to http://www.magentocommerce.com for more information.
23
  *
24
+ * @version 1.1.4
25
  * @package DMK Postman
26
  * @copyright (C) 2011 das Medienkombinat <kontakt@das-medienkombinat.de>
27
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
31
  <config>
32
  <modules>
33
  <DMK_Postman>
34
+ <version>1.1.4</version>
35
  </DMK_Postman>
36
  </modules>
37
 
138
  <table>dmk_postman_newsletters_lists</table>
139
  </postman_newsletters_lists>
140
  <postman_newsletters_statistic_basic>
141
+ <table>dmk_postman_newsletters_statistic_basic</table>
142
  </postman_newsletters_statistic_basic>
143
  <postman_newsletters_template>
144
+ <table>dmk_postman_newsletters_template</table>
145
  </postman_newsletters_template>
146
  <postman_sendmailcontent>
147
  <table>dmk_postman_sendmailcontent</table>
app/code/local/DMK/Postman/sql/postman_setup/mysql4-install-0.1.0.php CHANGED
@@ -19,7 +19,7 @@
19
  * versions in the future. If you wish to customize Magento for your
20
  * needs please refer to http://www.magentocommerce.com for more information.
21
  *
22
- * @version 0.1.0
23
  * @package DMK Postman
24
  * @copyright (C) 2011 das medienkombinat <kontakt@das-medienkombinat.de>
25
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
@@ -174,7 +174,7 @@ CREATE TABLE {$this->getTable('dmk_postman_newsletters_statistic_basic')} (
174
  PRIMARY KEY (`id`)
175
  ) ENGINE=InnoDB AUTO_INCREMENT=81 DEFAULT CHARSET=utf8;
176
 
177
- /*Table structure for table `dmk_postman_newsletter_template` */
178
 
179
  DROP TABLE IF EXISTS {$this->getTable('dmk_postman_newsletters_template')};
180
  CREATE TABLE {$this->getTable('dmk_postman_newsletters_template')} (
@@ -193,4 +193,4 @@ INSERT INTO {$this->getTable('dmk_postman_newsletters_template')} VALUES ('2', '
193
  INSERT INTO {$this->getTable('dmk_postman_newsletters_template')} VALUES ('3', 'Template with sidebar', '<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\r\n<style type=\"text/css\"> \r\n body{margin:0; padding:0; font-family:Arial;}\r\n img{border:0; height:auto; line-height:100%; outline:none; text-decoration:none;}\r\n table td{border-collapse:collapse;}\r\n</style>\r\n<title>Testnewsletter</title>\r\n</head>\r\n<body style=\"font-family:Verdana,sans-serif;width:650px;margin:0;padding:0;font-size:12px;\">\r\n<table style=\"padding: 5px 20px 20px 20px; font-size: 12px; width: 650px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"650px\">\r\n<tbody>\r\n<tr style=\"height: 150px;\">\r\n<td width=\"120px\"><img src=\"{{skin url=images/postman}}/mkpostman_logo.jpg\" alt=\"{{var store.getFrontendName()}}\" _package=\"default\" /></td>\r\n<td>\r\n<h1 style=\"color: #0064a5; font-weight: bold;\">Demo-Shop</h1>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"10\" width=\"120px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"font-size: 12px; padding: 5px 15px; background-color: #0064a5; color: #fff; border-top: 1px solid #5497c2; border-left: 1px solid #5497c2; border-bottom: 1px solid #003c61; border-right: 1px solid #003c61;\">Kategorie1</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 12px; padding: 5px 15px; background-color: #0064a5; color: #fff; border-top: 1px solid #5497c2; border-left: 1px solid #5497c2; border-bottom: 1px solid #003c61; border-right: 1px solid #003c61;\">Kategorie2</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 12px; padding: 5px 15px; background-color: #0064a5; color: #fff; border-top: 1px solid #5497c2; border-left: 1px solid #5497c2; border-bottom: 1px solid #003c61; border-right: 1px solid #003c61;\">Kategorie3</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 12px; padding: 5px 15px; background-color: #0064a5; color: #fff; border-top: 1px solid #5497c2; border-left: 1px solid #5497c2; border-bottom: 1px solid #003c61; border-right: 1px solid #003c61;\">Kategorie4</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 12px; padding: 5px 15px; background-color: #0064a5; color: #fff; border-top: 1px solid #5497c2; border-left: 1px solid #5497c2; border-bottom: 1px solid #003c61; border-right: 1px solid #003c61;\">Kategorie5</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td>\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"3\">\r\n<h2 style=\"color: #0064a5; font-weight: bold; margin-top: 0pt; line-height: 19px; margin-bottom: 15px;\">HEADLINE</h2>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\">\r\n<h3 style=\"font-weight: normal; margin-bottom: 0pt;\">SUBHEADER</h3>\r\n<p style=\"margin-top: 0pt; font-size: 12px;\">Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. <br /><br />Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td><br /> \r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"85px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"font-size: 12px; padding: 5px 15px; background-color: #0064a5; color: #fff; border-top: 1px solid #5497c2; border-left: 1px solid #5497c2; border-bottom: 1px solid #003c61; border-right: 1px solid #003c61;\">Zum Shop</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\"><br /> \r\n<hr style=\"border: 1px dashed #0064a5;\" />\r\n<br /></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\">\r\n<h2 style=\"color: #0064a5; font-weight: bold; margin-top: 15px;\">HEADLINE2</h2>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 155px; padding-bottom: 20px;\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"125px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"font-size: 12px; border: 1px solid #0064a5; width: 125px;\"><img src=\"{{skin url=images/postman}}/platzhalter_mit_sidebar.jpg\" alt=\"{{var store.getFrontendName()}}\" _package=\"default\" /></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 12px; border: 1px solid #0064a5; width: 125px; text-align: center; line-height: 20px; height: 20px; background-color: #3780b0; color: #ffffff;\">Preis in &euro;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td style=\"width: 155px; padding-bottom: 20px;\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"125px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"font-size: 12px; border: 1px solid #0064a5; width: 125px;\"><img src=\"{{skin url=images/postman}}/platzhalter_mit_sidebar.jpg\" alt=\"{{var store.getFrontendName()}}\" _package=\"default\" /></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 12px; border: 1px solid #0064a5; width: 125px; text-align: center; line-height: 20px; height: 20px; background-color: #3780b0; color: #ffffff;\">Preis in &euro;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td style=\"width: 155px; padding-bottom: 20px;\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"125px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"font-size: 12px; border: 1px solid #0064a5; width: 125px;\"><img src=\"{{skin url=images/postman}}/platzhalter_mit_sidebar.jpg\" alt=\"{{var store.getFrontendName()}}\" _package=\"default\" /></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 12px; border: 1px solid #0064a5; width: 125px; text-align: center; line-height: 20px; height: 20px; background-color: #3780b0; color: #ffffff;\">Preis in &euro;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 155px; padding-bottom: 20px;\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"125px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"font-size: 12px; border: 1px solid #0064a5; width: 125px;\"><img src=\"{{skin url=images/postman}}/platzhalter_mit_sidebar.jpg\" alt=\"{{var store.getFrontendName()}}\" _package=\"default\" /></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 12px; border: 1px solid #0064a5; width: 125px; text-align: center; line-height: 20px; height: 20px; background-color: #3780b0; color: #ffffff;\">Preis in &euro;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td style=\"width: 155px; padding-bottom: 20px;\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"125px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"font-size: 12px; border: 1px solid #0064a5; width: 125px;\"><img src=\"{{skin url=images/postman}}/platzhalter_mit_sidebar.jpg\" alt=\"{{var store.getFrontendName()}}\" _package=\"default\" /></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 12px; border: 1px solid #0064a5; width: 125px; text-align: center; line-height: 20px; height: 20px; background-color: #3780b0; color: #ffffff;\">Preis in &euro;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td style=\"width: 155px; padding-bottom: 20px;\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"125px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"font-size: 12px; border: 1px solid #0064a5; width: 125px;\"><img src=\"{{skin url=images/postman}}/platzhalter_mit_sidebar.jpg\" alt=\"{{var store.getFrontendName()}}\" _package=\"default\" /></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 12px; border: 1px solid #0064a5; width: 125px; text-align: center; line-height: 20px; height: 20px; background-color: #3780b0; color: #ffffff;\">Preis in &euro;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"85px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"font-size: 12px; padding: 5px 15px; background-color: #0064a5; color: #fff; border-top: 1px solid #5497c2; border-left: 1px solid #5497c2; border-bottom: 1px solid #003c61; border-right: 1px solid #003c61;\">Zum Shop</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>&nbsp;</td>\r\n<td colspan=\"3\"><br />\r\n<hr style=\"border: 1px dashed #0064a5;\" />\r\n<br /></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; width: 120px;\">Verantwortlich f&uuml;r diesen<br />Newsletter ist die<br /><a style=\"text-decoration: underline; color: #0064a5;\">Mustermann GmbH</a><br /><br /> {{config path=\'general/store_information/address\'}}</td>\r\n<td align=\"center\">\r\n<h2 style=\"color: #0064a5; font-weight: bold;\">SIE FINDEN UNS AUCH BEI:</h2>\r\nFB | TW <br /> <br /> <span style=\"font-size: 9px;\">Wenn Sie diesen Newsletter nicht mehr erhalten wollen, klicken Sie bitte <a href=\"{{var unsubscribeLink}}\">hier</a>.</span></td>\r\n</tr>\r\n<tr>\r\n<td>&nbsp;</td>\r\n<td colspan=\"3\"><br />\r\n<hr style=\"border: 1px dashed #0064a5;\" />\r\n<br /></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</body>\r\n</html>', '2012-05-01 15:00:00', '2012-05-01 15:00:00', null);
194
  ");
195
 
196
- $installer->endSetup;
19
  * versions in the future. If you wish to customize Magento for your
20
  * needs please refer to http://www.magentocommerce.com for more information.
21
  *
22
+ * @version 1.1.4
23
  * @package DMK Postman
24
  * @copyright (C) 2011 das medienkombinat <kontakt@das-medienkombinat.de>
25
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
174
  PRIMARY KEY (`id`)
175
  ) ENGINE=InnoDB AUTO_INCREMENT=81 DEFAULT CHARSET=utf8;
176
 
177
+ /*Table structure for table `dmk_postman_newsletters_template` */
178
 
179
  DROP TABLE IF EXISTS {$this->getTable('dmk_postman_newsletters_template')};
180
  CREATE TABLE {$this->getTable('dmk_postman_newsletters_template')} (
193
  INSERT INTO {$this->getTable('dmk_postman_newsletters_template')} VALUES ('3', 'Template with sidebar', '<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\r\n<style type=\"text/css\"> \r\n body{margin:0; padding:0; font-family:Arial;}\r\n img{border:0; height:auto; line-height:100%; outline:none; text-decoration:none;}\r\n table td{border-collapse:collapse;}\r\n</style>\r\n<title>Testnewsletter</title>\r\n</head>\r\n<body style=\"font-family:Verdana,sans-serif;width:650px;margin:0;padding:0;font-size:12px;\">\r\n<table style=\"padding: 5px 20px 20px 20px; font-size: 12px; width: 650px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"650px\">\r\n<tbody>\r\n<tr style=\"height: 150px;\">\r\n<td width=\"120px\"><img src=\"{{skin url=images/postman}}/mkpostman_logo.jpg\" alt=\"{{var store.getFrontendName()}}\" _package=\"default\" /></td>\r\n<td>\r\n<h1 style=\"color: #0064a5; font-weight: bold;\">Demo-Shop</h1>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"10\" width=\"120px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"font-size: 12px; padding: 5px 15px; background-color: #0064a5; color: #fff; border-top: 1px solid #5497c2; border-left: 1px solid #5497c2; border-bottom: 1px solid #003c61; border-right: 1px solid #003c61;\">Kategorie1</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 12px; padding: 5px 15px; background-color: #0064a5; color: #fff; border-top: 1px solid #5497c2; border-left: 1px solid #5497c2; border-bottom: 1px solid #003c61; border-right: 1px solid #003c61;\">Kategorie2</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 12px; padding: 5px 15px; background-color: #0064a5; color: #fff; border-top: 1px solid #5497c2; border-left: 1px solid #5497c2; border-bottom: 1px solid #003c61; border-right: 1px solid #003c61;\">Kategorie3</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 12px; padding: 5px 15px; background-color: #0064a5; color: #fff; border-top: 1px solid #5497c2; border-left: 1px solid #5497c2; border-bottom: 1px solid #003c61; border-right: 1px solid #003c61;\">Kategorie4</td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 12px; padding: 5px 15px; background-color: #0064a5; color: #fff; border-top: 1px solid #5497c2; border-left: 1px solid #5497c2; border-bottom: 1px solid #003c61; border-right: 1px solid #003c61;\">Kategorie5</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td>\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"3\">\r\n<h2 style=\"color: #0064a5; font-weight: bold; margin-top: 0pt; line-height: 19px; margin-bottom: 15px;\">HEADLINE</h2>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\">\r\n<h3 style=\"font-weight: normal; margin-bottom: 0pt;\">SUBHEADER</h3>\r\n<p style=\"margin-top: 0pt; font-size: 12px;\">Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. <br /><br />Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td><br /> \r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"85px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"font-size: 12px; padding: 5px 15px; background-color: #0064a5; color: #fff; border-top: 1px solid #5497c2; border-left: 1px solid #5497c2; border-bottom: 1px solid #003c61; border-right: 1px solid #003c61;\">Zum Shop</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\"><br /> \r\n<hr style=\"border: 1px dashed #0064a5;\" />\r\n<br /></td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\">\r\n<h2 style=\"color: #0064a5; font-weight: bold; margin-top: 15px;\">HEADLINE2</h2>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 155px; padding-bottom: 20px;\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"125px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"font-size: 12px; border: 1px solid #0064a5; width: 125px;\"><img src=\"{{skin url=images/postman}}/platzhalter_mit_sidebar.jpg\" alt=\"{{var store.getFrontendName()}}\" _package=\"default\" /></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 12px; border: 1px solid #0064a5; width: 125px; text-align: center; line-height: 20px; height: 20px; background-color: #3780b0; color: #ffffff;\">Preis in &euro;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td style=\"width: 155px; padding-bottom: 20px;\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"125px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"font-size: 12px; border: 1px solid #0064a5; width: 125px;\"><img src=\"{{skin url=images/postman}}/platzhalter_mit_sidebar.jpg\" alt=\"{{var store.getFrontendName()}}\" _package=\"default\" /></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 12px; border: 1px solid #0064a5; width: 125px; text-align: center; line-height: 20px; height: 20px; background-color: #3780b0; color: #ffffff;\">Preis in &euro;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td style=\"width: 155px; padding-bottom: 20px;\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"125px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"font-size: 12px; border: 1px solid #0064a5; width: 125px;\"><img src=\"{{skin url=images/postman}}/platzhalter_mit_sidebar.jpg\" alt=\"{{var store.getFrontendName()}}\" _package=\"default\" /></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 12px; border: 1px solid #0064a5; width: 125px; text-align: center; line-height: 20px; height: 20px; background-color: #3780b0; color: #ffffff;\">Preis in &euro;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 155px; padding-bottom: 20px;\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"125px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"font-size: 12px; border: 1px solid #0064a5; width: 125px;\"><img src=\"{{skin url=images/postman}}/platzhalter_mit_sidebar.jpg\" alt=\"{{var store.getFrontendName()}}\" _package=\"default\" /></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 12px; border: 1px solid #0064a5; width: 125px; text-align: center; line-height: 20px; height: 20px; background-color: #3780b0; color: #ffffff;\">Preis in &euro;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td style=\"width: 155px; padding-bottom: 20px;\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"125px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"font-size: 12px; border: 1px solid #0064a5; width: 125px;\"><img src=\"{{skin url=images/postman}}/platzhalter_mit_sidebar.jpg\" alt=\"{{var store.getFrontendName()}}\" _package=\"default\" /></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 12px; border: 1px solid #0064a5; width: 125px; text-align: center; line-height: 20px; height: 20px; background-color: #3780b0; color: #ffffff;\">Preis in &euro;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td style=\"width: 155px; padding-bottom: 20px;\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"125px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"font-size: 12px; border: 1px solid #0064a5; width: 125px;\"><img src=\"{{skin url=images/postman}}/platzhalter_mit_sidebar.jpg\" alt=\"{{var store.getFrontendName()}}\" _package=\"default\" /></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 12px; border: 1px solid #0064a5; width: 125px; text-align: center; line-height: 20px; height: 20px; background-color: #3780b0; color: #ffffff;\">Preis in &euro;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"85px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"font-size: 12px; padding: 5px 15px; background-color: #0064a5; color: #fff; border-top: 1px solid #5497c2; border-left: 1px solid #5497c2; border-bottom: 1px solid #003c61; border-right: 1px solid #003c61;\">Zum Shop</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>&nbsp;</td>\r\n<td colspan=\"3\"><br />\r\n<hr style=\"border: 1px dashed #0064a5;\" />\r\n<br /></td>\r\n</tr>\r\n<tr>\r\n<td style=\"font-size: 10px; width: 120px;\">Verantwortlich f&uuml;r diesen<br />Newsletter ist die<br /><a style=\"text-decoration: underline; color: #0064a5;\">Mustermann GmbH</a><br /><br /> {{config path=\'general/store_information/address\'}}</td>\r\n<td align=\"center\">\r\n<h2 style=\"color: #0064a5; font-weight: bold;\">SIE FINDEN UNS AUCH BEI:</h2>\r\nFB | TW <br /> <br /> <span style=\"font-size: 9px;\">Wenn Sie diesen Newsletter nicht mehr erhalten wollen, klicken Sie bitte <a href=\"{{var unsubscribeLink}}\">hier</a>.</span></td>\r\n</tr>\r\n<tr>\r\n<td>&nbsp;</td>\r\n<td colspan=\"3\"><br />\r\n<hr style=\"border: 1px dashed #0064a5;\" />\r\n<br /></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</body>\r\n</html>', '2012-05-01 15:00:00', '2012-05-01 15:00:00', null);
194
  ");
195
 
196
+ $installer->endSetup();
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>dMkPostman</name>
4
- <version>1.1.3</version>
5
  <stability>stable</stability>
6
  <license>OSL v3.0</license>
7
  <channel>community</channel>
@@ -12,11 +12,11 @@
12
  --------------------------------------------------------------------------------------------------------------------------&#xD;
13
  &#xD;
14
  MKPostman ist eine quelloffene Newsletter-L&#xF6;sung f&#xFC;r die E-Commerce-Plattform Magento. Das Tool bietet eine einfache, aber leistungsf&#xE4;hige L&#xF6;sung zur Unterst&#xFC;tzung von Ma&#xDF;nahmen im Bereich des E-Mail-Marketings und ist sowohl f&#xFC;r den privaten als auch kommerziellen Gebrauch nutzbar. Die intuitive Bedienbarkeit erm&#xF6;glicht unerfahrenen Magento-Nutzern ebenso wie Experten den m&#xFC;helosen Umgang mit dem System.</description>
15
- <notes>Fixed a problem with the newsletter template table and the missing file for tracking</notes>
16
  <authors><author><name>Holger L&#xF6;sken</name><user>holgerloesken</user><email>holger.loesken@das-medienkombinat.de</email></author></authors>
17
  <date>2012-05-25</date>
18
- <time>11:40:14</time>
19
- <contents><target name="magelocal"><dir name="DMK"><dir name="Postman"><dir name="Block"><dir name="Adminhtml"><dir name="Lists"><dir name="Edit"><file name="Form.php" hash="11e100df3f39a6acbdc5b74565c0a111"/></dir><file name="Edit.php" hash="48e49cb4b63b941aac698fb9ef622bb9"/><file name="Grid.php" hash="455f425899f5254fecf9491369a0c0df"/></dir><file name="Lists.php" hash="a74f853a8912906bdcce67e2e96c02c6"/><dir name="Newsletters"><dir name="Queue"><file name="Grid.php" hash="5dee3fc2c885d9fb2664d0fe3a18e16a"/></dir><file name="Queue.php" hash="c1f6ae8c1b7cda1124056cf94e975139"/><dir name="Sent"><file name="Grid.php" hash="7e507b6ecd0f39530758c8fe430f5bf4"/></dir><file name="Sent.php" hash="23efff74da2cb592e95125dba9ee9ea2"/><dir name="Statistic"><file name="Grid.php" hash="53eec3dbcb8544f61ad8307e716448db"/><file name="View.php" hash="ace0dd1d6d2bcf928c72de2aaa919dd2"/></dir><file name="Statistic.php" hash="b76aac677a95d09c476ead1b66a37445"/><dir name="Template"><dir name="Edit"><file name="Form.php" hash="9f48ee9f4ebf6994af7cd3a56cc44f04"/></dir><file name="Edit.php" hash="586173d087cce862dbe9931c8fc8ab07"/><file name="Grid.php" hash="3a59b187b4922c4a94aa607aa4c07285"/></dir><file name="Template.php" hash="ff896ff03a808129d17068ed36d0455b"/><dir name="Unsent"><dir name="Edit"><file name="Form.php" hash="3dc244d04e20df8bd67ad14309239e50"/><dir name="Tab"><file name="General.php" hash="b0a90c12079750c1bad394a508c24199"/><file name="Html.php" hash="94b0b0c5367dc772c2949602254d371f"/><file name="Text.php" hash="c8f3d7979167d11527fcbdf3761975f9"/></dir><file name="Tabs.php" hash="cae1cfbaa2becbae2e0f245f5d0fd9a0"/></dir><file name="Edit.php" hash="d6444a27cd75a9f233c65861a1d036f6"/><file name="Grid.php" hash="a99f0edbb6ed445999e7a6ad4be6811a"/></dir><file name="Unsent.php" hash="dcda22a49f2c0225efd75f524b379514"/></dir><dir name="Subscribers"><file name="Export.php" hash="05c2b2ec4f521cb4ba64999682bc61e1"/><dir name="Subscribers"><dir name="Edit"><file name="Form.php" hash="25bdfe30d1db2fff9d3ac9289fa23e64"/><dir name="Tab"><file name="Lists.php" hash="7dcfb82e2f281237da6969987d5014fe"/><file name="Main.php" hash="1b0507fe6c6551f1bbf832f6652f2b06"/></dir><file name="Tabs.php" hash="fded8705d37adb539b2ec707100b9058"/></dir><file name="Edit.php" hash="42921693cfe53202d1779b738335d03e"/><file name="Grid.php" hash="8ca077d856bbfffad2ddd0bfd105adfd"/></dir><file name="Subscribers.php" hash="e8d9316b9546432cdf5b9bd775d490c0"/><dir name="Testrecipients"><dir name="Edit"><file name="Form.php" hash="c9ff295b15d931848082b8123026721a"/></dir><file name="Edit.php" hash="eee832fb91cc200728277fdf61e6cab1"/><file name="Grid.php" hash="f44955eb95ead64ee1b418df7588cc5d"/></dir><file name="Testrecipients.php" hash="0e0e8523ff7050f611de29e46f2f5cf4"/></dir><dir name="Widget"><dir name="Grid"><dir name="Column"><dir name="Renderer"><file name="Action.php" hash="e9ab2e0ff73dfe65029355adb3ab718c"/></dir></dir><file name="Column.php" hash="3e6cd54871b78e38d74b2c224ecfc77d"/></dir></dir></dir><dir name="Frontend"><dir name="Customer"><dir name="Account"><dir name="Dashboard"><file name="Info.php" hash="3dfb4a47f6a44ae224847f2e254c2bf4"/></dir><file name="Dashboard.php" hash="e9775d781d048e09ecc1a2ab5c7d1589"/></dir><dir name="Form"><file name="Register.php" hash="d5389320075c6ec3e05e8b92ebd3233d"/></dir><file name="Newsletter.php" hash="08ab5b27ec101cf3cdfe56bc639d58a2"/></dir><dir name="Newsletter"><file name="Registration.php" hash="e5ad706e7823da48c69e77eba6fff9dc"/></dir></dir><dir name="Widget"><file name="Product.php" hash="df1e764cf6cedcd6bb140b60cc8e7a32"/></dir></dir><dir name="Helper"><file name="Data.php" hash="7990f87bb3fef2323952db52754bfccf"/><file name="Email.php" hash="58af8faf3cf904e700ec358e4ed162c1"/></dir><dir name="Model"><dir name="Config"><dir name="Source"><file name="Emailformat.php" hash="283aaf44d17072a6b7ce2c8573d0f00d"/></dir></dir><dir name="Email"><file name="Template.php" hash="543cfa4397fa434574bec0572092591f"/></dir><file name="Lists.php" hash="3710e39493d0a702cd81bd431d2991a6"/><dir name="Mysql4"><dir name="Lists"><file name="Collection.php" hash="fb0bf5acf8df6b5fac7498d95dfe467f"/></dir><file name="Lists.php" hash="e91d8fab4eaaf4dc6a657e022902f0c1"/><dir name="Newsletters"><dir name="Queue"><file name="Collection.php" hash="1a6342561086933688852fbb29467681"/></dir><file name="Queue.php" hash="1c2b1426676fc44173d2139f65cb4278"/><dir name="Queuecontent"><file name="Collection.php" hash="4be06a61d0ec769dc8d6217a3ba08fe2"/></dir><file name="Queuecontent.php" hash="3d7d36af4ba95ba0760d2c7446084cbb"/><dir name="Sent"><file name="Collection.php" hash="81d7ada926295e9af8a1f4623c26fffc"/></dir><file name="Sent.php" hash="47cc36df1880d493d8731e9ac0767822"/><dir name="Statistic"><dir name="Basic"><file name="Collection.php" hash="6a4e326fd588df5d643cd71d9528ad6a"/></dir><file name="Basic.php" hash="f499e07c3ab8f87487d71bc623b4bfe3"/></dir><dir name="Template"><file name="Collection.php" hash="b23386ac8ee4f840abaa3f6a9c1375bc"/></dir><file name="Template.php" hash="b7e35f242a24fd20fecd1efb5b558d4a"/><dir name="Unsent"><file name="Collection.php" hash="f0873c6e042f3a5162675887c9c9ad92"/></dir><file name="Unsent.php" hash="d18f140ab6e4020b9174a13d5d3de224"/></dir><dir name="Subscribers"><file name="Import.php" hash="843ecf95613a6a03fef36a0a3cb2d94e"/><dir name="Lists"><file name="Collection.php" hash="1d28e9096d1a7f65375aadc5f2ed2dd6"/></dir><file name="Lists.php" hash="894f77208b34a6b9fd4b10c4b2b4c394"/><dir name="Subscribers"><file name="Collection.php" hash="61663f09ca1c55afb59c86f3ea57fe45"/></dir><file name="Subscribers.php" hash="5a1e68caf04d91c948de7d969d7d19e8"/><dir name="Testrecipients"><file name="Collection.php" hash="a420ca9bc81b3079d94141a4469fdf81"/></dir><file name="Testrecipients.php" hash="1398617064be29cc5415dd49c5682751"/></dir></dir><dir name="Newsletters"><file name="Queue.php" hash="5871609b429df859d81d11c36f03feb3"/><file name="Sent.php" hash="09240df2bc90bc93ebc64e2e5694a5a5"/><dir name="Statistic"><file name="Basic.php" hash="e5996f3bf6f13bc58655af4e5a196cc1"/></dir><file name="Template.php" hash="5b8ea7c51bee011cfc8cff7b526dfab8"/><file name="Unsent.php" hash="20981352832e620c7b2652ec7443d6ce"/></dir><file name="Observer.php" hash="1dbd9ffc86474bdacf1567dc81488d65"/><dir name="Subscribers"><file name="Import.php" hash="6ddfd16e9067c0a406e54082b536531f"/><file name="Lists.php" hash="75690807457642cc83855ee0f94b8a83"/><file name="Subscribers.php" hash="c491f7a739c2c22488d00aa3668a997c"/><file name="Testrecipients.php" hash="e2aee05363d02c1a94b6b88f61a8effb"/></dir><dir name="TinyMce"><file name="Config.php" hash="e1df11a18efae66548e23a2284ca6fc2"/><file name="Observer.php" hash="db4de3b1c715ee150ae92f08c3fcdc80"/></dir><dir name="Variable"><file name="Config.php" hash="c617d9064193b89db3f87765d73b350d"/></dir></dir><dir name="controllers"><file name="ActivateController.php" hash="fff28eee8a6ecbc8dd9c0fca635fcd8e"/><dir name="Adminhtml"><file name="CustomerController.php" hash="b82b5eb4501a03eef0b592a7eeebd4c6"/><file name="ListsController.php" hash="82f893cfe70261cb46efe81cc46f3510"/><dir name="Newsletters"><file name="QueueController.php" hash="28411d11b7b8faf7ef796ee99f91639b"/><file name="SentController.php" hash="246c4b58770c9d2024da1802d7c3de92"/><file name="StatisticController.php" hash="4147936d0e0ed0fef071d660ae52abc7"/><file name="TemplateController.php" hash="de0f844ace41b4a89f805ba50ef59f47"/><file name="UnsentController.php" hash="37d98b3f7fd833e7d13a58057a3a763f"/></dir><dir name="Subscribers"><file name="ExportController.php" hash="421f79102d6b346970343942df63152b"/><file name="SubscribersController.php" hash="eac29febc08e8135aab7b8995f3c6b78"/><file name="TestrecipientsController.php" hash="3b421cb043784b15bd8d4209f00675fc"/></dir><file name="WidgetController.php" hash="50bde64959fa705a5cf3c21b08e67fab"/></dir><file name="DeactivateController.php" hash="4844da764eb8f276fefa8cad2904484a"/><file name="IndexController.php" hash="d160c4eda9fcc8d039a73bd4c0199f6e"/><dir name="Newsletter"><file name="ManageController.php" hash="73f40a50b5794a2a025ffbc9e6157344"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="6a531d27a25971e0965034e3ef28f0f1"/><file name="config.xml" hash="b742eb0a05453510ecbdb62af127697b"/><file name="system.xml" hash="1d83c6696ebac79fe22776f2333d6aa0"/><file name="widget.xml" hash="7a9fd9653660e36163c51db21095601e"/></dir><dir name="sql"><dir name="postman_setup"><file name="mysql4-install-0.1.0.php" hash="3ec46ecf5ec8fe56605e700b0b9de5f7"/></dir></dir></dir></dir><dir name="Varien"><dir name="Data"><dir name="Form"><dir name="Element"><file name="Fieldset.php" hash="8d0637ae5e0f219a1d40dfbab9026c52"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="jquery.jqplot"><file name="jquery.jqplot.min.css" hash="fc701228643bcc46a75e77dd3d119ba2"/></dir><dir name="jquery-ui-lightness"><dir name="images"><file name="ui-bg_diagonals-thick_18_b81900_40x40.png" hash="1c7fc3f027768438a5e12572a3ca1233"/><file name="ui-bg_diagonals-thick_20_666666_40x40.png" hash="f040b255ca13e693da34ab33c7d6b554"/><file name="ui-bg_flat_10_000000_40x100.png" hash="c18cd01623c7fed23c80d53e2f5e7c78"/><file name="ui-bg_glass_100_f6f6f6_1x400.png" hash="5f1847175ba18c41322cb9cb0581e0fb"/><file name="ui-bg_glass_100_fdf5ce_1x400.png" hash="d26e8f463195a7b86f86b7d550cfc114"/><file name="ui-bg_glass_65_ffffff_1x400.png" hash="e5a8f32e28fd5c27bf0fed33c8a8b9b5"/><file name="ui-bg_gloss-wave_35_f6a828_500x100.png" hash="58d2cd501e01573cf537089c694ba899"/><file name="ui-bg_highlight-soft_100_eeeeee_1x100.png" hash="384c3f17709ba0f809b023b6e7b10b84"/><file name="ui-bg_highlight-soft_75_ffe45c_1x100.png" hash="b806658954cb4d16ade8977af737f486"/><file name="ui-icons_222222_256x240.png" hash="ebe6b6902a408fbf9cac6379a1477525"/><file name="ui-icons_228ef1_256x240.png" hash="79f41c0765e9ec18562b20b0801d748b"/><file name="ui-icons_ef8c08_256x240.png" hash="ef9a6ccfe3b14041928ddc708665b226"/><file name="ui-icons_ffd27a_256x240.png" hash="ab8c30acc0e3608fb79e01fccf832c70"/><file name="ui-icons_ffffff_256x240.png" hash="342bc03f6264c75d3f1d7f99e34295b9"/></dir><file name="jquery-ui-1.8.16.custom.css" hash="3ce894effc03c489506c7d0dab5246d5"/></dir><dir name="js"><dir name="jquery"><file name="excanvas.min.js" hash="304cb5e2448f2acb6bc7dff48f0ab907"/><file name="jqplot.pieRenderer.min.js" hash="233097ea634e609e6bde641c06ead88f"/><file name="jquery-1.6.2.min.js" hash="523374ede30cc244f8873725032ef75c"/><file name="jquery-ui-1.8.16.custom.min.js" hash="d149f5bbe2b494a5f4f0aacf82511000"/><file name="jquery.jqplot.min.js" hash="0872837946ba9a9769b81bc0c21091a3"/></dir><file name="postman.js" hash="cb4d7409b4b582c2423687924443ca7d"/></dir><dir name="images"><dir name="postman"><file name="mkpostman_logo.jpg" hash="4eaf45cda3d1af129d309c4b8e8387f6"/><file name="platzhalter_mit_sidebar.jpg" hash="cb4458dd6caa07db20887966f9a81342"/><file name="platzhalter_ohne_sidebar.jpg" hash="4eb1e0c601996615f0e51f323a40d8df"/><file name="platzhalter_teaser.jpg" hash="4244f2a466d828c977fed31e0e88c9f2"/></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="de_DE"><dir name="dmk"><file name="DMK_Postman.csv" hash="b39cd7713b4523effb3fa01d621310b7"/></dir><dir name="template"><dir name="email"><dir name="postman"><file name="subscriber_confirm.html" hash="a113593b6a2b8523293da1598855ca88"/><file name="subscriber_confirm_unsubscribe_success.html" hash="3fbd137fa7b24e26cf2a8099c3f8653e"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="DMK_Postman.xml" hash="0ef5caadc94cd87b01009a4ebef7def3"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="postman"><file name="dialogbox.phtml" hash="eda868da21e15f0ccb3a0c9a605f1524"/><dir name="grid"><file name="container.phtml" hash="b5f4658e5434f28202ff203d4a468f68"/><file name="container_with_hints.phtml" hash="277b53b070e46b66971ae63d615167f8"/></dir><file name="magento_vars_js.phtml" hash="2a50c953681824a9d5d9170f0198bf8b"/><dir name="statistic"><file name="view.phtml" hash="e9f5e1a9152bb290ca759bc23d759417"/></dir></dir></dir><dir name="layout"><file name="postman.xml" hash="e92cafb88a5e8b6d365246fe11eaf1cc"/></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="postman"><dir name="newsletter"><dir name="activate"><file name="account_active.phtml" hash="58d95b39e620291317ad62400eb00c30"/><file name="account_already_active.phtml" hash="56b04e87424fc3778d45db1d037941f9"/><file name="account_editform.phtml" hash="be7d4e5216be8dad786493367664886a"/></dir><dir name="deactivate"><file name="account_deactive.phtml" hash="c5efa95c25c099d9176d7d14651a4baf"/></dir><dir name="global"><file name="unknown.phtml" hash="c7da4dad566e3937b6537e5ed684d2b6"/></dir><file name="poweredby.phtml" hash="0da655497cceeac6a8f9612665bc0eb3"/><dir name="register"><file name="already_registered.phtml" hash="50776401f08f703d3f7255219ad5887e"/><file name="disclaimer_not_confirmed.phtml" hash="b88613ca72f2c4b15e6d731fda833440"/><file name="please_register.phtml" hash="7f5cf0ecdda2dc99fda225480233816b"/></dir><dir name="subscribe"><file name="success.phtml" hash="b160130c3cc11ff7f7ee80aad505db92"/></dir><file name="view.phtml" hash="c72b585c5aad5bdec94b5689b1128140"/></dir></dir></dir></dir></dir></dir></target><target name="mage"><dir name="."><file name="track.php" hash="1fd691ad71bbab92d127f95894b460b1"/></dir></target></contents>
20
  <compatible/>
21
  <dependencies><required><php><min>5.3.5</min><max>5.3.13</max></php></required></dependencies>
22
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>dMkPostman</name>
4
+ <version>1.1.4</version>
5
  <stability>stable</stability>
6
  <license>OSL v3.0</license>
7
  <channel>community</channel>
12
  --------------------------------------------------------------------------------------------------------------------------&#xD;
13
  &#xD;
14
  MKPostman ist eine quelloffene Newsletter-L&#xF6;sung f&#xFC;r die E-Commerce-Plattform Magento. Das Tool bietet eine einfache, aber leistungsf&#xE4;hige L&#xF6;sung zur Unterst&#xFC;tzung von Ma&#xDF;nahmen im Bereich des E-Mail-Marketings und ist sowohl f&#xFC;r den privaten als auch kommerziellen Gebrauch nutzbar. Die intuitive Bedienbarkeit erm&#xF6;glicht unerfahrenen Magento-Nutzern ebenso wie Experten den m&#xFC;helosen Umgang mit dem System.</description>
15
+ <notes>Improvements for code documentation</notes>
16
  <authors><author><name>Holger L&#xF6;sken</name><user>holgerloesken</user><email>holger.loesken@das-medienkombinat.de</email></author></authors>
17
  <date>2012-05-25</date>
18
+ <time>16:01:30</time>
19
+ <contents><target name="magelocal"><dir name="DMK"><dir name="Postman"><dir name="Block"><dir name="Adminhtml"><dir name="Lists"><dir name="Edit"><file name="Form.php" hash="11e100df3f39a6acbdc5b74565c0a111"/></dir><file name="Edit.php" hash="48e49cb4b63b941aac698fb9ef622bb9"/><file name="Grid.php" hash="455f425899f5254fecf9491369a0c0df"/></dir><file name="Lists.php" hash="a74f853a8912906bdcce67e2e96c02c6"/><dir name="Newsletters"><dir name="Queue"><file name="Grid.php" hash="5dee3fc2c885d9fb2664d0fe3a18e16a"/></dir><file name="Queue.php" hash="c1f6ae8c1b7cda1124056cf94e975139"/><dir name="Sent"><file name="Grid.php" hash="7e507b6ecd0f39530758c8fe430f5bf4"/></dir><file name="Sent.php" hash="23efff74da2cb592e95125dba9ee9ea2"/><dir name="Statistic"><file name="Grid.php" hash="53eec3dbcb8544f61ad8307e716448db"/><file name="View.php" hash="ace0dd1d6d2bcf928c72de2aaa919dd2"/></dir><file name="Statistic.php" hash="b76aac677a95d09c476ead1b66a37445"/><dir name="Template"><dir name="Edit"><file name="Form.php" hash="9f48ee9f4ebf6994af7cd3a56cc44f04"/></dir><file name="Edit.php" hash="586173d087cce862dbe9931c8fc8ab07"/><file name="Grid.php" hash="3a59b187b4922c4a94aa607aa4c07285"/></dir><file name="Template.php" hash="ff896ff03a808129d17068ed36d0455b"/><dir name="Unsent"><dir name="Edit"><file name="Form.php" hash="3dc244d04e20df8bd67ad14309239e50"/><dir name="Tab"><file name="General.php" hash="b0a90c12079750c1bad394a508c24199"/><file name="Html.php" hash="94b0b0c5367dc772c2949602254d371f"/><file name="Text.php" hash="c8f3d7979167d11527fcbdf3761975f9"/></dir><file name="Tabs.php" hash="cae1cfbaa2becbae2e0f245f5d0fd9a0"/></dir><file name="Edit.php" hash="d6444a27cd75a9f233c65861a1d036f6"/><file name="Grid.php" hash="a99f0edbb6ed445999e7a6ad4be6811a"/></dir><file name="Unsent.php" hash="dcda22a49f2c0225efd75f524b379514"/></dir><dir name="Subscribers"><file name="Export.php" hash="05c2b2ec4f521cb4ba64999682bc61e1"/><dir name="Subscribers"><dir name="Edit"><file name="Form.php" hash="25bdfe30d1db2fff9d3ac9289fa23e64"/><dir name="Tab"><file name="Lists.php" hash="7dcfb82e2f281237da6969987d5014fe"/><file name="Main.php" hash="1b0507fe6c6551f1bbf832f6652f2b06"/></dir><file name="Tabs.php" hash="fded8705d37adb539b2ec707100b9058"/></dir><file name="Edit.php" hash="42921693cfe53202d1779b738335d03e"/><file name="Grid.php" hash="8ca077d856bbfffad2ddd0bfd105adfd"/></dir><file name="Subscribers.php" hash="e8d9316b9546432cdf5b9bd775d490c0"/><dir name="Testrecipients"><dir name="Edit"><file name="Form.php" hash="c9ff295b15d931848082b8123026721a"/></dir><file name="Edit.php" hash="eee832fb91cc200728277fdf61e6cab1"/><file name="Grid.php" hash="f44955eb95ead64ee1b418df7588cc5d"/></dir><file name="Testrecipients.php" hash="0e0e8523ff7050f611de29e46f2f5cf4"/></dir><dir name="Widget"><dir name="Grid"><dir name="Column"><dir name="Renderer"><file name="Action.php" hash="e9ab2e0ff73dfe65029355adb3ab718c"/></dir></dir><file name="Column.php" hash="3e6cd54871b78e38d74b2c224ecfc77d"/></dir></dir></dir><dir name="Frontend"><dir name="Customer"><dir name="Account"><dir name="Dashboard"><file name="Info.php" hash="3dfb4a47f6a44ae224847f2e254c2bf4"/></dir><file name="Dashboard.php" hash="e9775d781d048e09ecc1a2ab5c7d1589"/></dir><dir name="Form"><file name="Register.php" hash="d5389320075c6ec3e05e8b92ebd3233d"/></dir><file name="Newsletter.php" hash="08ab5b27ec101cf3cdfe56bc639d58a2"/></dir><dir name="Newsletter"><file name="Registration.php" hash="e5ad706e7823da48c69e77eba6fff9dc"/></dir></dir><dir name="Widget"><file name="Product.php" hash="df1e764cf6cedcd6bb140b60cc8e7a32"/></dir></dir><dir name="Helper"><file name="Data.php" hash="7990f87bb3fef2323952db52754bfccf"/><file name="Email.php" hash="58af8faf3cf904e700ec358e4ed162c1"/></dir><dir name="Model"><dir name="Config"><dir name="Source"><file name="Emailformat.php" hash="283aaf44d17072a6b7ce2c8573d0f00d"/></dir></dir><dir name="Email"><file name="Template.php" hash="543cfa4397fa434574bec0572092591f"/></dir><file name="Lists.php" hash="3710e39493d0a702cd81bd431d2991a6"/><dir name="Mysql4"><dir name="Lists"><file name="Collection.php" hash="fb0bf5acf8df6b5fac7498d95dfe467f"/></dir><file name="Lists.php" hash="e91d8fab4eaaf4dc6a657e022902f0c1"/><dir name="Newsletters"><dir name="Queue"><file name="Collection.php" hash="1a6342561086933688852fbb29467681"/></dir><file name="Queue.php" hash="1c2b1426676fc44173d2139f65cb4278"/><dir name="Queuecontent"><file name="Collection.php" hash="4be06a61d0ec769dc8d6217a3ba08fe2"/></dir><file name="Queuecontent.php" hash="3d7d36af4ba95ba0760d2c7446084cbb"/><dir name="Sent"><file name="Collection.php" hash="81d7ada926295e9af8a1f4623c26fffc"/></dir><file name="Sent.php" hash="47cc36df1880d493d8731e9ac0767822"/><dir name="Statistic"><dir name="Basic"><file name="Collection.php" hash="6a4e326fd588df5d643cd71d9528ad6a"/></dir><file name="Basic.php" hash="f499e07c3ab8f87487d71bc623b4bfe3"/></dir><dir name="Template"><file name="Collection.php" hash="b23386ac8ee4f840abaa3f6a9c1375bc"/></dir><file name="Template.php" hash="b7e35f242a24fd20fecd1efb5b558d4a"/><dir name="Unsent"><file name="Collection.php" hash="f0873c6e042f3a5162675887c9c9ad92"/></dir><file name="Unsent.php" hash="d18f140ab6e4020b9174a13d5d3de224"/></dir><dir name="Subscribers"><file name="Import.php" hash="843ecf95613a6a03fef36a0a3cb2d94e"/><dir name="Lists"><file name="Collection.php" hash="1d28e9096d1a7f65375aadc5f2ed2dd6"/></dir><file name="Lists.php" hash="894f77208b34a6b9fd4b10c4b2b4c394"/><dir name="Subscribers"><file name="Collection.php" hash="61663f09ca1c55afb59c86f3ea57fe45"/></dir><file name="Subscribers.php" hash="5a1e68caf04d91c948de7d969d7d19e8"/><dir name="Testrecipients"><file name="Collection.php" hash="a420ca9bc81b3079d94141a4469fdf81"/></dir><file name="Testrecipients.php" hash="1398617064be29cc5415dd49c5682751"/></dir></dir><dir name="Newsletters"><file name="Queue.php" hash="5871609b429df859d81d11c36f03feb3"/><file name="Sent.php" hash="09240df2bc90bc93ebc64e2e5694a5a5"/><dir name="Statistic"><file name="Basic.php" hash="e5996f3bf6f13bc58655af4e5a196cc1"/></dir><file name="Template.php" hash="5b8ea7c51bee011cfc8cff7b526dfab8"/><file name="Unsent.php" hash="20981352832e620c7b2652ec7443d6ce"/></dir><file name="Observer.php" hash="3a73460ebf951cd5b4b493d01e1e43a3"/><dir name="Subscribers"><file name="Import.php" hash="6ddfd16e9067c0a406e54082b536531f"/><file name="Lists.php" hash="75690807457642cc83855ee0f94b8a83"/><file name="Subscribers.php" hash="c491f7a739c2c22488d00aa3668a997c"/><file name="Testrecipients.php" hash="e2aee05363d02c1a94b6b88f61a8effb"/></dir><dir name="TinyMce"><file name="Config.php" hash="e1df11a18efae66548e23a2284ca6fc2"/><file name="Observer.php" hash="db4de3b1c715ee150ae92f08c3fcdc80"/></dir><dir name="Variable"><file name="Config.php" hash="c617d9064193b89db3f87765d73b350d"/></dir></dir><dir name="controllers"><file name="ActivateController.php" hash="f6fcacd58d6523ae8b7602fd004622dc"/><dir name="Adminhtml"><file name="CustomerController.php" hash="b82b5eb4501a03eef0b592a7eeebd4c6"/><file name="ListsController.php" hash="82f893cfe70261cb46efe81cc46f3510"/><dir name="Newsletters"><file name="QueueController.php" hash="28411d11b7b8faf7ef796ee99f91639b"/><file name="SentController.php" hash="246c4b58770c9d2024da1802d7c3de92"/><file name="StatisticController.php" hash="4147936d0e0ed0fef071d660ae52abc7"/><file name="TemplateController.php" hash="de0f844ace41b4a89f805ba50ef59f47"/><file name="UnsentController.php" hash="37d98b3f7fd833e7d13a58057a3a763f"/></dir><dir name="Subscribers"><file name="ExportController.php" hash="421f79102d6b346970343942df63152b"/><file name="SubscribersController.php" hash="eac29febc08e8135aab7b8995f3c6b78"/><file name="TestrecipientsController.php" hash="3b421cb043784b15bd8d4209f00675fc"/></dir><file name="WidgetController.php" hash="50bde64959fa705a5cf3c21b08e67fab"/></dir><file name="DeactivateController.php" hash="d0b09133acef4a78ea90dbd2b9de591c"/><file name="IndexController.php" hash="c8c1098b5fb30b1eb3dad787ae98296c"/><dir name="Newsletter"><file name="ManageController.php" hash="353c90a70a3d668ee4014e510627f4c5"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="6a531d27a25971e0965034e3ef28f0f1"/><file name="config.xml" hash="7b41ac675338e059fc3b8c43f3b95652"/><file name="system.xml" hash="1d83c6696ebac79fe22776f2333d6aa0"/><file name="widget.xml" hash="7a9fd9653660e36163c51db21095601e"/></dir><dir name="sql"><dir name="postman_setup"><file name="mysql4-install-0.1.0.php" hash="8a57999b9594b4d391349ec6003b9018"/></dir></dir></dir></dir><dir name="Varien"><dir name="Data"><dir name="Form"><dir name="Element"><file name="Fieldset.php" hash="8d0637ae5e0f219a1d40dfbab9026c52"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="jquery.jqplot"><file name="jquery.jqplot.min.css" hash="fc701228643bcc46a75e77dd3d119ba2"/></dir><dir name="jquery-ui-lightness"><dir name="images"><file name="ui-bg_diagonals-thick_18_b81900_40x40.png" hash="1c7fc3f027768438a5e12572a3ca1233"/><file name="ui-bg_diagonals-thick_20_666666_40x40.png" hash="f040b255ca13e693da34ab33c7d6b554"/><file name="ui-bg_flat_10_000000_40x100.png" hash="c18cd01623c7fed23c80d53e2f5e7c78"/><file name="ui-bg_glass_100_f6f6f6_1x400.png" hash="5f1847175ba18c41322cb9cb0581e0fb"/><file name="ui-bg_glass_100_fdf5ce_1x400.png" hash="d26e8f463195a7b86f86b7d550cfc114"/><file name="ui-bg_glass_65_ffffff_1x400.png" hash="e5a8f32e28fd5c27bf0fed33c8a8b9b5"/><file name="ui-bg_gloss-wave_35_f6a828_500x100.png" hash="58d2cd501e01573cf537089c694ba899"/><file name="ui-bg_highlight-soft_100_eeeeee_1x100.png" hash="384c3f17709ba0f809b023b6e7b10b84"/><file name="ui-bg_highlight-soft_75_ffe45c_1x100.png" hash="b806658954cb4d16ade8977af737f486"/><file name="ui-icons_222222_256x240.png" hash="ebe6b6902a408fbf9cac6379a1477525"/><file name="ui-icons_228ef1_256x240.png" hash="79f41c0765e9ec18562b20b0801d748b"/><file name="ui-icons_ef8c08_256x240.png" hash="ef9a6ccfe3b14041928ddc708665b226"/><file name="ui-icons_ffd27a_256x240.png" hash="ab8c30acc0e3608fb79e01fccf832c70"/><file name="ui-icons_ffffff_256x240.png" hash="342bc03f6264c75d3f1d7f99e34295b9"/></dir><file name="jquery-ui-1.8.16.custom.css" hash="3ce894effc03c489506c7d0dab5246d5"/></dir><dir name="js"><dir name="jquery"><file name="excanvas.min.js" hash="304cb5e2448f2acb6bc7dff48f0ab907"/><file name="jqplot.pieRenderer.min.js" hash="233097ea634e609e6bde641c06ead88f"/><file name="jquery-1.6.2.min.js" hash="523374ede30cc244f8873725032ef75c"/><file name="jquery-ui-1.8.16.custom.min.js" hash="d149f5bbe2b494a5f4f0aacf82511000"/><file name="jquery.jqplot.min.js" hash="0872837946ba9a9769b81bc0c21091a3"/></dir><file name="postman.js" hash="cb4d7409b4b582c2423687924443ca7d"/></dir><dir name="images"><dir name="postman"><file name="mkpostman_logo.jpg" hash="4eaf45cda3d1af129d309c4b8e8387f6"/><file name="platzhalter_mit_sidebar.jpg" hash="cb4458dd6caa07db20887966f9a81342"/><file name="platzhalter_ohne_sidebar.jpg" hash="4eb1e0c601996615f0e51f323a40d8df"/><file name="platzhalter_teaser.jpg" hash="4244f2a466d828c977fed31e0e88c9f2"/></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="de_DE"><dir name="dmk"><file name="DMK_Postman.csv" hash="b39cd7713b4523effb3fa01d621310b7"/></dir><dir name="template"><dir name="email"><dir name="postman"><file name="subscriber_confirm.html" hash="a113593b6a2b8523293da1598855ca88"/><file name="subscriber_confirm_unsubscribe_success.html" hash="3fbd137fa7b24e26cf2a8099c3f8653e"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="DMK_Postman.xml" hash="0ef5caadc94cd87b01009a4ebef7def3"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="postman"><file name="dialogbox.phtml" hash="eda868da21e15f0ccb3a0c9a605f1524"/><dir name="grid"><file name="container.phtml" hash="b5f4658e5434f28202ff203d4a468f68"/><file name="container_with_hints.phtml" hash="277b53b070e46b66971ae63d615167f8"/></dir><file name="magento_vars_js.phtml" hash="2a50c953681824a9d5d9170f0198bf8b"/><dir name="statistic"><file name="view.phtml" hash="e9f5e1a9152bb290ca759bc23d759417"/></dir></dir></dir><dir name="layout"><file name="postman.xml" hash="e92cafb88a5e8b6d365246fe11eaf1cc"/></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="postman"><dir name="newsletter"><dir name="activate"><file name="account_active.phtml" hash="58d95b39e620291317ad62400eb00c30"/><file name="account_already_active.phtml" hash="56b04e87424fc3778d45db1d037941f9"/><file name="account_editform.phtml" hash="be7d4e5216be8dad786493367664886a"/></dir><dir name="deactivate"><file name="account_deactive.phtml" hash="c5efa95c25c099d9176d7d14651a4baf"/></dir><dir name="global"><file name="unknown.phtml" hash="c7da4dad566e3937b6537e5ed684d2b6"/></dir><file name="poweredby.phtml" hash="0da655497cceeac6a8f9612665bc0eb3"/><dir name="register"><file name="already_registered.phtml" hash="50776401f08f703d3f7255219ad5887e"/><file name="disclaimer_not_confirmed.phtml" hash="b88613ca72f2c4b15e6d731fda833440"/><file name="please_register.phtml" hash="7f5cf0ecdda2dc99fda225480233816b"/></dir><dir name="subscribe"><file name="success.phtml" hash="b160130c3cc11ff7f7ee80aad505db92"/></dir><file name="view.phtml" hash="c72b585c5aad5bdec94b5689b1128140"/></dir></dir></dir></dir></dir></dir></target><target name="mage"><dir name="."><file name="track.php" hash="1fd691ad71bbab92d127f95894b460b1"/></dir></target></contents>
20
  <compatible/>
21
  <dependencies><required><php><min>5.3.5</min><max>5.3.13</max></php></required></dependencies>
22
  </package>