Version Notes
Email marketing
Download this release
Release Info
Developer | bento |
Extension | Licentia_Fidelitas |
Version | 2.5.1.0 |
Comparing to | |
See all releases |
Code changes from version 2.5.0.5 to 2.5.1.0
- app/code/community/Licentia/Fidelitas/Model/Lists.php +11 -9
- app/code/community/Licentia/Fidelitas/controllers/Adminhtml/Fidelitas/AccountController.php +53 -28
- app/code/community/Licentia/Fidelitas/etc/config.xml +1 -1
- app/design/adminhtml/default/default/template/fidelitas/account/account.phtml +44 -3
- package.xml +3 -3
app/code/community/Licentia/Fidelitas/Model/Lists.php
CHANGED
@@ -105,7 +105,7 @@ class Licentia_Fidelitas_Model_Lists extends Mage_Core_Model_Abstract
|
|
105 |
Mage::getModel('fidelitas/egoi')->setData($callback)->editApiCallback();
|
106 |
}
|
107 |
|
108 |
-
public function getList($forceFields = false)
|
109 |
{
|
110 |
$result = $this->getCollection()->getFirstItem();
|
111 |
|
@@ -124,15 +124,17 @@ class Licentia_Fidelitas_Model_Lists extends Mage_Core_Model_Abstract
|
|
124 |
|
125 |
$egoi = Mage::getModel('fidelitas/egoi')->getLists();
|
126 |
|
127 |
-
$
|
128 |
-
|
129 |
-
|
130 |
-
$
|
131 |
-
|
|
|
|
|
|
|
|
|
|
|
132 |
}
|
133 |
-
}
|
134 |
-
if (!$ok) {
|
135 |
-
return -1;
|
136 |
}
|
137 |
|
138 |
$extra = Mage::getModel('fidelitas/egoi')
|
105 |
Mage::getModel('fidelitas/egoi')->setData($callback)->editApiCallback();
|
106 |
}
|
107 |
|
108 |
+
public function getList($forceFields = false, $listCheck = false)
|
109 |
{
|
110 |
$result = $this->getCollection()->getFirstItem();
|
111 |
|
124 |
|
125 |
$egoi = Mage::getModel('fidelitas/egoi')->getLists();
|
126 |
|
127 |
+
if ($listCheck) {
|
128 |
+
$ok = false;
|
129 |
+
foreach ($egoi->getData() as $list) {
|
130 |
+
if ($list['listnum'] == $result->getData('listnum')) {
|
131 |
+
$ok = true;
|
132 |
+
break;
|
133 |
+
}
|
134 |
+
}
|
135 |
+
if (!$ok) {
|
136 |
+
return -1;
|
137 |
}
|
|
|
|
|
|
|
138 |
}
|
139 |
|
140 |
$extra = Mage::getModel('fidelitas/egoi')
|
app/code/community/Licentia/Fidelitas/controllers/Adminhtml/Fidelitas/AccountController.php
CHANGED
@@ -10,27 +10,49 @@ class Licentia_Fidelitas_Adminhtml_Fidelitas_AccountController extends Mage_Admi
|
|
10 |
return $this;
|
11 |
}
|
12 |
|
13 |
-
public function
|
14 |
{
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
$diff = $lastDay->sub($firstDay)->toValue('m');
|
19 |
|
20 |
-
|
21 |
-
$this->_getSession()->addError($this->__('WARNING: Your cron is not running. Background data sync will not occur.'));
|
22 |
-
}
|
23 |
|
24 |
-
|
25 |
-
|
26 |
-
$this->
|
27 |
-
return;
|
28 |
}
|
29 |
|
30 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
|
32 |
-
if ($okList == -1) {
|
33 |
-
$this->_getSession()->addError($this->__('WARNING: We cannot find your E-Goi List Mapped to this Store. If this errors continues, please use the section on your right "Clear Data" to disconnect and start the mapping process again'));
|
34 |
}
|
35 |
|
36 |
$this->_initAction();
|
@@ -261,21 +283,24 @@ class Licentia_Fidelitas_Adminhtml_Fidelitas_AccountController extends Mage_Admi
|
|
261 |
{
|
262 |
if ($this->getRequest()->isPost()) {
|
263 |
$data = $this->getRequest()->getPost();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
264 |
|
265 |
-
|
266 |
-
if ($model->getData('user_id')) {
|
267 |
-
Mage::getConfig()->saveConfig('fidelitas/config/api_key', $data['api_key']);
|
268 |
-
Mage::getConfig()->cleanCache();
|
269 |
|
270 |
-
$lists = Mage::getModel('fidelitas/egoi')->getLists();
|
271 |
-
if (count($lists->getData()) == 0) {
|
272 |
-
$this->_getSession()->addSuccess($this->__('Success!!! Please wait while we setup the environment. Don\'t close or refresh this page.'));
|
273 |
-
} else {
|
274 |
-
$this->_getSession()->addSuccess($this->__('Success!!!'));
|
275 |
-
}
|
276 |
-
$this->_redirect('*/*/first/op/ok');
|
277 |
-
return;
|
278 |
-
} else {
|
279 |
$this->_getSession()->addError($this->__('Apikey invalid'));
|
280 |
$this->_redirect('*/*/new/op/api');
|
281 |
return;
|
10 |
return $this;
|
11 |
}
|
12 |
|
13 |
+
public function listAction()
|
14 |
{
|
15 |
+
try {
|
16 |
+
$listnum = $this->getRequest()->getPost('list_id');
|
17 |
+
Mage::getModel('fidelitas/lists')->getList()->setData('listnum', $listnum)->save();
|
|
|
18 |
|
19 |
+
$this->_getSession()->addSuccess($this->__('List Updated'));
|
|
|
|
|
20 |
|
21 |
+
} catch (Exception $e) {
|
22 |
+
|
23 |
+
$this->_getSession()->addError($e->getMessage());
|
|
|
24 |
}
|
25 |
|
26 |
+
$this->_redirect('*/*/');
|
27 |
+
return;
|
28 |
+
}
|
29 |
+
|
30 |
+
public function indexAction()
|
31 |
+
{
|
32 |
+
|
33 |
+
try {
|
34 |
+
$cron = Mage::getModel('cron/schedule')->getCollection()->setOrder('finished_at', 'DESC')->setPageSize(1)->getFirstItem();
|
35 |
+
$firstDay = new Zend_Date($cron['finished_at']);
|
36 |
+
$lastDay = new Zend_Date(now());
|
37 |
+
$diff = $lastDay->sub($firstDay)->toValue('m');
|
38 |
+
|
39 |
+
if ($diff > 20 || !$cron->getId()) {
|
40 |
+
$this->_getSession()->addError($this->__('WARNING: Your cron is not running. Background data sync will not occur.'));
|
41 |
+
}
|
42 |
+
|
43 |
+
$auth = Mage::getModel('fidelitas/egoi')->validateEgoiEnvironment();
|
44 |
+
if (!$auth) {
|
45 |
+
$this->_redirect('adminhtml/fidelitas_account/new');
|
46 |
+
return;
|
47 |
+
}
|
48 |
+
|
49 |
+
$okList = Mage::getModel('fidelitas/lists')->getList(true, true);
|
50 |
+
|
51 |
+
if ($okList == -1) {
|
52 |
+
$this->_getSession()->addError($this->__('WARNING: We cannot find your E-Goi List Mapped to this Store. If this errors continues, please use the section on your right "Clear Data" to disconnect and start the mapping process again'));
|
53 |
+
}
|
54 |
+
} catch (Exception $e) {
|
55 |
|
|
|
|
|
56 |
}
|
57 |
|
58 |
$this->_initAction();
|
283 |
{
|
284 |
if ($this->getRequest()->isPost()) {
|
285 |
$data = $this->getRequest()->getPost();
|
286 |
+
try {
|
287 |
+
$model = Mage::getModel('fidelitas/egoi')->setData('api_key', $data['api_key'])->checkLogin($data['api_key']);
|
288 |
+
if ($model->getData('user_id')) {
|
289 |
+
Mage::getConfig()->saveConfig('fidelitas/config/api_key', $data['api_key']);
|
290 |
+
Mage::getConfig()->cleanCache();
|
291 |
+
|
292 |
+
$lists = Mage::getModel('fidelitas/egoi')->getLists();
|
293 |
+
if (count($lists->getData()) == 0) {
|
294 |
+
$this->_getSession()->addSuccess($this->__('Success!!! Please wait while we setup the environment. Don\'t close or refresh this page.'));
|
295 |
+
} else {
|
296 |
+
$this->_getSession()->addSuccess($this->__('Success!!!'));
|
297 |
+
}
|
298 |
+
$this->_redirect('*/*/first/op/ok');
|
299 |
+
return;
|
300 |
+
}
|
301 |
|
302 |
+
} catch (Exception $e) {
|
|
|
|
|
|
|
303 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
304 |
$this->_getSession()->addError($this->__('Apikey invalid'));
|
305 |
$this->_redirect('*/*/new/op/api');
|
306 |
return;
|
app/code/community/Licentia/Fidelitas/etc/config.xml
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
<config>
|
4 |
<modules>
|
5 |
<Licentia_Fidelitas>
|
6 |
-
<version>2.5.0
|
7 |
</Licentia_Fidelitas>
|
8 |
</modules>
|
9 |
<frontend>
|
3 |
<config>
|
4 |
<modules>
|
5 |
<Licentia_Fidelitas>
|
6 |
+
<version>2.5.1.0</version>
|
7 |
</Licentia_Fidelitas>
|
8 |
</modules>
|
9 |
<frontend>
|
app/design/adminhtml/default/default/template/fidelitas/account/account.phtml
CHANGED
@@ -1,5 +1,9 @@
|
|
1 |
<?php
|
2 |
$data = $this->getCompany();
|
|
|
|
|
|
|
|
|
3 |
?>
|
4 |
<style type="text/css">
|
5 |
th span {
|
@@ -58,6 +62,41 @@ $data = $this->getCompany();
|
|
58 |
</table>
|
59 |
|
60 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
61 |
<table cellspacing="0" style="margin-top:10px;" id="storeGrid_table" class="data">
|
62 |
<tbody>
|
63 |
<thead>
|
@@ -77,15 +116,17 @@ $data = $this->getCompany();
|
|
77 |
<tbody>
|
78 |
<thead>
|
79 |
<tr class="headings">
|
80 |
-
<th class=" no-link last" colspan="2"><span
|
|
|
81 |
</th>
|
82 |
</tr>
|
83 |
</thead>
|
84 |
<tr class="even">
|
85 |
<td>
|
86 |
-
<a href="<?php echo $this->getUrl('*/*/bulk',array('export'=>1)); ?>"><?php echo $this->__('Click here to EXPORT Magento Subscribers.') ?> </a><br><em><?php echo $this->__('This process may take a few minutes') ?></em>
|
87 |
</td>
|
88 |
-
</tr>
|
|
|
89 |
<td>
|
90 |
<a href="<?php echo $this->getUrl('*/*/bulk'); ?>"><?php echo $this->__('Click here to SYNC Magento Subscribers.') ?> </a><br><em><?php echo $this->__('This process may take a few minutes') ?></em>
|
91 |
</td>
|
1 |
<?php
|
2 |
$data = $this->getCompany();
|
3 |
+
|
4 |
+
$list = Mage::getModel('fidelitas/egoi')->getLists();
|
5 |
+
$currentList = Mage::getModel('fidelitas/lists')->getList();
|
6 |
+
|
7 |
?>
|
8 |
<style type="text/css">
|
9 |
th span {
|
62 |
</table>
|
63 |
|
64 |
|
65 |
+
<form method="post" action="<?php echo $this->getUrl('*/*/list') ?>">
|
66 |
+
<?php echo $this->getBlockHtml('formkey')?>
|
67 |
+
<table cellspacing="0" style="margin-top:10px;" id="storeGrid_table" class="data">
|
68 |
+
<tbody>
|
69 |
+
<thead>
|
70 |
+
<tr class="headings">
|
71 |
+
<th class=" no-link last" colspan="2"><span
|
72 |
+
class="nobr"><?php echo $this->__('Change Associated E-Goi List') ?></span>
|
73 |
+
</th>
|
74 |
+
</tr>
|
75 |
+
</thead>
|
76 |
+
<tr>
|
77 |
+
<td>List:
|
78 |
+
<select name="list_id">
|
79 |
+
|
80 |
+
<?php foreach ($list->getData() as $item): ?>
|
81 |
+
|
82 |
+
<option value="<?php echo $item['listnum'] ?>" <?php if ($item['listnum'] == $currentList->getData('listnum')) {
|
83 |
+
echo " selected ='selected' ";
|
84 |
+
} ?> ><?php echo $item['listnum'] . ' - ' . $item['title'] ?></option>
|
85 |
+
|
86 |
+
<?php endforeach; ?>
|
87 |
+
</select>
|
88 |
+
|
89 |
+
</td>
|
90 |
+
</tr>
|
91 |
+
<tr>
|
92 |
+
<td>
|
93 |
+
<button type="submit"><span><?php echo $this->__('Update') ?></span></button>
|
94 |
+
</td>
|
95 |
+
</tr>
|
96 |
+
</tbody>
|
97 |
+
</table>
|
98 |
+
|
99 |
+
</form>
|
100 |
<table cellspacing="0" style="margin-top:10px;" id="storeGrid_table" class="data">
|
101 |
<tbody>
|
102 |
<thead>
|
116 |
<tbody>
|
117 |
<thead>
|
118 |
<tr class="headings">
|
119 |
+
<th class=" no-link last" colspan="2"><span
|
120 |
+
class="nobr"><?php echo $this->__('Push Magento Subscribers') ?></span>
|
121 |
</th>
|
122 |
</tr>
|
123 |
</thead>
|
124 |
<tr class="even">
|
125 |
<td>
|
126 |
+
<a href="<?php echo $this->getUrl('*/*/bulk', array('export' => 1)); ?>"><?php echo $this->__('Click here to EXPORT Magento Subscribers.') ?> </a><br><em><?php echo $this->__('This process may take a few minutes') ?></em>
|
127 |
</td>
|
128 |
+
</tr>
|
129 |
+
<tr class="odd">
|
130 |
<td>
|
131 |
<a href="<?php echo $this->getUrl('*/*/bulk'); ?>"><?php echo $this->__('Click here to SYNC Magento Subscribers.') ?> </a><br><em><?php echo $this->__('This process may take a few minutes') ?></em>
|
132 |
</td>
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Licentia_Fidelitas</name>
|
4 |
-
<version>2.5.0
|
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>
|
@@ -11,8 +11,8 @@
|
|
11 |
<notes>Email marketing</notes>
|
12 |
<authors><author><name>bento</name><user>licentia</user><email>bento@licentia.pt</email></author></authors>
|
13 |
<date>2017-04-05</date>
|
14 |
-
<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="Test.php" hash="55c625dced6d7e265c28377eed3fea21"/></dir></dir></dir></dir></dir><file name="Egoimmerce.php" hash="66ea73ddc94914d705ab22ee90da0c08"/><file name="Products.php" hash="fe93effd102dc4b569725e37f6c004dd"/></dir><dir name="Helper"><file name="Data.php" hash="d9c90d95319fab4b6431b2d30fbfae6f"/></dir><dir name="Model"><file name="Account.php" hash="ac6a858eebdf9335b22e7cced2145fa8"/><file name="Autoresponders.php" hash="3f6808a6b9c7e356002c31cc00597317"/><file name="Egoi.php" hash="bfa2b5fe6f863acaebf475ef8d835096"/><file name="Events.php" hash="190cf15070bd6f799f8b10c0921133f5"/><file name="Extra.php" hash="ba2e3e3797ebd6d62bbca22a05190cae"/><file name="Lists.php" hash="
|
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.5.1.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>
|
11 |
<notes>Email marketing</notes>
|
12 |
<authors><author><name>bento</name><user>licentia</user><email>bento@licentia.pt</email></author></authors>
|
13 |
<date>2017-04-05</date>
|
14 |
+
<time>20:32:03</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="Test.php" hash="55c625dced6d7e265c28377eed3fea21"/></dir></dir></dir></dir></dir><file name="Egoimmerce.php" hash="66ea73ddc94914d705ab22ee90da0c08"/><file name="Products.php" hash="fe93effd102dc4b569725e37f6c004dd"/></dir><dir name="Helper"><file name="Data.php" hash="d9c90d95319fab4b6431b2d30fbfae6f"/></dir><dir name="Model"><file name="Account.php" hash="ac6a858eebdf9335b22e7cced2145fa8"/><file name="Autoresponders.php" hash="3f6808a6b9c7e356002c31cc00597317"/><file name="Egoi.php" hash="bfa2b5fe6f863acaebf475ef8d835096"/><file name="Events.php" hash="190cf15070bd6f799f8b10c0921133f5"/><file name="Extra.php" hash="ba2e3e3797ebd6d62bbca22a05190cae"/><file name="Lists.php" hash="9a069102acc4700476a2b16a058ecc45"/><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="Method.php" hash="151497a995e79e0a6e226ec1aae3eaec"/><file name="Sender.php" hash="2c054ca6a46b43545a0cec4eef381b8a"/></dir><file name="Subscribers.php" hash="3f0b59c2faf8738f93e855eb86cab788"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Fidelitas"><file name="AccountController.php" hash="d3dfbe62a76ead050754665e8a06e076"/><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="a5c1e7ef880f3faeaa32287791737669"/><file name="ProductsController.php" hash="368d75d6057c36710359fc0bfc945186"/></dir><dir name="etc"><file name="adminhtml.xml" hash="cbd50b5788580ddfd5b87449c8c07bff"/><file name="config.xml" hash="71dc2d911c1e0d85a454a8d3b241b408"/><file name="system.xml" hash="bfbfc6ba8827e6ba20f1cd88b2f25105"/></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="ed2e1a7d5e7cd959277823d7a03bff5a"/></dir></dir></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="ab90dc0fc7b17a2b4e1bc8f5a5a37c29"/><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>
|