Version Notes
Version 1.0.1
* Bug fixes
Build Date: 2015-12-22
Download this release
Release Info
Developer | Numerno |
Extension | Numerno_Euromsg |
Version | 1.0.1 |
Comparing to | |
See all releases |
Code changes from version 1.0.0 to 1.0.1
- app/code/local/Numerno/Euromsg/Model/Export/Entity/Product.php +3 -6
- app/code/local/Numerno/Euromsg/Model/Observer.php +0 -1
- app/code/local/Numerno/Euromsg/Model/System/Config/Backend/Cron.php +1 -1
- app/code/local/Numerno/Euromsg/etc/config.xml +1 -1
- app/code/local/Numerno/Euromsg/sql/euromsg_setup/install-1.0.0.php +2 -2
- app/etc/modules/Numerno_Euromsg.xml +1 -2
- package.xml +7 -14
app/code/local/Numerno/Euromsg/Model/Export/Entity/Product.php
CHANGED
@@ -299,7 +299,6 @@ class Numerno_Euromsg_Model_Export_Entity_Product extends Mage_ImportExport_Mode
|
|
299 |
$minProductsLimit = Mage::getStoreConfig('euromsg_catalog/advanced/minimum_products');
|
300 |
if(!$minProductsLimit)
|
301 |
$minProductsLimit = 500;
|
302 |
-
|
303 |
$limitProducts = intval(($memoryLimit * $memoryUsagePercent - memory_get_usage(true)) / $memoryPerProduct);
|
304 |
if ($limitProducts < $minProductsLimit)
|
305 |
$limitProducts = $minProductsLimit;
|
@@ -400,14 +399,13 @@ class Numerno_Euromsg_Model_Export_Entity_Product extends Mage_ImportExport_Mode
|
|
400 |
break;
|
401 |
|
402 |
foreach ($collection as $itemId => $item) { // go through all products
|
403 |
-
|
404 |
foreach ($validAttrCodes as &$attrCode) { // go through all valid attribute codes
|
405 |
$attrValue = $item->getData($attrCode);
|
406 |
|
407 |
if(Zend_Date::isDate($attrValue, Zend_Date::ISO_8601)) {
|
408 |
$attrValue = date("Y-m-d", strtotime($attrValue));
|
409 |
}
|
410 |
-
|
411 |
if (!empty($this->_attributeValues[$attrCode])) {
|
412 |
if ($this->_attributeTypes[$attrCode] == 'multiselect') {
|
413 |
$attrValue = explode(',', $attrValue);
|
@@ -422,15 +420,14 @@ class Numerno_Euromsg_Model_Export_Entity_Product extends Mage_ImportExport_Mode
|
|
422 |
$attrValue = null;
|
423 |
}
|
424 |
}
|
425 |
-
if(in_array($attrCode, array('image', 'small_image', 'thumbnail'))){
|
426 |
$attrValue = (($attrValue == 'no_selection' || $attrValue == '') ?
|
427 |
'' : Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA) . 'catalog/product'
|
428 |
. $attrValue);
|
429 |
-
|
430 |
if (is_scalar($attrValue) && isset($attributes[$attrCode])) {
|
431 |
$dataRows[$itemId][$attributes[$attrCode]['col_name']] = $attrValue;
|
432 |
}
|
433 |
-
|
434 |
}
|
435 |
|
436 |
$attrSetId = $item->getAttributeSetId();
|
299 |
$minProductsLimit = Mage::getStoreConfig('euromsg_catalog/advanced/minimum_products');
|
300 |
if(!$minProductsLimit)
|
301 |
$minProductsLimit = 500;
|
|
|
302 |
$limitProducts = intval(($memoryLimit * $memoryUsagePercent - memory_get_usage(true)) / $memoryPerProduct);
|
303 |
if ($limitProducts < $minProductsLimit)
|
304 |
$limitProducts = $minProductsLimit;
|
399 |
break;
|
400 |
|
401 |
foreach ($collection as $itemId => $item) { // go through all products
|
402 |
+
|
403 |
foreach ($validAttrCodes as &$attrCode) { // go through all valid attribute codes
|
404 |
$attrValue = $item->getData($attrCode);
|
405 |
|
406 |
if(Zend_Date::isDate($attrValue, Zend_Date::ISO_8601)) {
|
407 |
$attrValue = date("Y-m-d", strtotime($attrValue));
|
408 |
}
|
|
|
409 |
if (!empty($this->_attributeValues[$attrCode])) {
|
410 |
if ($this->_attributeTypes[$attrCode] == 'multiselect') {
|
411 |
$attrValue = explode(',', $attrValue);
|
420 |
$attrValue = null;
|
421 |
}
|
422 |
}
|
423 |
+
if(in_array($attrCode, array('image', 'small_image', 'thumbnail'))) {
|
424 |
$attrValue = (($attrValue == 'no_selection' || $attrValue == '') ?
|
425 |
'' : Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA) . 'catalog/product'
|
426 |
. $attrValue);
|
427 |
+
}
|
428 |
if (is_scalar($attrValue) && isset($attributes[$attrCode])) {
|
429 |
$dataRows[$itemId][$attributes[$attrCode]['col_name']] = $attrValue;
|
430 |
}
|
|
|
431 |
}
|
432 |
|
433 |
$attrSetId = $item->getAttributeSetId();
|
app/code/local/Numerno/Euromsg/Model/Observer.php
CHANGED
@@ -326,7 +326,6 @@ class Numerno_Euromsg_Model_Observer
|
|
326 |
try {
|
327 |
$customer = Mage::getModel('customer/customer')->load($order->getCustomerId());
|
328 |
if($customer->getId()) {
|
329 |
-
$notifySms = Mage::helper('euromsg/sms')->getStoreConfig('template/sms_new_track');
|
330 |
$template = Mage::helper('euromsg/sms')->getStoreConfig('template/sms_new_track_template');
|
331 |
$suffix = Mage::helper('euromsg/sms')->getStoreConfig('template/footer');
|
332 |
|
326 |
try {
|
327 |
$customer = Mage::getModel('customer/customer')->load($order->getCustomerId());
|
328 |
if($customer->getId()) {
|
|
|
329 |
$template = Mage::helper('euromsg/sms')->getStoreConfig('template/sms_new_track_template');
|
330 |
$suffix = Mage::helper('euromsg/sms')->getStoreConfig('template/footer');
|
331 |
|
app/code/local/Numerno/Euromsg/Model/System/Config/Backend/Cron.php
CHANGED
@@ -70,7 +70,7 @@ class Numerno_Euromsg_Model_System_Config_Backend_Cron extends Mage_Core_Model_C
|
|
70 |
'*', # Month of the Year
|
71 |
($frequency == $frequencyWeekly) ? '1' : '*', # Day of the Week
|
72 |
);
|
73 |
-
$cronExprString =
|
74 |
}
|
75 |
}
|
76 |
|
70 |
'*', # Month of the Year
|
71 |
($frequency == $frequencyWeekly) ? '1' : '*', # Day of the Week
|
72 |
);
|
73 |
+
$cronExprString = implode(' ', $cronExprArray);
|
74 |
}
|
75 |
}
|
76 |
|
app/code/local/Numerno/Euromsg/etc/config.xml
CHANGED
@@ -32,7 +32,7 @@
|
|
32 |
<config>
|
33 |
<modules>
|
34 |
<Numerno_Euromsg>
|
35 |
-
<version>1.0.
|
36 |
</Numerno_Euromsg>
|
37 |
</modules>
|
38 |
<admin>
|
32 |
<config>
|
33 |
<modules>
|
34 |
<Numerno_Euromsg>
|
35 |
+
<version>1.0.1</version>
|
36 |
</Numerno_Euromsg>
|
37 |
</modules>
|
38 |
<admin>
|
app/code/local/Numerno/Euromsg/sql/euromsg_setup/install-1.0.0.php
CHANGED
@@ -251,9 +251,9 @@ $table = $installer->getConnection()
|
|
251 |
'nullable' => true,
|
252 |
'default' => null,
|
253 |
), 'Delivery Message')
|
254 |
-
->addIndex($installer->getIdxName('euromsg/
|
255 |
array('customer_id'))
|
256 |
-
->addForeignKey($installer->getFkName('euromsg/
|
257 |
'customer_id', $installer->getTable('customer/entity'), 'entity_id',
|
258 |
Varien_Db_Ddl_Table::ACTION_SET_NULL, Varien_Db_Ddl_Table::ACTION_CASCADE)
|
259 |
->setComment('euro.message SMS Logs');
|
251 |
'nullable' => true,
|
252 |
'default' => null,
|
253 |
), 'Delivery Message')
|
254 |
+
->addIndex($installer->getIdxName('euromsg/sms', array('customer_id')),
|
255 |
array('customer_id'))
|
256 |
+
->addForeignKey($installer->getFkName('euromsg/sms', 'customer_id', 'customer/entity', 'entity_id'),
|
257 |
'customer_id', $installer->getTable('customer/entity'), 'entity_id',
|
258 |
Varien_Db_Ddl_Table::ACTION_SET_NULL, Varien_Db_Ddl_Table::ACTION_CASCADE)
|
259 |
->setComment('euro.message SMS Logs');
|
app/etc/modules/Numerno_Euromsg.xml
CHANGED
@@ -1,6 +1,5 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<!--
|
3 |
-
<?php
|
4 |
/**
|
5 |
* Numerno - Euro.message Magento Extension
|
6 |
*
|
@@ -27,7 +26,7 @@
|
|
27 |
* @category [Numerno]
|
28 |
* @package [Numerno_Euromsg]
|
29 |
* @copyright Copyright (c) 2015 Numerno Bilisim Hiz. Tic. Ltd. Sti. (http://numerno.com/)
|
30 |
-
* @license http://
|
31 |
*/
|
32 |
-->
|
33 |
<config>
|
1 |
<?xml version="1.0"?>
|
2 |
<!--
|
|
|
3 |
/**
|
4 |
* Numerno - Euro.message Magento Extension
|
5 |
*
|
26 |
* @category [Numerno]
|
27 |
* @package [Numerno_Euromsg]
|
28 |
* @copyright Copyright (c) 2015 Numerno Bilisim Hiz. Tic. Ltd. Sti. (http://numerno.com/)
|
29 |
+
* @license http://numerno.com/licenses/euromsg-ce.txt Numerno euro.message Magento Extension License
|
30 |
*/
|
31 |
-->
|
32 |
<config>
|
package.xml
CHANGED
@@ -1,28 +1,21 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Numerno_Euromsg</name>
|
4 |
-
<version>1.0.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://numerno.com/licenses/euromsg-ce.txt">NUMERNO EUROMESSAGE MAGENTO EXTENSION</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Email and omni-channel marketing automation. </summary>
|
10 |
<description>This extension allows you to integrate Customer and Catalog data with euro.message platform, send transactional emails and transactional SMS via euro.message platform.</description>
|
11 |
-
<notes>
|
12 |
-
*
|
13 |
-
* Email Logging
|
14 |
-
* Email Delivery Tracking
|
15 |
-
* Transactional SMS
|
16 |
-
* SMS Logging
|
17 |
-
* SMS Delivery Tracking
|
18 |
-
* Customer Data Integration with euro.message Platform
|
19 |
-
* Catalog Data Integration with euro.message Platform
|
20 |

|
21 |
-
Build Date: 2015-
|
22 |
<authors><author><name>Numerno</name><user>muhammedv</user><email>muhammedv@gmail.com</email></author></authors>
|
23 |
-
<date>
|
24 |
-
<time>
|
25 |
-
<contents><target name="magelocal"><dir><dir name="Numerno"><dir name="Euromsg"><dir name="Block"><dir name="Adminhtml"><dir name="Customer"><file name="Grid.php" hash="100e8195b852490f0f5a3404f9b949be"/></dir><dir name="Form"><dir name="Field"><file name="Attribute.php" hash="903e9f413770e98eed0fbcbf0c45c0f5"/><file name="Attributes.php" hash="c63db1cd092894d7af434c981443062e"/><file name="CustomerAttribute.php" hash="3c7baa61e2d3c67cb7ab88556d368db8"/><file name="CustomerAttributes.php" hash="8aa7c13c5b3314d463f02cc1cfd9e4be"/><file name="SyncNow.php" hash="e650868a182c822dd851de221f1d0930"/></dir></dir><dir name="Grid"><file name="ExportJs.php" hash="8f5dcbdb4629640982f8800dacf7322a"/></dir><dir name="Mail"><dir name="Logs"><file name="Grid.php" hash="0cce60deb59330b5384b619413117c41"/></dir><file name="Logs.php" hash="5ccf4a64ecf89957ba08f270462af06f"/></dir><dir name="Newsletter"><dir name="Subscriber"><file name="Grid.php" hash="6355617d9d8a177b4cee2d534ac0f882"/></dir></dir><dir name="Sales"><dir name="Order"><dir name="Comments"><file name="View.php" hash="ba690fc39c2f65768a2ca3930e507422"/></dir><dir name="View"><file name="History.php" hash="fcba5923b7f47335dcc531e79d7725c7"/></dir></dir></dir><dir name="Sms"><dir name="Logs"><file name="Grid.php" hash="a6238e91ba58f3a5e5a72c081f377c05"/></dir><file name="Logs.php" hash="60a9b1d0381a744321c6d8160ec0e4a3"/><dir name="Renderer"><file name="Customer.php" hash="fff517d82da333ffb4985410ed9136c1"/></dir><dir name="Subscribers"><file name="Grid.php" hash="4458ea0ea15b74019d9cf307af326388"/></dir><file name="Subscribers.php" hash="280100b292bc224ce1d52e14422ea4d5"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="1c66f1e6b5a61516ecc2c1e2f13d934b"/><file name="Post.php" hash="5a8c4d5430ea89fe29a8926ad7aaf108"/><file name="Sms.php" hash="8cddd4200949d1ae80a8aa8d8757265f"/></dir><dir name="Model"><dir name="Core"><dir name="Email"><file name="Queue.php" hash="6f1b8e36297af00955828eaccc50051d"/><file name="Template.php" hash="f4644e68285da6e7187f453817483e38"/></dir><file name="Email.php" hash="db29e8211d3f1946710c9fadd90a2daf"/></dir><file name="Cron.php" hash="c953225748678944b85f6cbee9fce01e"/><dir name="Export"><dir name="Adapter"><file name="Csv.php" hash="3767a84ce47ede192819005951eb9b66"/></dir><dir name="Entity"><file name="Member.php" hash="a2cf1db82dd572a5035fb34736ffbeb8"/><file name="Product.php" hash="
|
26 |
<compatible/>
|
27 |
<dependencies><required><php><min>5.3.0</min><max>6.0.0</max></php></required></dependencies>
|
28 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Numerno_Euromsg</name>
|
4 |
+
<version>1.0.1</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://numerno.com/licenses/euromsg-ce.txt">NUMERNO EUROMESSAGE MAGENTO EXTENSION</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Email and omni-channel marketing automation. </summary>
|
10 |
<description>This extension allows you to integrate Customer and Catalog data with euro.message platform, send transactional emails and transactional SMS via euro.message platform.</description>
|
11 |
+
<notes>Version 1.0.1
|
12 |
+
* Bug fixes
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |

|
14 |
+
Build Date: 2015-12-22</notes>
|
15 |
<authors><author><name>Numerno</name><user>muhammedv</user><email>muhammedv@gmail.com</email></author></authors>
|
16 |
+
<date>2016-01-05</date>
|
17 |
+
<time>15:17:45</time>
|
18 |
+
<contents><target name="magelocal"><dir><dir name="Numerno"><dir name="Euromsg"><dir name="Block"><dir name="Adminhtml"><dir name="Customer"><file name="Grid.php" hash="100e8195b852490f0f5a3404f9b949be"/></dir><dir name="Form"><dir name="Field"><file name="Attribute.php" hash="903e9f413770e98eed0fbcbf0c45c0f5"/><file name="Attributes.php" hash="c63db1cd092894d7af434c981443062e"/><file name="CustomerAttribute.php" hash="3c7baa61e2d3c67cb7ab88556d368db8"/><file name="CustomerAttributes.php" hash="8aa7c13c5b3314d463f02cc1cfd9e4be"/><file name="SyncNow.php" hash="e650868a182c822dd851de221f1d0930"/></dir></dir><dir name="Grid"><file name="ExportJs.php" hash="8f5dcbdb4629640982f8800dacf7322a"/></dir><dir name="Mail"><dir name="Logs"><file name="Grid.php" hash="0cce60deb59330b5384b619413117c41"/></dir><file name="Logs.php" hash="5ccf4a64ecf89957ba08f270462af06f"/></dir><dir name="Newsletter"><dir name="Subscriber"><file name="Grid.php" hash="6355617d9d8a177b4cee2d534ac0f882"/></dir></dir><dir name="Sales"><dir name="Order"><dir name="Comments"><file name="View.php" hash="ba690fc39c2f65768a2ca3930e507422"/></dir><dir name="View"><file name="History.php" hash="fcba5923b7f47335dcc531e79d7725c7"/></dir></dir></dir><dir name="Sms"><dir name="Logs"><file name="Grid.php" hash="a6238e91ba58f3a5e5a72c081f377c05"/></dir><file name="Logs.php" hash="60a9b1d0381a744321c6d8160ec0e4a3"/><dir name="Renderer"><file name="Customer.php" hash="fff517d82da333ffb4985410ed9136c1"/></dir><dir name="Subscribers"><file name="Grid.php" hash="4458ea0ea15b74019d9cf307af326388"/></dir><file name="Subscribers.php" hash="280100b292bc224ce1d52e14422ea4d5"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="1c66f1e6b5a61516ecc2c1e2f13d934b"/><file name="Post.php" hash="5a8c4d5430ea89fe29a8926ad7aaf108"/><file name="Sms.php" hash="8cddd4200949d1ae80a8aa8d8757265f"/></dir><dir name="Model"><dir name="Core"><dir name="Email"><file name="Queue.php" hash="6f1b8e36297af00955828eaccc50051d"/><file name="Template.php" hash="f4644e68285da6e7187f453817483e38"/></dir><file name="Email.php" hash="db29e8211d3f1946710c9fadd90a2daf"/></dir><file name="Cron.php" hash="c953225748678944b85f6cbee9fce01e"/><dir name="Export"><dir name="Adapter"><file name="Csv.php" hash="3767a84ce47ede192819005951eb9b66"/></dir><dir name="Entity"><file name="Member.php" hash="a2cf1db82dd572a5035fb34736ffbeb8"/><file name="Product.php" hash="77e222992f1f2b37271b7233f24c2e3f"/></dir></dir><dir name="Io"><file name="Sftp.php" hash="7e06fe06678f2f5fe0d4fb7a59bee786"/></dir><dir name="Mail"><file name="Log.php" hash="ca27945728d2996c93c0dce3ab94e22d"/><dir name="Transport"><file name="EuroMessage.php" hash="3d43d7a0bc6622d2d087cedf66ba1100"/></dir></dir><file name="Mail.php" hash="4145937d390da1dd152df8aaa783f9da"/><dir name="Newsletter"><dir name="Subscriber"><file name="Collection.php" hash="25a07a245b3fdb25ebc48d130628d83d"/></dir></dir><file name="Observer.php" hash="01a62bddce0d871f2efa5e301c286430"/><dir name="Platform"><file name="Abstract.php" hash="d8d8fa73bf56d4c4477497ac0ea1f793"/><file name="Member.php" hash="fa271286b5255903d51cf5576291b59d"/><file name="Post.php" hash="46021255e3eb15b5ceaab0ff1df99da4"/><file name="PostSms.php" hash="b17d28363f22f4aeb74bd109102dfb2d"/><file name="Report.php" hash="41149419b4126964642bf042bc21749a"/></dir><file name="Platform.php" hash="40bb44506481ea987bf79b9d600f4a6b"/><file name="Process.php" hash="172fd2930f908b4f4533858bee86910a"/><dir name="Resource"><dir name="Mail"><dir name="Log"><file name="Collection.php" hash="4a1415867ae8a2a9ff666b165c16b4bc"/></dir><file name="Log.php" hash="4bccd49fefcc9da2b03cbbf9e57d90ba"/></dir><dir name="Process"><file name="Collection.php" hash="ac75a9bbb4725209d869385db83e0cb2"/></dir><file name="Process.php" hash="a8f27b87d819c72b40bc2e074031cd86"/><dir name="Sms"><file name="Collection.php" hash="3e2486cf998da3c5cdb419bdc45e6944"/></dir><file name="Sms.php" hash="d2ad96c9b21fb5531ebc1fd6b53fb048"/></dir><file name="Sms.php" hash="c2b74759fdefdd28388e23535f5f8825"/><dir name="System"><dir name="Config"><dir name="Backend"><file name="Attributes.php" hash="075abb8747dabe85810403309c062ff4"/><file name="Cron.php" hash="3f8f68b7922bd5cea71a229abd784f5b"/></dir><dir name="Source"><dir name="Cron"><file name="Frequency.php" hash="3c4c6563dccde5d01fc7d9700d4bfa8e"/><file name="Hours.php" hash="592c40ef2f2e11b6f4eb483875dd4c76"/></dir><dir name="Customer"><file name="Attributes.php" hash="e6cdb9f9a694873f8fa70055b9444c95"/><file name="DataSource.php" hash="f31cde2f3f0c02897f387acbbf058a8b"/></dir><dir name="Dwh"><file name="LangId.php" hash="fdc3022e51e9c057372a7f4ad847f0eb"/><file name="Policy.php" hash="33217be32801fb83344674b65838c9a6"/><file name="Report.php" hash="1e9fd4b7c1c6a76703a059f20a3353c4"/></dir><file name="Platform.php" hash="e9f1c901ce4d235192f5546ed16c23af"/><dir name="Sms"><file name="Method.php" hash="979f30f9007c26dccb5260c719f448ae"/><file name="Permit.php" hash="822ac94d39911bd0056ea4c4d85e55ed"/></dir></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="EuromsgController.php" hash="5b8bb7bc3dd01ea5dba6404f5da4d5ea"/><file name="NewsletterController.php" hash="ad755dbd292d9cf1ec8030919275550d"/><file name="SmsController.php" hash="e0d8f71369a0f2eff28f37a87cf35ad8"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="778c026c42bc9840732332681f0ff6b8"/><file name="config.xml" hash="ece981ac6b071df1c4b336fe543156ae"/><file name="system.xml" hash="17bfd8d0f27dc7ea060768be306cb6c0"/></dir><dir name="sql"><dir name="euromsg_setup"><file name="install-1.0.0.php" hash="3df7f5c96e67f5081c4db8df92a19389"/></dir></dir></dir></dir><dir name="en_US"><file name="Numerno_Euromsg.csv" hash=""/></dir></dir></target><target name="mageetc"><dir><dir name="modules"><file name="Numerno_Euromsg.xml" hash="f4144ec30fb8d230dd4b309e33c3a5ec"/></dir></dir></target><target name="magedesign"><dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="euromsg.xml" hash="a8e471476ddce168d70776a153b8d006"/></dir><dir name="template"><dir name="euromsg"><dir name="form"><dir name="field"><file name="sync_now.phtml" hash="ebbc479e6312e0f8f32cb54d9b0a6dc0"/></dir></dir><dir name="grid"><file name="export_js.phtml" hash="d4ff01863fa8b344c0bee4a083f8cfdb"/></dir><dir name="sales"><dir name="order"><dir name="comments"><file name="view.phtml" hash="e0bfb31cfbaf2955ab0d092be13cce1d"/></dir><dir name="view"><file name="history.phtml" hash="3b21d6d8a655d13010c714d66c36b7ae"/></dir></dir></dir></dir></dir></dir></dir></dir></dir></target><target name="magelocale"><dir><dir name="tr_TR"><file name="Numerno_Euromsg.csv" hash="46a8388bdafe296f0c5ead6137a929f3"/></dir></dir></target><target name="mageskin"><dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="images"><dir name="euromsg"><file name="euromsg_logo.png" hash="8bc7732e48238d01a862f01cf0e6dcfb"/></dir></dir></dir></dir></dir></dir></target></contents>
|
19 |
<compatible/>
|
20 |
<dependencies><required><php><min>5.3.0</min><max>6.0.0</max></php></required></dependencies>
|
21 |
</package>
|