Version Notes
Email marketing
Download this release
Release Info
Developer | bento |
Extension | Licentia_Fidelitas |
Version | 2.6.1.0 |
Comparing to | |
See all releases |
Code changes from version 2.6.0.0 to 2.6.1.0
- app/code/community/Licentia/Fidelitas/Block/Adminhtml/System/Config/Form/Field/Smtp.php +13 -0
- app/code/community/Licentia/Fidelitas/Helper/Data.php +18 -0
- app/code/community/Licentia/Fidelitas/Model/Egoi.php +2 -0
- app/code/community/Licentia/Fidelitas/Model/Email.php +56 -0
- app/code/community/Licentia/Fidelitas/Model/Email/Template.php +80 -0
- app/code/community/Licentia/Fidelitas/controllers/Adminhtml/Fidelitas/AccountController.php +29 -0
- app/code/community/Licentia/Fidelitas/etc/config.xml +10 -1
- app/code/community/Licentia/Fidelitas/etc/system.xml +47 -0
- package.xml +4 -4
app/code/community/Licentia/Fidelitas/Block/Adminhtml/System/Config/Form/Field/Smtp.php
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
|
4 |
+
class Licentia_Fidelitas_Block_Adminhtml_System_Config_Form_Field_Smtp extends Mage_Adminhtml_Block_System_Config_Form_Field {
|
5 |
+
|
6 |
+
protected function _getElementHtml(Varien_Data_Form_Element_Abstract $element) {
|
7 |
+
|
8 |
+
$url = $this->getUrl('*/fidelitas_account/validateSmtp');
|
9 |
+
|
10 |
+
return '<button onclick="window.location=\'' . $url . '\'" class="scalable" type="button" ><span><span><span>' . Mage::helper('fidelitas')->__('Test SMTP Settings') . '</span></span></span></button>';
|
11 |
+
}
|
12 |
+
|
13 |
+
}
|
app/code/community/Licentia/Fidelitas/Helper/Data.php
CHANGED
@@ -5,6 +5,10 @@ class Licentia_Fidelitas_Helper_Data extends Mage_Core_Helper_Abstract
|
|
5 |
|
6 |
const XML_PATH_ACTIVE = 'fidelitas/config/analytics';
|
7 |
|
|
|
|
|
|
|
|
|
8 |
|
9 |
/**
|
10 |
*
|
@@ -27,4 +31,18 @@ class Licentia_Fidelitas_Helper_Data extends Mage_Core_Helper_Abstract
|
|
27 |
return $col->getSize() > 0 ? $col->getFirstItem() : false;
|
28 |
}
|
29 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
}
|
5 |
|
6 |
const XML_PATH_ACTIVE = 'fidelitas/config/analytics';
|
7 |
|
8 |
+
const TRANSACTIONAL_SERVER = 'bo51.e-goi.com';
|
9 |
+
const TRANSACTIONAL_PORT = 587;
|
10 |
+
const TRANSACTIONAL_AUTH = 'login';
|
11 |
+
const TRANSACTIONAL_SSL = 'TLS';
|
12 |
|
13 |
/**
|
14 |
*
|
31 |
return $col->getSize() > 0 ? $col->getFirstItem() : false;
|
32 |
}
|
33 |
|
34 |
+
public function getSmtpTransport($storeId)
|
35 |
+
{
|
36 |
+
|
37 |
+
$config = array('auth' => self::TRANSACTIONAL_AUTH, 'port' => self::TRANSACTIONAL_PORT);
|
38 |
+
|
39 |
+
$config['ssl'] = self::TRANSACTIONAL_SSL;
|
40 |
+
|
41 |
+
$config['username'] = Mage::getStoreConfig('fidelitas/transactional/username', $storeId);
|
42 |
+
$config['password'] = Mage::getStoreConfig('fidelitas/transactional/password', $storeId);
|
43 |
+
|
44 |
+
|
45 |
+
return new Zend_Mail_Transport_Smtp(self::TRANSACTIONAL_SERVER, $config);
|
46 |
+
}
|
47 |
+
|
48 |
}
|
app/code/community/Licentia/Fidelitas/Model/Egoi.php
CHANGED
@@ -11,6 +11,7 @@ class Licentia_Fidelitas_Model_Egoi extends Varien_Object
|
|
11 |
|
12 |
|
13 |
protected $_client;
|
|
|
14 |
|
15 |
|
16 |
public function _construct()
|
@@ -315,6 +316,7 @@ class Licentia_Fidelitas_Model_Egoi extends Varien_Object
|
|
315 |
|
316 |
$indexArray[] = $element->getData('extra_code');
|
317 |
}
|
|
|
318 |
}
|
319 |
} else {
|
320 |
foreach ($extra as $element) {
|
11 |
|
12 |
|
13 |
protected $_client;
|
14 |
+
protected $rpc;
|
15 |
|
16 |
|
17 |
public function _construct()
|
316 |
|
317 |
$indexArray[] = $element->getData('extra_code');
|
318 |
}
|
319 |
+
$data[$element->getData('extra_code')] = '';
|
320 |
}
|
321 |
} else {
|
322 |
foreach ($extra as $element) {
|
app/code/community/Licentia/Fidelitas/Model/Email.php
ADDED
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/**
|
4 |
+
* Licentia, Unipessoal LDA
|
5 |
+
*
|
6 |
+
* NOTICE OF LICENSE
|
7 |
+
*
|
8 |
+
* This source file is subject to the EULA
|
9 |
+
* that is bundled with this package in the file LICENSE.txt.
|
10 |
+
* It is also available through the world-wide-web at this URL:
|
11 |
+
* http://licentia.pt/magento-license.txt
|
12 |
+
*
|
13 |
+
* @title Licentia SMTP Email Marketing
|
14 |
+
* @package Licentia
|
15 |
+
* @author Bento Vilas Boas <bento@licentia.pt>
|
16 |
+
* @copyright Copyright (c) 2012-2016 Licentia - http://licentia.pt
|
17 |
+
* @license http://licentia.pt/magento-license.txt
|
18 |
+
*/
|
19 |
+
class Licentia_Fidelitas_Model_Email extends Mage_Core_Model_Email
|
20 |
+
{
|
21 |
+
|
22 |
+
|
23 |
+
public function send()
|
24 |
+
{
|
25 |
+
$storeId = Mage::app()->getStore()->getId();
|
26 |
+
|
27 |
+
if (!Mage::getStoreConfigFlag('fidelitas/transactional/enable', $storeId)) {
|
28 |
+
return parent::send();
|
29 |
+
}
|
30 |
+
|
31 |
+
if (Mage::getStoreConfigFlag('system/smtp/disable')) {
|
32 |
+
return $this;
|
33 |
+
}
|
34 |
+
|
35 |
+
$mail = new Zend_Mail();
|
36 |
+
|
37 |
+
if (strtolower($this->getType()) == 'html') {
|
38 |
+
$mail->setBodyHtml($this->getBody());
|
39 |
+
} else {
|
40 |
+
$mail->setBodyText($this->getBody());
|
41 |
+
}
|
42 |
+
|
43 |
+
|
44 |
+
$transport = Mage::helper('fidelitas')->getSmtpTransport($storeId);
|
45 |
+
|
46 |
+
$mail->setFrom($this->getFromEmail(), $this->getFromName())
|
47 |
+
->addTo($this->getToEmail(), $this->getToName())
|
48 |
+
->setSubject($this->getSubject())
|
49 |
+
->setReplyTo($this->getSenderEmail(), $this->getSenderName());
|
50 |
+
|
51 |
+
$mail->send($transport);
|
52 |
+
|
53 |
+
return $this;
|
54 |
+
}
|
55 |
+
|
56 |
+
}
|
app/code/community/Licentia/Fidelitas/Model/Email/Template.php
ADDED
@@ -0,0 +1,80 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/**
|
4 |
+
* Licentia, Unipessoal LDA
|
5 |
+
*
|
6 |
+
* NOTICE OF LICENSE
|
7 |
+
*
|
8 |
+
* This source file is subject to the EULA
|
9 |
+
* that is bundled with this package in the file LICENSE.txt.
|
10 |
+
* It is also available through the world-wide-web at this URL:
|
11 |
+
* http://licentia.pt/magento-license.txt
|
12 |
+
*
|
13 |
+
* @title Licentia SMTP Email Marketing
|
14 |
+
* @package Licentia
|
15 |
+
* @author Bento Vilas Boas <bento@licentia.pt>
|
16 |
+
* @copyright Copyright (c) 2012-2016 Licentia - http://licentia.pt
|
17 |
+
* @license http://licentia.pt/magento-license.txt
|
18 |
+
*/
|
19 |
+
class Licentia_Fidelitas_Model_Email_Template extends Mage_Core_Model_Email_Template
|
20 |
+
{
|
21 |
+
|
22 |
+
public function send($email, $name = null, array $variables = array())
|
23 |
+
{
|
24 |
+
$storeId = Mage::app()->getStore()->getId();
|
25 |
+
|
26 |
+
if (!Mage::getStoreConfigFlag('fidelitas/transactional/enable', $storeId)) {
|
27 |
+
return parent::send($email, $name, $variables);
|
28 |
+
}
|
29 |
+
if (!$this->isValidForSend()) {
|
30 |
+
Mage::logException(new Exception('This letter cannot be sent.')); // translation is intentionally omitted
|
31 |
+
return false;
|
32 |
+
}
|
33 |
+
|
34 |
+
$emails = array_values((array)$email);
|
35 |
+
$names = is_array($name) ? $name : (array)$name;
|
36 |
+
$names = array_values($names);
|
37 |
+
foreach ($emails as $key => $email) {
|
38 |
+
if (!isset($names[$key])) {
|
39 |
+
$names[$key] = substr($email, 0, strpos($email, '@'));
|
40 |
+
}
|
41 |
+
}
|
42 |
+
|
43 |
+
$variables['email'] = reset($emails);
|
44 |
+
$variables['name'] = reset($names);
|
45 |
+
|
46 |
+
$this->setUseAbsoluteLinks(true);
|
47 |
+
$text = $this->getProcessedTemplate($variables, true);
|
48 |
+
$subject = $this->getProcessedTemplateSubject($variables);
|
49 |
+
|
50 |
+
$mail = $this->getMail();
|
51 |
+
|
52 |
+
foreach ($emails as $key => $email) {
|
53 |
+
$mail->addTo($email, '=?utf-8?B?' . base64_encode($names[$key]) . '?=');
|
54 |
+
}
|
55 |
+
|
56 |
+
if ($this->isPlain()) {
|
57 |
+
$mail->setBodyText($text);
|
58 |
+
} else {
|
59 |
+
$mail->setBodyHTML($text);
|
60 |
+
}
|
61 |
+
|
62 |
+
$mail->setSubject('=?utf-8?B?' . base64_encode($subject) . '?=');
|
63 |
+
$mail->setFrom($this->getSenderEmail(), $this->getSenderName());
|
64 |
+
|
65 |
+
try {
|
66 |
+
$transport = Mage::helper('fidelitas')->getSmtpTransport($storeId);
|
67 |
+
$mail->send($transport);
|
68 |
+
$this->_mail = null;
|
69 |
+
} catch (Exception $e) {
|
70 |
+
$this->_mail = null;
|
71 |
+
Mage::logException($e);
|
72 |
+
return false;
|
73 |
+
}
|
74 |
+
|
75 |
+
return true;
|
76 |
+
|
77 |
+
}
|
78 |
+
|
79 |
+
|
80 |
+
}
|
app/code/community/Licentia/Fidelitas/controllers/Adminhtml/Fidelitas/AccountController.php
CHANGED
@@ -10,6 +10,35 @@ class Licentia_Fidelitas_Adminhtml_Fidelitas_AccountController extends Mage_Admi
|
|
10 |
return $this;
|
11 |
}
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
public function listAction()
|
14 |
{
|
15 |
try {
|
10 |
return $this;
|
11 |
}
|
12 |
|
13 |
+
public function validateSmtpAction()
|
14 |
+
{
|
15 |
+
try {
|
16 |
+
|
17 |
+
$transport = Mage::helper('fidelitas')->getSmtpTransport();
|
18 |
+
|
19 |
+
$salesSender = Mage::getStoreConfig('trans_email/ident_general/name');
|
20 |
+
$salesEmail = Mage::getStoreConfig('trans_email/ident_general/email');
|
21 |
+
|
22 |
+
$mail = new Zend_Mail('utf-8');
|
23 |
+
$mail->setBodyHtml('If you are receiving this message, everything seems to be ok with your SMTP configuration');
|
24 |
+
$mail->setFrom($salesEmail, $salesSender)
|
25 |
+
->addTo($salesEmail, $salesSender)
|
26 |
+
->setSubject('E-Goi / Magento - Teste');
|
27 |
+
|
28 |
+
$mail->send($transport);
|
29 |
+
|
30 |
+
$this->_getSession()->addSuccess('Success. Everything seems to be ok with your setting. We sent an email to ' . $salesEmail);
|
31 |
+
|
32 |
+
} catch (Exception $e) {
|
33 |
+
|
34 |
+
$this->_getSession()->addError('Error Testing your Settings: ' . $e->getMessage());
|
35 |
+
echo $e->getMessage();
|
36 |
+
|
37 |
+
}
|
38 |
+
|
39 |
+
return $this->_redirectReferer();
|
40 |
+
}
|
41 |
+
|
42 |
public function listAction()
|
43 |
{
|
44 |
try {
|
app/code/community/Licentia/Fidelitas/etc/config.xml
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
<config>
|
4 |
<modules>
|
5 |
<Licentia_Fidelitas>
|
6 |
-
<version>2.6.
|
7 |
</Licentia_Fidelitas>
|
8 |
</modules>
|
9 |
<frontend>
|
@@ -143,6 +143,12 @@
|
|
143 |
</newsletter_subscriber_save_after>
|
144 |
</events>
|
145 |
<models>
|
|
|
|
|
|
|
|
|
|
|
|
|
146 |
<fidelitas>
|
147 |
<class>Licentia_Fidelitas_Model</class>
|
148 |
<resourceModel>fidelitas_mysql4</resourceModel>
|
@@ -240,6 +246,9 @@
|
|
240 |
<api_key>0</api_key>
|
241 |
<cellphone>telephone</cellphone>
|
242 |
</config>
|
|
|
|
|
|
|
243 |
</fidelitas>
|
244 |
</default>
|
245 |
</config>
|
3 |
<config>
|
4 |
<modules>
|
5 |
<Licentia_Fidelitas>
|
6 |
+
<version>2.6.1.0</version>
|
7 |
</Licentia_Fidelitas>
|
8 |
</modules>
|
9 |
<frontend>
|
143 |
</newsletter_subscriber_save_after>
|
144 |
</events>
|
145 |
<models>
|
146 |
+
<core>
|
147 |
+
<rewrite>
|
148 |
+
<email>Licentia_Fidelitas_Model_Email</email>
|
149 |
+
<email_template>Licentia_Fidelitas_Model_Email_Template</email_template>
|
150 |
+
</rewrite>
|
151 |
+
</core>
|
152 |
<fidelitas>
|
153 |
<class>Licentia_Fidelitas_Model</class>
|
154 |
<resourceModel>fidelitas_mysql4</resourceModel>
|
246 |
<api_key>0</api_key>
|
247 |
<cellphone>telephone</cellphone>
|
248 |
</config>
|
249 |
+
<transactional>
|
250 |
+
<enabled>0</enabled>
|
251 |
+
</transactional>
|
252 |
</fidelitas>
|
253 |
</default>
|
254 |
</config>
|
app/code/community/Licentia/Fidelitas/etc/system.xml
CHANGED
@@ -113,6 +113,53 @@
|
|
113 |
</test>
|
114 |
</fields>
|
115 |
</test>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
116 |
</groups>
|
117 |
</fidelitas>
|
118 |
</sections>
|
113 |
</test>
|
114 |
</fields>
|
115 |
</test>
|
116 |
+
<transactional translate="label">
|
117 |
+
<label>Transactional Emails</label>
|
118 |
+
<frontend_type>text</frontend_type>
|
119 |
+
<sort_order>100</sort_order>
|
120 |
+
<show_in_default>1</show_in_default>
|
121 |
+
<show_in_website>1</show_in_website>
|
122 |
+
<show_in_store>1</show_in_store>
|
123 |
+
<expanded>1</expanded>
|
124 |
+
<fields>
|
125 |
+
<enable translate="label">
|
126 |
+
<label>Enable Transactional Emails</label>
|
127 |
+
<frontend_type>select</frontend_type>
|
128 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
129 |
+
<sort_order>10</sort_order>
|
130 |
+
<show_in_default>1</show_in_default>
|
131 |
+
<show_in_website>1</show_in_website>
|
132 |
+
<show_in_store>0</show_in_store>
|
133 |
+
<comment>Enable Sending Transactional Emails Trough E-Goi</comment>
|
134 |
+
</enable>
|
135 |
+
<username>
|
136 |
+
<label>Username</label>
|
137 |
+
<frontend_type>text</frontend_type>
|
138 |
+
<sort_order>20</sort_order>
|
139 |
+
<show_in_default>1</show_in_default>
|
140 |
+
<show_in_website>1</show_in_website>
|
141 |
+
<show_in_store>1</show_in_store>
|
142 |
+
</username>
|
143 |
+
<password>
|
144 |
+
<label>Password</label>
|
145 |
+
<frontend_type>password</frontend_type>
|
146 |
+
<sort_order>30</sort_order>
|
147 |
+
<show_in_default>1</show_in_default>
|
148 |
+
<show_in_website>1</show_in_website>
|
149 |
+
<show_in_store>1</show_in_store>
|
150 |
+
</password>
|
151 |
+
<test translate="label">
|
152 |
+
<label></label>
|
153 |
+
<frontend_type>label</frontend_type>
|
154 |
+
<frontend_model>fidelitas/adminhtml_system_config_form_field_smtp</frontend_model>
|
155 |
+
<comment>Please remember to save any changes prior to testing</comment>
|
156 |
+
<sort_order>130</sort_order>
|
157 |
+
<show_in_default>1</show_in_default>
|
158 |
+
<show_in_website>1</show_in_website>
|
159 |
+
<show_in_store>1</show_in_store>
|
160 |
+
</test>
|
161 |
+
</fields>
|
162 |
+
</transactional>
|
163 |
</groups>
|
164 |
</fidelitas>
|
165 |
</sections>
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Licentia_Fidelitas</name>
|
4 |
-
<version>2.6.
|
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-
|
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="
|
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.6.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>
|
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-05-18</date>
|
14 |
+
<time>15:47:45</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="66ea73ddc94914d705ab22ee90da0c08"/><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="7583a06d4a79d7a3f6e51fcda07183a1"/><dir name="Email"><file name="Template.php" hash="647cf7b70c6a53fdf27a5ff2b8312f6d"/></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="Method.php" hash="151497a995e79e0a6e226ec1aae3eaec"/><file name="Sender.php" hash="2c054ca6a46b43545a0cec4eef381b8a"/></dir><file name="Subscribers.php" hash="a1e74a8f235b1246b9ab2db5444ff887"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Fidelitas"><file name="AccountController.php" hash="127647c8566c53b725be5e7168141bbc"/><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="02219b0e51863a201336e72d3ccef375"/><file name="ProductsController.php" hash="368d75d6057c36710359fc0bfc945186"/></dir><dir name="etc"><file name="adminhtml.xml" hash="cbd50b5788580ddfd5b87449c8c07bff"/><file name="config.xml" hash="40f3bc45ce605357d77420b37d703c85"/><file name="system.xml" hash="43fb643a460ac70508f48621ca81b32b"/></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>
|