Licentia_Fidelitas - Version 2.7.0.1

Version Notes

Email marketing

Download this release

Release Info

Developer bento
Extension Licentia_Fidelitas
Version 2.7.0.1
Comparing to
See all releases


Code changes from version 2.7.0.0 to 2.7.0.1

app/code/community/Licentia/Fidelitas/Helper/Data.php CHANGED
@@ -22,13 +22,35 @@ class Licentia_Fidelitas_Helper_Data extends Mage_Core_Helper_Abstract
22
  }
23
 
24
 
25
- public function isCustomerSubscribed($customerId)
26
  {
27
- $col = Mage::getModel('fidelitas/subscribers')
28
- ->getCollection()
29
- ->addFieldToFilter('customer_id', $customerId);
30
 
31
- return $col->getSize() > 0 ? $col->getFirstItem() : false;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
32
  }
33
 
34
  public function getSmtpTransport($storeId)
22
  }
23
 
24
 
25
+ public function loadSubscriber()
26
  {
27
+ $customerId = Mage::getSingleton('customer/session')->getCustomer()->getId();
 
 
28
 
29
+ if ($customerId) {
30
+ $uid = Mage::getModel('fidelitas/subscribers')
31
+ ->getCollection()
32
+ ->addFieldToFilter('customer_id', $customerId)
33
+ ->getFirstItem();
34
+
35
+ if ($uid->getData('uid')) {
36
+ Mage::getSingleton('core/cookie')->set('egoi-subscriber', $uid->getData('uid'), true);
37
+ return $uid;
38
+ }
39
+ }
40
+
41
+ $uid = Mage::getSingleton('core/cookie')->get('egoi-subscriber');
42
+ if ($uid) {
43
+ $uid = Mage::getModel('fidelitas/subscribers')
44
+ ->getCollection()
45
+ ->addFieldToFilter('uid', $uid)
46
+ ->getFirstItem();
47
+
48
+ if ($uid->getData('uid')) {
49
+ return $uid;
50
+ }
51
+ }
52
+
53
+ return false;
54
  }
55
 
56
  public function getSmtpTransport($storeId)
app/code/community/Licentia/Fidelitas/Model/Subscribers.php CHANGED
@@ -181,76 +181,6 @@ class Licentia_Fidelitas_Model_Subscribers extends Mage_Core_Model_Abstract
181
  }
182
  }
183
 
184
- $this->addData($data);
185
-
186
-
187
- return parent::save();
188
-
189
- $this->load($this->getEmail(), 'email');
190
-
191
- if (!$this->getOrigData() && $this->getId()) {
192
- $this->load($this->getId());
193
- }
194
-
195
- $list = Mage::getModel('fidelitas/lists')->getList()->getData('listnum');;
196
-
197
- $data['listID'] = $list;
198
- $data['list'] = $list;
199
- $data['listnum'] = $list;
200
-
201
- /** @var Mage_Customer_Model_Customer $customer */
202
- $customer = $this->findCustomer($data['email'], 'email');
203
-
204
- $extra = Mage::getModel('fidelitas/extra')->getExtra();
205
-
206
- if ($customer) {
207
- $data['customer_id'] = $customer->getId();
208
- $data['birth_date'] = $customer->getData('dob');
209
- $data['first_name'] = $customer->getData('firstname');
210
- $data['last_name'] = $customer->getData('lastname');
211
-
212
- if ($customer->getData('cellphone')) {
213
- $data['cellphone'] = $customer->getData('cellphone');
214
- }
215
-
216
- foreach ($extra as $element) {
217
-
218
- if ($this->getData($element->getData('attribute_code'))) {
219
- $data[$element->getData('extra_code')] = $this->getData($element->getData('attribute_code'));
220
- continue;
221
- }
222
-
223
- if ($customer->getData($element->getData('attribute_code'))) {
224
- $data[$element->getData('extra_code')] = $customer->getData($element->getData('attribute_code'));
225
- continue;
226
- }
227
-
228
- $billing = false;
229
- if (stripos($element->getData('attribute_code'), 'addr_') !== false) {
230
- $attributeCode = substr($element->getData('attribute_code'), 5);
231
- $billing = true;
232
- } else {
233
- $attributeCode = $element->getData('attribute_code');
234
- }
235
-
236
- if ($billing) {
237
- $customer = $this->findCustomer($customer->getId(), 'entity_id', $attributeCode);
238
- } else {
239
- $customer = Mage::getModel('customer/customer')->load($customer->getId());
240
- }
241
-
242
- if ($customer->getData($attributeCode)) {
243
- $data[$element->getData('extra_code')] = $customer->getData($attributeCode);
244
- }
245
- }
246
- }
247
-
248
- if (!$data['first_name'] && !$this->getOrigData('first_name')) {
249
- $data['first_name'] = 'Customer';
250
- }
251
-
252
- $this->addData($data);
253
-
254
  $info = $this->subscriberExists('email', $this->getEmail());
255
 
256
  if ($info && isset($data['inCallback'])) {
@@ -271,6 +201,8 @@ class Licentia_Fidelitas_Model_Subscribers extends Mage_Core_Model_Abstract
271
  $this->setId($info->getId());
272
  }
273
 
 
 
274
  $model->addData($data);
275
  $this->addData($data);
276
 
@@ -288,8 +220,12 @@ class Licentia_Fidelitas_Model_Subscribers extends Mage_Core_Model_Abstract
288
 
289
  } else {
290
  $result = $model->setData('status', 1)->addSubscriber();
 
291
  if (isset($result['uid'])) {
292
  $this->setData('uid', $result->getData('uid'));
 
 
 
293
  }
294
  }
295
  } catch (Exception $e) {
@@ -299,6 +235,7 @@ class Licentia_Fidelitas_Model_Subscribers extends Mage_Core_Model_Abstract
299
  return parent::save();
300
  }
301
 
 
302
  public function delete()
303
  {
304
  $model = Mage::getModel('fidelitas/egoi');
@@ -342,7 +279,7 @@ class Licentia_Fidelitas_Model_Subscribers extends Mage_Core_Model_Abstract
342
  $data['status'] = $subscriber->getSubscriberStatus() == 3 ? 0 : 1;
343
  $data['store_id'] = $subscriber->getStoreId();
344
 
345
- $this->addData($data)->save();
346
 
347
  } catch (Exception $e) {
348
  Mage::logException($e);
181
  }
182
  }
183
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
184
  $info = $this->subscriberExists('email', $this->getEmail());
185
 
186
  if ($info && isset($data['inCallback'])) {
201
  $this->setId($info->getId());
202
  }
203
 
204
+ $data['listID'] = $data['list'];
205
+
206
  $model->addData($data);
207
  $this->addData($data);
208
 
220
 
221
  } else {
222
  $result = $model->setData('status', 1)->addSubscriber();
223
+
224
  if (isset($result['uid'])) {
225
  $this->setData('uid', $result->getData('uid'));
226
+ if (!Mage::app()->getStore()->isAdmin()) {
227
+ Mage::getSingleton('core/cookie')->set('egoi-subscriber', $result['uid'], true);
228
+ }
229
  }
230
  }
231
  } catch (Exception $e) {
235
  return parent::save();
236
  }
237
 
238
+
239
  public function delete()
240
  {
241
  $model = Mage::getModel('fidelitas/egoi');
279
  $data['status'] = $subscriber->getSubscriberStatus() == 3 ? 0 : 1;
280
  $data['store_id'] = $subscriber->getStoreId();
281
 
282
+ return $this->addData($data)->save();
283
 
284
  } catch (Exception $e) {
285
  Mage::logException($e);
app/code/community/Licentia/Fidelitas/etc/config.xml CHANGED
@@ -3,7 +3,7 @@
3
  <config>
4
  <modules>
5
  <Licentia_Fidelitas>
6
- <version>2.7.0.0</version>
7
  </Licentia_Fidelitas>
8
  </modules>
9
  <frontend>
3
  <config>
4
  <modules>
5
  <Licentia_Fidelitas>
6
+ <version>2.7.0.1</version>
7
  </Licentia_Fidelitas>
8
  </modules>
9
  <frontend>
app/design/frontend/base/default/template/fidelitas/egoimmerce.phtml CHANGED
@@ -20,15 +20,14 @@ if ($account->getClienteId()) {
20
  $installPath .= "/";
21
  $secureinstallPath .= "/";
22
  }
23
- $_customerId = Mage::getSingleton('customer/session')->getCustomer()->getId();
24
  $listId = '';
25
  $subscriberId = '';
26
- if ($_customerId) {
27
- $sub = Mage::helper('fidelitas')->isCustomerSubscribed($_customerId);
28
- if ($sub) {
29
- $listId = $sub->getList();
30
- $subscriberId = $sub->getUid();
31
- }
32
  }
33
 
34
  //0 Search Results
20
  $installPath .= "/";
21
  $secureinstallPath .= "/";
22
  }
23
+
24
  $listId = '';
25
  $subscriberId = '';
26
+
27
+ $sub = Mage::helper('fidelitas')->loadSubscriber();
28
+ if ($sub) {
29
+ $listId = $sub->getList();
30
+ $subscriberId = $sub->getUid();
 
31
  }
32
 
33
  //0 Search Results
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Licentia_Fidelitas</name>
4
- <version>2.7.0.0</version>
5
  <stability>stable</stability>
6
  <license uri="http://creativecommons.org/licenses/by-nc/4.0/">Creative Commons - Attribution-NonCommercial 4.0 International </license>
7
  <channel>community</channel>
@@ -10,9 +10,9 @@
10
  <description>Email marketing</description>
11
  <notes>Email marketing</notes>
12
  <authors><author><name>bento</name><user>licentia</user><email>bento@licentia.pt</email></author></authors>
13
- <date>2017-08-07</date>
14
- <time>20:31:29</time>
15
- <contents><target name="magecommunity"><dir name="Licentia"><dir name="Fidelitas"><dir name="Block"><dir name="Adminhtml"><dir name="Account"><dir name="New"><dir name="Edit"><file name="Form.php" hash="6802d636f325a1c1e91515d906c35352"/><dir name="Tab"><file name="Api.php" hash="320ffbcc93452ab7c2ffd0a83aa96020"/><file name="Form.php" hash="d58c80db9a08fb05ae059e18215cb378"/></dir><file name="Tabs.php" hash="8add5cc4a3edbd6ef92c6f0a00db0e2e"/></dir><file name="Edit.php" hash="b86f3f3b32c38ba80c5e74bd0c858e08"/></dir><file name="New.php" hash="d5fc7f250b2d2cd816e4b5cc91242272"/><dir name="Support"><dir name="Edit"><file name="Form.php" hash="0eacee9a220ba52968442575c9f9a406"/><dir name="Tab"><file name="Form.php" hash="5cecbf817777f9322a8a4066805c6dd4"/></dir><file name="Tabs.php" hash="3de3e6aa7541058be94a4cdad5f479ae"/></dir><file name="Edit.php" hash="9dbc6988f63239978405ca3703ed2ce6"/></dir><file name="Support.php" hash="8a8ca7ba9dd695f10fca5e6f2fe7b55a"/><dir name="Sync"><dir name="Edit"><file name="Form.php" hash="f0283c4d94ded6843b5d807cd8ef1a29"/><dir name="Tab"><file name="Form.php" hash="62aa790142e7c7d5f7c1efd403bc8caf"/></dir><file name="Tabs.php" hash="69846a0c99c896a88e9ab56766d7e53f"/></dir><file name="Edit.php" hash="564693d4f8dfb59b9ff0efd47a1119cd"/></dir><file name="Sync.php" hash="2c1d8b495043e8f07dcd9e360bb188d3"/></dir><file name="Account.php" hash="7852371d0a9d7be6df7a2d06e2ee631c"/><dir name="Autoresponders"><dir name="Edit"><file name="Form.php" hash="356ca946f042ef4707f4c2d87d449852"/><dir name="Tab"><file name="Data.php" hash="bbacf805657b8f029d6b91b36d28bb77"/><file name="Main.php" hash="37bdc3f0d2b704bc1fb208a7f5515a6a"/></dir><file name="Tabs.php" hash="ea583251e1c289ef5bcb883140966474"/></dir><file name="Edit.php" hash="814a0172d583f9678cf6fa67972e0198"/><file name="Grid.php" hash="44ce976d0426680e89d84fd0327e6ae2"/></dir><file name="Autoresponders.php" hash="7e2d11c1b3bb81a3bd2e1e347c1dcf0f"/><dir name="Events"><file name="Grid.php" hash="fb96492b69dec4628b42a25c8bbfd284"/></dir><file name="Events.php" hash="d5e7420ab36d092fb36f0c800dd55a1d"/><dir name="Lists"><dir name="Edit"><file name="Form.php" hash="1887d528edc782f9c918894238e3e5a4"/><dir name="Tab"><file name="Main.php" hash="fa2ee28e4baf3b562df58e35a287ac08"/></dir><file name="Tabs.php" hash="b0687d00f6c93ea0955ad5432c2dc1ab"/></dir><file name="Edit.php" hash="f9e149d2b0922c33ffb89a99e256c4b3"/><file name="Grid.php" hash="c2684f64f5dac5e6e83a74a6d9cd0664"/></dir><file name="Lists.php" hash="cc3df10e61a0a0cef65deb0e7bd029bb"/><dir name="Subscribers"><dir name="Edit"><file name="Form.php" hash="aadce50da358d664c99fc2c27d519b2e"/><dir name="Tab"><file name="Form.php" hash="56f4c6b69545e15b3e4bfad1228c2d57"/></dir><file name="Tabs.php" hash="62462849bc5bd297fb764a075abb6b69"/></dir><file name="Edit.php" hash="c86c116e9b7894b653713db6c1f5b405"/><file name="Grid.php" hash="b6307e585a5e6feb8af3801db5b5019f"/></dir><file name="Subscribers.php" hash="5880102fd07c90d645fee6c9f90f5662"/><dir name="System"><dir name="Config"><dir name="Form"><dir name="Field"><file name="Smtp.php" hash="9d069b87913cb35f90803f961c0e1c02"/><file name="Test.php" hash="55c625dced6d7e265c28377eed3fea21"/></dir></dir></dir></dir></dir><file name="Egoimmerce.php" hash="e95396e47ddac5af96d6a303840d63cc"/><file name="Products.php" hash="fe93effd102dc4b569725e37f6c004dd"/></dir><dir name="Helper"><file name="Data.php" hash="6c5e19e87fafb4f19410169664d50c3b"/></dir><dir name="Model"><file name="Account.php" hash="ac6a858eebdf9335b22e7cced2145fa8"/><file name="Autoresponders.php" hash="3f6808a6b9c7e356002c31cc00597317"/><file name="Egoi.php" hash="d9aab808cd5ae837ddd727e9367451c2"/><dir name="Email"><file name="Template.php" hash="2b6cfffa0692ff4bc53379737d9b1a7f"/></dir><file name="Email.php" hash="732a20fe2fc578f7b760c74476698372"/><file name="Events.php" hash="190cf15070bd6f799f8b10c0921133f5"/><file name="Extra.php" hash="ba2e3e3797ebd6d62bbca22a05190cae"/><file name="Lists.php" hash="ed90f73468ff9d46d9eee88b8626348c"/><dir name="Mysql4"><dir name="Account"><file name="Collection.php" hash="2d668e62a13f4ef5e384aeec0e514c1a"/></dir><file name="Account.php" hash="7c9967d6a86f49378f1e513acfc07078"/><dir name="Autoresponders"><file name="Collection.php" hash="bb924ad5979b3b27b312f46d84fe44c6"/></dir><file name="Autoresponders.php" hash="84fe50177e1c3cf4b8773b6133017ab4"/><dir name="Events"><file name="Collection.php" hash="3eb76ae733c4d76f27dae40cda7f9f4c"/></dir><file name="Events.php" hash="c68be7cbd8bcb077729de120a4af2cb3"/><dir name="Extra"><file name="Collection.php" hash="3378a705bbc8fd647c87d50c729b6715"/></dir><file name="Extra.php" hash="2e7c8ae5c07f92a22b04b5080f0712b4"/><dir name="Lists"><file name="Collection.php" hash="bb48b44e845ee9c28a8ce8fdbc42674d"/></dir><file name="Lists.php" hash="eb23516e199ed10234c7df1a6922a313"/><dir name="Subscribers"><file name="Collection.php" hash="fc44d78d088c11aab5345aacd12b80b6"/></dir><file name="Subscribers.php" hash="4478e53edda9027e02fb62163164ce97"/></dir><file name="Observer.php" hash="2427a5b6790255e334f536fedc0b091a"/><file name="Products.php" hash="15563f5b53af8e176e48ce2a4633458a"/><dir name="Source"><file name="Addressattributes.php" hash="c8cf64629c92f54859c3335832b43ee6"/><file name="Domains.php" hash="26bbbf2a46741928e9aa673159d64af1"/><file name="Method.php" hash="151497a995e79e0a6e226ec1aae3eaec"/><file name="Sender.php" hash="2c054ca6a46b43545a0cec4eef381b8a"/></dir><file name="Subscribers.php" hash="c88f3825d806a7aa27123407eb4eb327"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Fidelitas"><file name="AccountController.php" hash="5c46248e28c60189943fcac18bb95f7b"/><file name="AutorespondersController.php" hash="000336c4a0bbe237404ea8de5a399e66"/><file name="EventsController.php" hash="37252a1a492bb4a90d2badae5c92e472"/><file name="ListsController.php" hash="7731b43d85442b802c1d71fcc2d7c6b3"/><file name="SubscribersController.php" hash="c3c0393809c664891b02f07a89ca3f7b"/></dir></dir><file name="CallbackController.php" hash="e7c436874749a4f3ad444ce04173052d"/><file name="DownloadController.php" hash="2a793941280dddb4adbdc54d6777634b"/><file name="ProductsController.php" hash="368d75d6057c36710359fc0bfc945186"/><file name=".DS_Store" hash="7448e3cc4f6df46edb67d502b2c330fe"/></dir><dir name="etc"><file name="adminhtml.xml" hash="cbd50b5788580ddfd5b87449c8c07bff"/><file name="config.xml" hash="c03d83314550a7c7320e10a4c1b9267e"/><file name="system.xml" hash="c9b035a3e3845f3ba47e806fef72560d"/></dir><dir name="sql"><dir name="fidelitas_setup"><file name="mysql4-install-2.0.0.0.php" hash="665ca2dfe422a474f4faad8ae1985e6c"/><file name="mysql4-upgrade-2.0.0.5-2.1.0.0.php" hash="628f9f7253d152847971708552849b90"/><file name="mysql4-upgrade-2.1.0.4-2.1.0.5.php" hash="5fe08f874391f6d174be2c33e2f81cfd"/><file name="mysql4-upgrade-2.2.0.4-2.2.0.5.php" hash="49eda87aa6a53550d8e6f28d03a59749"/><file name="mysql4-upgrade-2.6.3.1-2.7.0.0.php" hash="76e717f7bf1de83571eb301ec8c46daf"/></dir></dir><file name=".DS_Store" hash="8420e75b9ea41476af71869f18a90d28"/></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Licentia_Fidelitas.xml" hash="fb5bebd3e734d581867a362a1046df7c"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="fidelitas.xml" hash="78efe5b2c2cbf4650e4d3d5acea8df12"/></dir><dir name="template"><dir name="fidelitas"><file name="egoimmerce.phtml" hash="8402f2defee218269dad4989ce80651f"/><file name="products.phtml" hash="6b704c921c38bcc25a6d90764e01a879"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="fidelitas.xml" hash="fbf163f93a515a6b834468bbbddd49da"/></dir><dir name="template"><dir name="fidelitas"><dir name="account"><file name="account.phtml" hash="97780bef262e113155886a62e867af3b"/><file name="new.phtml" hash="b77874642f2fe60d966ba52ba808ff87"/></dir></dir></dir></dir></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.2.0</min><max>7.0.0</max></php><extension><name>soap</name><min/><max/></extension></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Licentia_Fidelitas</name>
4
+ <version>2.7.0.1</version>
5
  <stability>stable</stability>
6
  <license uri="http://creativecommons.org/licenses/by-nc/4.0/">Creative Commons - Attribution-NonCommercial 4.0 International </license>
7
  <channel>community</channel>
10
  <description>Email marketing</description>
11
  <notes>Email marketing</notes>
12
  <authors><author><name>bento</name><user>licentia</user><email>bento@licentia.pt</email></author></authors>
13
+ <date>2017-08-10</date>
14
+ <time>14:14:42</time>
15
+ <contents><target name="magecommunity"><dir name="Licentia"><dir name="Fidelitas"><dir name="Block"><dir name="Adminhtml"><dir name="Account"><dir name="New"><dir name="Edit"><file name="Form.php" hash="6802d636f325a1c1e91515d906c35352"/><dir name="Tab"><file name="Api.php" hash="320ffbcc93452ab7c2ffd0a83aa96020"/><file name="Form.php" hash="d58c80db9a08fb05ae059e18215cb378"/></dir><file name="Tabs.php" hash="8add5cc4a3edbd6ef92c6f0a00db0e2e"/></dir><file name="Edit.php" hash="b86f3f3b32c38ba80c5e74bd0c858e08"/></dir><file name="New.php" hash="d5fc7f250b2d2cd816e4b5cc91242272"/><dir name="Support"><dir name="Edit"><file name="Form.php" hash="0eacee9a220ba52968442575c9f9a406"/><dir name="Tab"><file name="Form.php" hash="5cecbf817777f9322a8a4066805c6dd4"/></dir><file name="Tabs.php" hash="3de3e6aa7541058be94a4cdad5f479ae"/></dir><file name="Edit.php" hash="9dbc6988f63239978405ca3703ed2ce6"/></dir><file name="Support.php" hash="8a8ca7ba9dd695f10fca5e6f2fe7b55a"/><dir name="Sync"><dir name="Edit"><file name="Form.php" hash="f0283c4d94ded6843b5d807cd8ef1a29"/><dir name="Tab"><file name="Form.php" hash="62aa790142e7c7d5f7c1efd403bc8caf"/></dir><file name="Tabs.php" hash="69846a0c99c896a88e9ab56766d7e53f"/></dir><file name="Edit.php" hash="564693d4f8dfb59b9ff0efd47a1119cd"/></dir><file name="Sync.php" hash="2c1d8b495043e8f07dcd9e360bb188d3"/></dir><file name="Account.php" hash="7852371d0a9d7be6df7a2d06e2ee631c"/><dir name="Autoresponders"><dir name="Edit"><file name="Form.php" hash="356ca946f042ef4707f4c2d87d449852"/><dir name="Tab"><file name="Data.php" hash="bbacf805657b8f029d6b91b36d28bb77"/><file name="Main.php" hash="37bdc3f0d2b704bc1fb208a7f5515a6a"/></dir><file name="Tabs.php" hash="ea583251e1c289ef5bcb883140966474"/></dir><file name="Edit.php" hash="814a0172d583f9678cf6fa67972e0198"/><file name="Grid.php" hash="44ce976d0426680e89d84fd0327e6ae2"/></dir><file name="Autoresponders.php" hash="7e2d11c1b3bb81a3bd2e1e347c1dcf0f"/><dir name="Events"><file name="Grid.php" hash="fb96492b69dec4628b42a25c8bbfd284"/></dir><file name="Events.php" hash="d5e7420ab36d092fb36f0c800dd55a1d"/><dir name="Lists"><dir name="Edit"><file name="Form.php" hash="1887d528edc782f9c918894238e3e5a4"/><dir name="Tab"><file name="Main.php" hash="fa2ee28e4baf3b562df58e35a287ac08"/></dir><file name="Tabs.php" hash="b0687d00f6c93ea0955ad5432c2dc1ab"/></dir><file name="Edit.php" hash="f9e149d2b0922c33ffb89a99e256c4b3"/><file name="Grid.php" hash="c2684f64f5dac5e6e83a74a6d9cd0664"/></dir><file name="Lists.php" hash="cc3df10e61a0a0cef65deb0e7bd029bb"/><dir name="Subscribers"><dir name="Edit"><file name="Form.php" hash="aadce50da358d664c99fc2c27d519b2e"/><dir name="Tab"><file name="Form.php" hash="56f4c6b69545e15b3e4bfad1228c2d57"/></dir><file name="Tabs.php" hash="62462849bc5bd297fb764a075abb6b69"/></dir><file name="Edit.php" hash="c86c116e9b7894b653713db6c1f5b405"/><file name="Grid.php" hash="b6307e585a5e6feb8af3801db5b5019f"/></dir><file name="Subscribers.php" hash="5880102fd07c90d645fee6c9f90f5662"/><dir name="System"><dir name="Config"><dir name="Form"><dir name="Field"><file name="Smtp.php" hash="9d069b87913cb35f90803f961c0e1c02"/><file name="Test.php" hash="55c625dced6d7e265c28377eed3fea21"/></dir></dir></dir></dir></dir><file name="Egoimmerce.php" hash="e95396e47ddac5af96d6a303840d63cc"/><file name="Products.php" hash="fe93effd102dc4b569725e37f6c004dd"/></dir><dir name="Helper"><file name="Data.php" hash="59c56f565d62db6fe467e8a5747a3d72"/></dir><dir name="Model"><file name="Account.php" hash="ac6a858eebdf9335b22e7cced2145fa8"/><file name="Autoresponders.php" hash="3f6808a6b9c7e356002c31cc00597317"/><file name="Egoi.php" hash="d9aab808cd5ae837ddd727e9367451c2"/><dir name="Email"><file name="Template.php" hash="2b6cfffa0692ff4bc53379737d9b1a7f"/></dir><file name="Email.php" hash="732a20fe2fc578f7b760c74476698372"/><file name="Events.php" hash="190cf15070bd6f799f8b10c0921133f5"/><file name="Extra.php" hash="ba2e3e3797ebd6d62bbca22a05190cae"/><file name="Lists.php" hash="ed90f73468ff9d46d9eee88b8626348c"/><dir name="Mysql4"><dir name="Account"><file name="Collection.php" hash="2d668e62a13f4ef5e384aeec0e514c1a"/></dir><file name="Account.php" hash="7c9967d6a86f49378f1e513acfc07078"/><dir name="Autoresponders"><file name="Collection.php" hash="bb924ad5979b3b27b312f46d84fe44c6"/></dir><file name="Autoresponders.php" hash="84fe50177e1c3cf4b8773b6133017ab4"/><dir name="Events"><file name="Collection.php" hash="3eb76ae733c4d76f27dae40cda7f9f4c"/></dir><file name="Events.php" hash="c68be7cbd8bcb077729de120a4af2cb3"/><dir name="Extra"><file name="Collection.php" hash="3378a705bbc8fd647c87d50c729b6715"/></dir><file name="Extra.php" hash="2e7c8ae5c07f92a22b04b5080f0712b4"/><dir name="Lists"><file name="Collection.php" hash="bb48b44e845ee9c28a8ce8fdbc42674d"/></dir><file name="Lists.php" hash="eb23516e199ed10234c7df1a6922a313"/><dir name="Subscribers"><file name="Collection.php" hash="fc44d78d088c11aab5345aacd12b80b6"/></dir><file name="Subscribers.php" hash="4478e53edda9027e02fb62163164ce97"/></dir><file name="Observer.php" hash="2427a5b6790255e334f536fedc0b091a"/><file name="Products.php" hash="15563f5b53af8e176e48ce2a4633458a"/><dir name="Source"><file name="Addressattributes.php" hash="c8cf64629c92f54859c3335832b43ee6"/><file name="Domains.php" hash="26bbbf2a46741928e9aa673159d64af1"/><file name="Method.php" hash="151497a995e79e0a6e226ec1aae3eaec"/><file name="Sender.php" hash="2c054ca6a46b43545a0cec4eef381b8a"/></dir><file name="Subscribers.php" hash="cf44b0e4a17f2049ff69984f52daec16"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Fidelitas"><file name="AccountController.php" hash="5c46248e28c60189943fcac18bb95f7b"/><file name="AutorespondersController.php" hash="000336c4a0bbe237404ea8de5a399e66"/><file name="EventsController.php" hash="37252a1a492bb4a90d2badae5c92e472"/><file name="ListsController.php" hash="7731b43d85442b802c1d71fcc2d7c6b3"/><file name="SubscribersController.php" hash="c3c0393809c664891b02f07a89ca3f7b"/></dir></dir><file name="CallbackController.php" hash="e7c436874749a4f3ad444ce04173052d"/><file name="DownloadController.php" hash="2a793941280dddb4adbdc54d6777634b"/><file name="ProductsController.php" hash="368d75d6057c36710359fc0bfc945186"/><file name=".DS_Store" hash="7448e3cc4f6df46edb67d502b2c330fe"/></dir><dir name="etc"><file name="adminhtml.xml" hash="cbd50b5788580ddfd5b87449c8c07bff"/><file name="config.xml" hash="9109084a90a963ac2c7f52bac6f76ef8"/><file name="system.xml" hash="c9b035a3e3845f3ba47e806fef72560d"/></dir><dir name="sql"><dir name="fidelitas_setup"><file name="mysql4-install-2.0.0.0.php" hash="665ca2dfe422a474f4faad8ae1985e6c"/><file name="mysql4-upgrade-2.0.0.5-2.1.0.0.php" hash="628f9f7253d152847971708552849b90"/><file name="mysql4-upgrade-2.1.0.4-2.1.0.5.php" hash="5fe08f874391f6d174be2c33e2f81cfd"/><file name="mysql4-upgrade-2.2.0.4-2.2.0.5.php" hash="49eda87aa6a53550d8e6f28d03a59749"/><file name="mysql4-upgrade-2.6.3.1-2.7.0.0.php" hash="76e717f7bf1de83571eb301ec8c46daf"/></dir></dir><file name=".DS_Store" hash="8420e75b9ea41476af71869f18a90d28"/></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Licentia_Fidelitas.xml" hash="fb5bebd3e734d581867a362a1046df7c"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="fidelitas.xml" hash="78efe5b2c2cbf4650e4d3d5acea8df12"/></dir><dir name="template"><dir name="fidelitas"><file name="egoimmerce.phtml" hash="e22fffdcd01cdb4591ae55ffa634df60"/><file name="products.phtml" hash="6b704c921c38bcc25a6d90764e01a879"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="fidelitas.xml" hash="fbf163f93a515a6b834468bbbddd49da"/></dir><dir name="template"><dir name="fidelitas"><dir name="account"><file name="account.phtml" hash="97780bef262e113155886a62e867af3b"/><file name="new.phtml" hash="b77874642f2fe60d966ba52ba808ff87"/></dir></dir></dir></dir></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.2.0</min><max>7.0.0</max></php><extension><name>soap</name><min/><max/></extension></required></dependencies>
18
  </package>