Version Notes
# Fixed
- feed data for empty fieldnames
Download this release
Release Info
Developer | affilinet GmbH |
Extension | Creativestyle_AffiliNet |
Version | 1.1.8 |
Comparing to | |
See all releases |
Code changes from version 1.1.7 to 1.1.8
- app/code/community/Creativestyle/AffiliNet/Block/Adminhtml/Datafeed/Edit.php +16 -14
- app/code/community/Creativestyle/AffiliNet/Model/Datafeed.php +34 -14
- app/code/community/Creativestyle/AffiliNet/Model/Observer.php +6 -1
- app/code/community/Creativestyle/AffiliNet/etc/config.xml +1 -1
- package.xml +5 -5
app/code/community/Creativestyle/AffiliNet/Block/Adminhtml/Datafeed/Edit.php
CHANGED
@@ -10,6 +10,7 @@ class Creativestyle_AffiliNet_Block_Adminhtml_Datafeed_Edit extends Mage_Adminht
|
|
10 |
$this->_controller = 'adminhtml_datafeed';
|
11 |
|
12 |
$disabled = '';
|
|
|
13 |
|
14 |
if ($this->getRequest()->getParam($this->_objectId)) {
|
15 |
$id = $this->getRequest()->getParam($this->_objectId);
|
@@ -64,29 +65,30 @@ class Creativestyle_AffiliNet_Block_Adminhtml_Datafeed_Edit extends Mage_Adminht
|
|
64 |
$this->removeButton('reset');
|
65 |
$this->removeButton('save');
|
66 |
|
67 |
-
if($
|
68 |
-
$
|
69 |
-
|
70 |
-
|
71 |
-
|
|
|
|
|
|
|
|
|
|
|
72 |
}
|
73 |
|
74 |
$this->_addButton('save', array(
|
75 |
'label' => Mage::helper('adminhtml')->__('Save'),
|
76 |
-
'onclick' =>
|
77 |
'class' => 'save',
|
|
|
78 |
), 1);
|
79 |
|
80 |
-
if($disabled){
|
81 |
-
$onclickSaveCE = 'deleteConfirm(\''. Mage::helper('adminhtml')->__('If you save it now, file generating will be stopped')
|
82 |
-
.'\', \'' . $this->_getSaveAndContinueUrl() . '\')';
|
83 |
-
}else{
|
84 |
-
$onclickSaveCE = 'saveAndContinueEdit(\'' . $this->_getSaveAndContinueUrl() . '\')';
|
85 |
-
}
|
86 |
$this->_addButton('save_and_continue', array(
|
87 |
'label' => Mage::helper('affilinet')->__('Save and Continue Edit'),
|
88 |
-
'onclick' => $
|
89 |
-
'class' => 'save'
|
|
|
90 |
), 10);
|
91 |
$this->_formScripts[] = " function saveAndContinueEdit(){ editForm.submit($('edit_form').action + 'back/edit/') } ";
|
92 |
}
|
10 |
$this->_controller = 'adminhtml_datafeed';
|
11 |
|
12 |
$disabled = '';
|
13 |
+
$id = 0;
|
14 |
|
15 |
if ($this->getRequest()->getParam($this->_objectId)) {
|
16 |
$id = $this->getRequest()->getParam($this->_objectId);
|
65 |
$this->removeButton('reset');
|
66 |
$this->removeButton('save');
|
67 |
|
68 |
+
if ($id) {
|
69 |
+
$this->removeButton('delete');
|
70 |
+
|
71 |
+
$this->_addButton('delete', array(
|
72 |
+
'label' => Mage::helper('adminhtml')->__('Delete'),
|
73 |
+
'class' => 'delete',
|
74 |
+
'onclick' => 'deleteConfirm(\''. Mage::helper('adminhtml')->__('Are you sure you want to do this?')
|
75 |
+
.'\', \'' . $this->getDeleteUrl() . '\')',
|
76 |
+
'disabled' => $disabled,
|
77 |
+
));
|
78 |
}
|
79 |
|
80 |
$this->_addButton('save', array(
|
81 |
'label' => Mage::helper('adminhtml')->__('Save'),
|
82 |
+
'onclick' => 'editForm.submit();',
|
83 |
'class' => 'save',
|
84 |
+
'disabled' => $disabled,
|
85 |
), 1);
|
86 |
|
|
|
|
|
|
|
|
|
|
|
|
|
87 |
$this->_addButton('save_and_continue', array(
|
88 |
'label' => Mage::helper('affilinet')->__('Save and Continue Edit'),
|
89 |
+
'onclick' => 'saveAndContinueEdit(\'' . $this->_getSaveAndContinueUrl() . '\')',
|
90 |
+
'class' => 'save',
|
91 |
+
'disabled' => $disabled,
|
92 |
), 10);
|
93 |
$this->_formScripts[] = " function saveAndContinueEdit(){ editForm.submit($('edit_form').action + 'back/edit/') } ";
|
94 |
}
|
app/code/community/Creativestyle/AffiliNet/Model/Datafeed.php
CHANGED
@@ -96,8 +96,8 @@ class Creativestyle_AffiliNet_Model_Datafeed extends Mage_Core_Model_Abstract
|
|
96 |
return array_merge($columnTitle, $this->previewData);
|
97 |
}else{
|
98 |
$config = Mage::getStoreConfig('affilinet/datafeed');
|
99 |
-
$page = $cron ?
|
100 |
-
$pages = $cron ? (
|
101 |
$lastPage = null;
|
102 |
$break = false;
|
103 |
|
@@ -298,7 +298,14 @@ class Creativestyle_AffiliNet_Model_Datafeed extends Mage_Core_Model_Abstract
|
|
298 |
$query = $connection->prepare($sql);
|
299 |
$query->bindParam(':datafeed_id', $id);
|
300 |
$query->execute();
|
301 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
302 |
|
303 |
//filter
|
304 |
$table = Mage::getSingleton('core/resource')->getTableName('affilinet/filter');
|
@@ -349,20 +356,33 @@ class Creativestyle_AffiliNet_Model_Datafeed extends Mage_Core_Model_Abstract
|
|
349 |
$time = Mage::getModel('core/date')->timestamp(time());
|
350 |
$feed = Mage::getModel('affilinet/datafeed')->load($id);
|
351 |
|
352 |
-
$
|
353 |
-
if
|
354 |
-
$cronStart
|
|
|
|
|
355 |
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
$feed->setNextGenerate($cronStart + $d * ($feed->getCronRepeat() * 3600));
|
361 |
-
}
|
362 |
}else{
|
363 |
-
$feed->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
364 |
}
|
365 |
-
$feed->save();
|
366 |
}
|
367 |
}
|
368 |
|
96 |
return array_merge($columnTitle, $this->previewData);
|
97 |
}else{
|
98 |
$config = Mage::getStoreConfig('affilinet/datafeed');
|
99 |
+
$page = $cron ? $datafeed->getLastPage() : 1;
|
100 |
+
$pages = $cron ? ($datafeed->getLastPage() + $config['pages'] - 1) : $config['pages'];
|
101 |
$lastPage = null;
|
102 |
$break = false;
|
103 |
|
298 |
$query = $connection->prepare($sql);
|
299 |
$query->bindParam(':datafeed_id', $id);
|
300 |
$query->execute();
|
301 |
+
$mapperItems = $query->fetchAll(PDO::FETCH_GROUP);
|
302 |
+
|
303 |
+
//fix the issue with fieldname = none
|
304 |
+
$mapper = array();
|
305 |
+
foreach($mapperItems AS $m){
|
306 |
+
$key = ($m[0]['fieldname'] == 'none') ? strtolower($this->_sanitize($m[0]['title'])) : $m[0]['fieldname'];
|
307 |
+
$mapper[$key] = $m;
|
308 |
+
}
|
309 |
|
310 |
//filter
|
311 |
$table = Mage::getSingleton('core/resource')->getTableName('affilinet/filter');
|
356 |
$time = Mage::getModel('core/date')->timestamp(time());
|
357 |
$feed = Mage::getModel('affilinet/datafeed')->load($id);
|
358 |
|
359 |
+
$cronStart = $feed->getCronStart();
|
360 |
+
if($cronStart){
|
361 |
+
if(strpos($cronStart, ' ') !== false){
|
362 |
+
$cronTime = strtotime($cronStart);
|
363 |
+
$cronRepeat = ($feed->getCronRepeat()) ? $feed->getCronRepeat() : 3;
|
364 |
|
365 |
+
$newTime = $cronTime + ($cronRepeat * 3600);
|
366 |
+
$feed->setNextGenerate($newTime);
|
367 |
+
|
368 |
+
$feed->save();
|
|
|
|
|
369 |
}else{
|
370 |
+
$_cronStart = explode(',', $feed->getCronStart());
|
371 |
+
if (count($_cronStart) == 3) {
|
372 |
+
$cronStart = mktime($_cronStart[0], $_cronStart[1], $_cronStart[2]);
|
373 |
+
|
374 |
+
$diff = $time - $cronStart;
|
375 |
+
if($diff > 0 && $feed->getCronRepeat()){
|
376 |
+
$d = ceil(($diff / ($feed->getCronRepeat() * 3600)));
|
377 |
+
if($d){
|
378 |
+
$feed->setNextGenerate($cronStart + $d * ($feed->getCronRepeat() * 3600));
|
379 |
+
}
|
380 |
+
}else{
|
381 |
+
$feed->setNextGenerate($cronStart);
|
382 |
+
}
|
383 |
+
$feed->save();
|
384 |
+
}
|
385 |
}
|
|
|
386 |
}
|
387 |
}
|
388 |
|
app/code/community/Creativestyle/AffiliNet/Model/Observer.php
CHANGED
@@ -39,7 +39,12 @@ class Creativestyle_AffiliNet_Model_Observer {
|
|
39 |
$break = false;
|
40 |
foreach($feeds AS $feed){
|
41 |
$lastPage = $feed->getLastPage();
|
42 |
-
|
|
|
|
|
|
|
|
|
|
|
43 |
if(!$break){
|
44 |
$feed->setCronLock(1);
|
45 |
$feed->setCronStart($feed->getCronStart());
|
39 |
$break = false;
|
40 |
foreach($feeds AS $feed){
|
41 |
$lastPage = $feed->getLastPage();
|
42 |
+
$nextGenerate = strtotime($feed->getNextGenerate());
|
43 |
+
if(!$nextGenerate){
|
44 |
+
$nextGenerate = strtotime($feed->getCronStart());
|
45 |
+
}
|
46 |
+
|
47 |
+
if(!$lastPage && $time > $nextGenerate){
|
48 |
if(!$break){
|
49 |
$feed->setCronLock(1);
|
50 |
$feed->setCronStart($feed->getCronStart());
|
app/code/community/Creativestyle/AffiliNet/etc/config.xml
CHANGED
@@ -10,7 +10,7 @@
|
|
10 |
<config>
|
11 |
<modules>
|
12 |
<Creativestyle_AffiliNet>
|
13 |
-
<version>1.1.
|
14 |
</Creativestyle_AffiliNet>
|
15 |
</modules>
|
16 |
<global>
|
10 |
<config>
|
11 |
<modules>
|
12 |
<Creativestyle_AffiliNet>
|
13 |
+
<version>1.1.8</version>
|
14 |
</Creativestyle_AffiliNet>
|
15 |
</modules>
|
16 |
<global>
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Creativestyle_AffiliNet</name>
|
4 |
-
<version>1.1.
|
5 |
<stability>stable</stability>
|
6 |
<license>Commercial</license>
|
7 |
<channel>community</channel>
|
@@ -9,12 +9,12 @@
|
|
9 |
<summary>This extension provides integration of your Magento shop with affilinet program.</summary>
|
10 |
<description>This extension provides official integration of your Magento store with Inline Checkout by Amazon service. Checkout by Amazon is a complete checkout and payments service for e-commerce retailers. Offer Checkout by Amazon to enable millions of Amazon customers to use shipping addresses and payment information in their Amazon.com accounts to buy on your e-commerce or mobile website. Customers complete purchases quickly and conveniently, without ever leaving your website.</description>
|
11 |
<notes># Fixed
|
12 |
-
-
|
13 |
</notes>
|
14 |
<authors><author><name>affilinet GmbH</name><user>affilinet</user><email>magento@affili.net</email></author></authors>
|
15 |
-
<date>2016-
|
16 |
-
<time>
|
17 |
-
<contents><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="affilinet.xml" hash="3e917af9af09c9a189396954b2cc3310"/></dir><dir name="template"><dir name="creativestyle"><dir name="affilinet"><dir name="datafeed"><file name="filter.phtml" hash="12a8e8aaa37adeeb0ee62cb5d5c425fb"/><file name="mapper.phtml" hash="46e229e257941028f953405dddd3350f"/><file name="preview.phtml" hash="7e51577a695d607f6d9b082c374042dd"/><file name="sendfeed.phtml" hash="4a96e87c6d3804a66d6b13bf9b7e5246"/></dir><file name="info.phtml" hash="079ac935abf6032675cd256cdd0326f5"/><file name="init.phtml" hash="bd99201cd8b1b2408c9f5a0a251ebde8"/><file name="introduction.phtml" hash="0dcfdd8c0402da4fb033d7ff5c301ee2"/><dir name="order"><dir name="grid"><file name="basket.phtml" hash="740cff03934d5c7fe0c26283a16054c9"/><file name="container.phtml" hash="5924735329a9d714692da0f773add16b"/></dir></dir><file name="signup.phtml" hash="5bf8db41b8e0e8a9e8f05e9055d05b6f"/><dir name="statistics"><dir name="grid"><file name="container.phtml" hash="ccb0ffe0434e0810cf372544eb3208e8"/></dir></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="affilinet.xml" hash="982cd00070c00ec1968ed8ef5cf238ce"/></dir><dir name="template"><dir name="creativestyle"><dir name="affilinet"><dir name="retargeting"><file name="cart.phtml" hash="6192cd8aa6e6113701692e8b1643e24b"/><file name="category.phtml" hash="db5edbd8f6930c5e83adbd5d5faeb96f"/><file name="checkout.phtml" hash="ab038532c58ddd75842138d55365293f"/><file name="customer_data.phtml" hash="c407f705e47b7347bce8b8f671ca894a"/><file name="landing_page.phtml" hash="0808e451219d80b918baa172894a111d"/><file name="product.phtml" hash="23acd1f0bef13101c26e27dad7254075"/><file name="search.phtml" hash="61ef2e81a1b2990b0b7ea4a4dff146c4"/></dir><file name="tracking.phtml" hash="1f26325a4711bcc05d8a96d72756dd3a"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Creativestyle_AffiliNet.xml" hash="4315ebd67b71f026e8530b76f2702aa8"/></dir></target><target name="magelocale"><dir name="de_DE"><file name="Creativestyle_AffiliNet.csv" hash="00bb857ec4858fe364a2ec8e4e3f0ebd"/><dir name="template"><dir name="email"><file name="affilinet_feed.html" hash="07ccb1ec0ab9fd1fb2f1ed6537eb6c0d"/></dir></dir></dir><dir name="en_GB"><file name="Creativestyle_AffiliNet.csv" hash="dbe15454a6ce31f66d2698b0c1f55f2f"/><dir name="template"><dir name="email"><file name="affilinet_feed.html" hash="1ecbafdfa6b9b6716a91ca4555b4571b"/></dir></dir></dir><dir name="en_US"><file name="Creativestyle_AffiliNet.csv" hash="dbe15454a6ce31f66d2698b0c1f55f2f"/><dir name="template"><dir name="email"><file name="affilinet_feed.html" hash="1ecbafdfa6b9b6716a91ca4555b4571b"/></dir></dir></dir><dir name="es_ES"><file name="Creativestyle_AffiliNet.csv" hash="b9e9bd3aadec7e9d823eafc9dc264690"/><dir name="template"><dir name="email"><file name="affilinet_feed.html" hash="1ecbafdfa6b9b6716a91ca4555b4571b"/></dir></dir></dir><dir name="nl_NL"><file name="Creativestyle_AffiliNet.csv" hash="72602761735c49b47896b9ae12845a76"/><dir name="template"><dir name="email"><file name="affilinet_feed.html" hash="1ecbafdfa6b9b6716a91ca4555b4571b"/></dir></dir></dir><dir name="fr_FR"><file name="Creativestyle_AffiliNet.csv" hash="defcdb90267a39e651cd5b4958d518bc"/><dir name="template"><dir name="email"><file name="affilinet_feed.html" hash="1ecbafdfa6b9b6716a91ca4555b4571b"/></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="creativestyle"><dir name="css"><file name="affilinet.css" hash="6ab71d9b577cda9fcd307b1a8c648f97"/></dir><dir name="images"><file name="affili-net-creativestyle-header-logo.png" hash="1f17fc7a61f8aaf929000d1d87f7d943"/><file name="affili-net-creativestyle-logo.png" hash="bb507d0085dab135ac313b8068515620"/><file name="affili-net-header.png" hash="16adaa58c6e2067e90357cef087bb0a9"/><file name="affili-net-section.png" hash="28b9903f30c7f0078ff9dae7d4e7e054"/><file name="sort_affili.gif" hash="b7e86a1536fdc2925177abfea016ba28"/></dir></dir></dir></dir></dir></target><target name="mage"><dir name="js"><dir name="creativestyle"><dir name="adminhtml"><file name="affilinet.js" hash="cd89ab8351072f4011b3db9c137b1287"/></dir></dir></dir></target><target name="magecommunity"><dir name="Creativestyle"><dir name="AffiliNet"><dir name="Block"><file name="Abstract.php" hash="e37dc33297df96f8e40e3bfbe7e9d124"/><dir name="Adminhtml"><file name="Cms.php" hash="91a42fa1f67b19062e74eabebbfa801a"/><dir name="Datafeed"><dir name="Edit"><file name="Form.php" hash="4ce1b427831935281f7574b608eb8671"/><dir name="Tab"><file name="Cron.php" hash="f7a732996774569ac6f99f74bd278b0b"/><file name="Filter.php" hash="6b059c22009f2908d73396e22c1ed953"/><file name="General.php" hash="34135b3cb9658f6bd8b5506d51278cfc"/><file name="Mapper.php" hash="592966331516d318754362525e422891"/><file name="Submit.php" hash="a252f9564178e783172e07a21e42b90b"/></dir><file name="Tabs.php" hash="80db9367722f7865fe91312452fcab32"/></dir><file name="Edit.php" hash="07f9bb39c8a15aa02f56e9a457609e1b"/><dir name="Form"><dir name="Field"><file name="Image.php" hash="7e938c4b1b3623f47a0289fe0a2c7576"/></dir></dir><file name="Grid.php" hash="61a93403b4caf29dd7a275156e369340"/><file name="Preview.php" hash="7c8d03f28196dca2b3745d42a76c1f6c"/><dir name="Renderer"><file name="Filter.php" hash="2302e6a5e8e008dcab4cdcf145596c08"/><file name="Mapper.php" hash="4e2c70ba4f3f480807bb0b5b20f472a3"/><file name="Sendfeed.php" hash="647476f7041f28416b9dfe384844e107"/><file name="Startat.php" hash="1461075a13288e581fb09d73e86e32a1"/><file name="Url.php" hash="cc471d4b8fb40fb2c5687d53d48301e3"/></dir></dir><file name="Datafeed.php" hash="498c091f0a64138be3ae2d7065388d3c"/><file name="Info.php" hash="a097f8a2d1cda163f676a5a661472833"/><dir name="Report"><file name="Abstract.php" hash="61a8c0b3aec0510e53216c5e76088d8a"/><dir name="Container"><file name="Abstract.php" hash="5fbf9849ffef70fb20ca28afaf413f42"/></dir><dir name="Filter"><dir name="Form"><file name="Abstract.php" hash="b220f415bc33e325f6b6dd374a7fdf91"/><dir name="Field"><file name="PublisherVolume.php" hash="6148c9d54137b82fac25de6d2499b6c6"/></dir></dir></dir><dir name="Order"><dir name="Filter"><file name="Form.php" hash="138e4c1e69e5b2cc1c89c6739cdd2f44"/></dir><dir name="Grid"><file name="BasketInfo.php" hash="392e18140750924e7c96fa259bc66829"/></dir><file name="Grid.php" hash="638b146ada40dbff263483621f897d1b"/><dir name="Renderer"><file name="ActionInDays.php" hash="847790a89d6284047bf753c7e2d4d204"/><file name="BasketInfo.php" hash="7213345682aadab46e0993f50d851267"/><file name="Flag.php" hash="f5f73800549db03934f8ac98b85e8ba9"/><file name="NetPrice.php" hash="41b12a17f213ebb459a175ae80a81a12"/><file name="NewStatus.php" hash="0a5db3134b4fbc4d619a67f7b0d0e23d"/></dir></dir><file name="Order.php" hash="d00f516313d0e8b714427fa8ad5cdd2f"/><dir name="Statistics"><dir name="Filter"><file name="Form.php" hash="6d87c331eb9c47cf3d6b3333f6d39b81"/></dir><file name="Grid.php" hash="a09919d8e55d9d0f7e1904f692fb61d4"/><dir name="Renderer"><file name="Abstract.php" hash="58d344b42e192375ebbcc4d66c58778f"/><file name="Clicks.php" hash="f0cb82752620afdc9c4152a5c14a91fb"/><file name="Leads.php" hash="b40415618856d95292e3a5bf979f3bcc"/><file name="Sales.php" hash="ab64acc7c6622277cbb47a1a498dbc36"/></dir></dir><file name="Statistics.php" hash="ecf6e0c0ccae99c31f488c4dc1ad165b"/></dir><dir name="System"><dir name="Config"><dir name="Form"><dir name="Field"><file name="Checkbox.php" hash="0a3822603120e5d869a8e5e46ea7489c"/><file name="Currency.php" hash="1bd8fb4ff196880b993c686c52d7770e"/><file name="Headinginfo.php" hash="68a163d02d1c58864ad4403bfba37fc0"/><file name="Image.php" hash="3312e43a6f4359ba382feb50fbfa2985"/><file name="PublisherRate.php" hash="82365977924823dde0cbaf4cf09dcbff"/></dir></dir></dir></dir></dir><file name="Retargeting.php" hash="5ce43a15cd5c36e366f21f796f6ec01e"/><file name="Tracking.php" hash="76380c33b3a2e983013b8d2302c29b3e"/></dir><dir name="Controller"><dir name="Adminhtml"><dir name="Report"><file name="Abstract.php" hash="a69e3eecbc2c77481f45c45fdc4b8472"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="6a80575baceed76e22a14f38f16e9319"/></dir><dir name="Model"><dir name="Api"><dir name="Client"><file name="Abstract.php" hash="229a20459f36c500b5bd9a17614f147c"/><file name="Orders.php" hash="b9c5ad202f8e22a4c673b9b9de1e6f8c"/><file name="Statistics.php" hash="81e4a34844f6328a7707c130af2b5e93"/><file name="Toolbox.php" hash="e1d6dd2fcd9f123c5cbfd4f2dcac9ae1"/></dir><dir name="Model"><file name="Abstract.php" hash="06caec95c84ba972908edc8332795830"/><file name="BasketItem.php" hash="2689a41d60e4fd9deb9528f4efc06a16"/><file name="Channel.php" hash="40acd753b14fcbef3b7442f6f5d63b42"/><file name="Creative.php" hash="b423cb3ab3f86f9daaa090a8aa25c5b0"/><file name="Order.php" hash="bfb6cd173e81666a8f6cc1c447e0bbc5"/><file name="PublisherSegment.php" hash="35c29119e2a40455ee53650a6106db7a"/><file name="PublisherStatistics.php" hash="42fffd201037a7c4b4d8e062d2ec712b"/><file name="Rate.php" hash="8b7a8b1ae7dfe3e4916d8b389dc16636"/></dir><file name="Security.php" hash="a063a7968beee5643a801417a64213cc"/><dir name="Source"><file name="Abstract.php" hash="421ff0d28d0fb8fd604a2872638e67a2"/><file name="CancellationReason.php" hash="ad48bf8acd71874e9854cc8a7bcc9c99"/><file name="Channel.php" hash="441a2682c37c51cd87e24b472fa95765"/><file name="Creative.php" hash="038e71e5320724d4bc0c99c84a3ef18b"/><file name="CreativeType.php" hash="e81bfdbb25212a6f20bf873c3f22732e"/><file name="EvaluationType.php" hash="adb01f6c4c3b73b5097edc691bca42c9"/><dir name="Period"><file name="Type.php" hash="d2b0e709432bb6e8c6e0b6fcff6a9d3c"/></dir><file name="Period.php" hash="3fa3e82f8703a90096bba23976da2996"/><file name="PublisherFilter.php" hash="b8fa11eb5f4270331c68e3c99ede3eb4"/><file name="PublisherSegment.php" hash="070b89f5d58babf6b2a24edeefd15872"/><file name="TransactionStatus.php" hash="f5d7fbffdee21b848b817eec8666cbfc"/><file name="VolumeType.php" hash="1e449402d1375fbfe4a65e650b7e4ee9"/></dir><file name="UsernameToken.php" hash="6374a74793f09581500b94b570d3031b"/></dir><file name="Api.php" hash="eb1847d35f245ff106560011d64e6255"/><file name="Config.php" hash="e26f440539262e57d148f2f3ae548a84"/><file name="Datafeed.php" hash="4e276729143a1c913af401c6b8b73dd5"/><file name="Filter.php" hash="3a015dd920e58568ad61289f0388d7b2"/><file name="Mapper.php" hash="bee971dcd34db9500c42d79155708fd6"/><file name="Observer.php" hash="2c45c495441a7c5509bf295267f01595"/><dir name="Resource"><dir name="Api"><dir name="Model"><dir name="BasketItem"><file name="Collection.php" hash="d3770854136beff6cf4c7ba80d05aec8"/></dir><dir name="Channel"><file name="Collection.php" hash="9cd6a79701e0bdedd28c6ecd6a225b40"/></dir><dir name="Collection"><file name="Abstract.php" hash="61be14fb4295e6b241c4ce118b95c477"/></dir><dir name="Creative"><file name="Collection.php" hash="3fe67718a8e5f27933533ec4ac21b36a"/></dir><dir name="Order"><file name="Collection.php" hash="11061588fd7c471db7adcf1652f800d4"/></dir><dir name="PublisherSegment"><file name="Collection.php" hash="eceff28298489c11da890cfafba0f91e"/></dir><dir name="PublisherStatistics"><file name="Collection.php" hash="a3a3cd535342e071fee454ff56a717a4"/></dir><dir name="Rate"><file name="Collection.php" hash="05e2a4599d09922542e34cc7433957a4"/></dir></dir></dir><dir name="Datafeed"><file name="Collection.php" hash="5a065e9330b1f9bbd77b351322a852c1"/></dir><file name="Datafeed.php" hash="c4444fb84b072b7367ae4129d2c611bf"/><dir name="Filter"><file name="Collection.php" hash="0cdc65706c719033d955871a9e1d35e0"/></dir><file name="Filter.php" hash="4c4918f5538454c6f5a5121b5bc2a645"/><dir name="Mapper"><file name="Collection.php" hash="47e104471faf72233a66b55a75a91c45"/></dir><file name="Mapper.php" hash="6be25a431465ce19e301666bfd889a5f"/></dir><dir name="System"><dir name="Config"><dir name="Backend"><file name="Image.php" hash="0b333d05bf4a8500c2982a4902e43677"/><file name="Rate.php" hash="e60af2fbc3913dac543fda408ccfe893"/></dir><dir name="Source"><file name="Abstract.php" hash="154be9a346d4a7db2766be650eb50758"/><file name="Attribute.php" hash="f6d9a2b2c3a82b6d118b70234c4fc144"/><file name="Platform.php" hash="95b94b8bdc783151da3279263589f650"/><dir name="Product"><file name="Attribute.php" hash="4f7bca95704128a86e6988862a24e60f"/><file name="Id.php" hash="5263eaf63d66641e85fcadd9aed99f33"/></dir><dir name="Retargeting"><file name="Cart.php" hash="7b818edd7b9e5ca319c0efdf70531833"/><file name="Category.php" hash="b0c84ee220f97687a5fb1d4f357cc2d5"/><file name="Checkout.php" hash="82c8db7a65c4b1879a885d9126ba52d5"/><file name="Product.php" hash="b0e9e902b03df6017c4cd7bdb26ad92e"/></dir><dir name="Tracking"><file name="Parameters.php" hash="91fa01890f09fae399931ac781a7b3d1"/><file name="Type.php" hash="29ce52da1bd3557583254db33a5cff78"/></dir></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Affilinet"><file name="CmsController.php" hash="d386100652124f97327bac7cbb129d60"/><file name="DatafeedController.php" hash="9fa33e56ad59ff7e7bfa37e8ec4aca99"/><dir name="Report"><file name="OrderController.php" hash="9b7adcd646fa27af2a68bd82add344e1"/><file name="StatisticsController.php" hash="9403318ca03fef86576fcd24abe6e8c4"/></dir></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="e123204a8d1b86c132aa82d07f96efc1"/><file name="config.xml" hash="afef5518a5c7c28ed7d024deb991625e"/><file name="system.xml" hash="3e06c5cbafddbe8f988a73531ec86619"/></dir><dir name="sql"><dir name="datafeed_setup"><file name="install-1.0.0.php" hash="b34cd4c821233a2dae444ad7ff83417e"/></dir><dir name="filter_setup"><file name="install-1.0.0.php" hash="4bdc3517c61e5fcdc8e66c7aba790e7c"/></dir><dir name="mapper_setup"><file name="install-1.0.0.php" hash="f681b6b93ea6ade9039fbdb3fc75d173"/></dir></dir></dir></dir></target></contents>
|
18 |
<compatible/>
|
19 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
20 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Creativestyle_AffiliNet</name>
|
4 |
+
<version>1.1.8</version>
|
5 |
<stability>stable</stability>
|
6 |
<license>Commercial</license>
|
7 |
<channel>community</channel>
|
9 |
<summary>This extension provides integration of your Magento shop with affilinet program.</summary>
|
10 |
<description>This extension provides official integration of your Magento store with Inline Checkout by Amazon service. Checkout by Amazon is a complete checkout and payments service for e-commerce retailers. Offer Checkout by Amazon to enable millions of Amazon customers to use shipping addresses and payment information in their Amazon.com accounts to buy on your e-commerce or mobile website. Customers complete purchases quickly and conveniently, without ever leaving your website.</description>
|
11 |
<notes># Fixed
|
12 |
+
- feed data for empty fieldnames
|
13 |
</notes>
|
14 |
<authors><author><name>affilinet GmbH</name><user>affilinet</user><email>magento@affili.net</email></author></authors>
|
15 |
+
<date>2016-07-26</date>
|
16 |
+
<time>07:32:54</time>
|
17 |
+
<contents><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="affilinet.xml" hash="3e917af9af09c9a189396954b2cc3310"/></dir><dir name="template"><dir name="creativestyle"><dir name="affilinet"><dir name="datafeed"><file name="filter.phtml" hash="12a8e8aaa37adeeb0ee62cb5d5c425fb"/><file name="mapper.phtml" hash="46e229e257941028f953405dddd3350f"/><file name="preview.phtml" hash="7e51577a695d607f6d9b082c374042dd"/><file name="sendfeed.phtml" hash="4a96e87c6d3804a66d6b13bf9b7e5246"/></dir><file name="info.phtml" hash="079ac935abf6032675cd256cdd0326f5"/><file name="init.phtml" hash="bd99201cd8b1b2408c9f5a0a251ebde8"/><file name="introduction.phtml" hash="0dcfdd8c0402da4fb033d7ff5c301ee2"/><dir name="order"><dir name="grid"><file name="basket.phtml" hash="740cff03934d5c7fe0c26283a16054c9"/><file name="container.phtml" hash="5924735329a9d714692da0f773add16b"/></dir></dir><file name="signup.phtml" hash="5bf8db41b8e0e8a9e8f05e9055d05b6f"/><dir name="statistics"><dir name="grid"><file name="container.phtml" hash="ccb0ffe0434e0810cf372544eb3208e8"/></dir></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="affilinet.xml" hash="982cd00070c00ec1968ed8ef5cf238ce"/></dir><dir name="template"><dir name="creativestyle"><dir name="affilinet"><dir name="retargeting"><file name="cart.phtml" hash="6192cd8aa6e6113701692e8b1643e24b"/><file name="category.phtml" hash="db5edbd8f6930c5e83adbd5d5faeb96f"/><file name="checkout.phtml" hash="ab038532c58ddd75842138d55365293f"/><file name="customer_data.phtml" hash="c407f705e47b7347bce8b8f671ca894a"/><file name="landing_page.phtml" hash="0808e451219d80b918baa172894a111d"/><file name="product.phtml" hash="23acd1f0bef13101c26e27dad7254075"/><file name="search.phtml" hash="61ef2e81a1b2990b0b7ea4a4dff146c4"/></dir><file name="tracking.phtml" hash="1f26325a4711bcc05d8a96d72756dd3a"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Creativestyle_AffiliNet.xml" hash="4315ebd67b71f026e8530b76f2702aa8"/></dir></target><target name="magelocale"><dir name="de_DE"><file name="Creativestyle_AffiliNet.csv" hash="00bb857ec4858fe364a2ec8e4e3f0ebd"/><dir name="template"><dir name="email"><file name="affilinet_feed.html" hash="07ccb1ec0ab9fd1fb2f1ed6537eb6c0d"/></dir></dir></dir><dir name="en_GB"><file name="Creativestyle_AffiliNet.csv" hash="dbe15454a6ce31f66d2698b0c1f55f2f"/><dir name="template"><dir name="email"><file name="affilinet_feed.html" hash="1ecbafdfa6b9b6716a91ca4555b4571b"/></dir></dir></dir><dir name="en_US"><file name="Creativestyle_AffiliNet.csv" hash="dbe15454a6ce31f66d2698b0c1f55f2f"/><dir name="template"><dir name="email"><file name="affilinet_feed.html" hash="1ecbafdfa6b9b6716a91ca4555b4571b"/></dir></dir></dir><dir name="es_ES"><file name="Creativestyle_AffiliNet.csv" hash="b9e9bd3aadec7e9d823eafc9dc264690"/><dir name="template"><dir name="email"><file name="affilinet_feed.html" hash="1ecbafdfa6b9b6716a91ca4555b4571b"/></dir></dir></dir><dir name="nl_NL"><file name="Creativestyle_AffiliNet.csv" hash="72602761735c49b47896b9ae12845a76"/><dir name="template"><dir name="email"><file name="affilinet_feed.html" hash="1ecbafdfa6b9b6716a91ca4555b4571b"/></dir></dir></dir><dir name="fr_FR"><file name="Creativestyle_AffiliNet.csv" hash="defcdb90267a39e651cd5b4958d518bc"/><dir name="template"><dir name="email"><file name="affilinet_feed.html" hash="1ecbafdfa6b9b6716a91ca4555b4571b"/></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="creativestyle"><dir name="css"><file name="affilinet.css" hash="6ab71d9b577cda9fcd307b1a8c648f97"/></dir><dir name="images"><file name="affili-net-creativestyle-header-logo.png" hash="1f17fc7a61f8aaf929000d1d87f7d943"/><file name="affili-net-creativestyle-logo.png" hash="bb507d0085dab135ac313b8068515620"/><file name="affili-net-header.png" hash="16adaa58c6e2067e90357cef087bb0a9"/><file name="affili-net-section.png" hash="28b9903f30c7f0078ff9dae7d4e7e054"/><file name="sort_affili.gif" hash="b7e86a1536fdc2925177abfea016ba28"/></dir></dir></dir></dir></dir></target><target name="mage"><dir name="js"><dir name="creativestyle"><dir name="adminhtml"><file name="affilinet.js" hash="cd89ab8351072f4011b3db9c137b1287"/></dir></dir></dir></target><target name="magecommunity"><dir name="Creativestyle"><dir name="AffiliNet"><dir name="Block"><file name="Abstract.php" hash="e37dc33297df96f8e40e3bfbe7e9d124"/><dir name="Adminhtml"><file name="Cms.php" hash="91a42fa1f67b19062e74eabebbfa801a"/><dir name="Datafeed"><dir name="Edit"><file name="Form.php" hash="4ce1b427831935281f7574b608eb8671"/><dir name="Tab"><file name="Cron.php" hash="f7a732996774569ac6f99f74bd278b0b"/><file name="Filter.php" hash="6b059c22009f2908d73396e22c1ed953"/><file name="General.php" hash="34135b3cb9658f6bd8b5506d51278cfc"/><file name="Mapper.php" hash="592966331516d318754362525e422891"/><file name="Submit.php" hash="a252f9564178e783172e07a21e42b90b"/></dir><file name="Tabs.php" hash="80db9367722f7865fe91312452fcab32"/></dir><file name="Edit.php" hash="3fa2c453fbd2d5f95c7feac52118bbfd"/><dir name="Form"><dir name="Field"><file name="Image.php" hash="7e938c4b1b3623f47a0289fe0a2c7576"/></dir></dir><file name="Grid.php" hash="61a93403b4caf29dd7a275156e369340"/><file name="Preview.php" hash="7c8d03f28196dca2b3745d42a76c1f6c"/><dir name="Renderer"><file name="Filter.php" hash="2302e6a5e8e008dcab4cdcf145596c08"/><file name="Mapper.php" hash="4e2c70ba4f3f480807bb0b5b20f472a3"/><file name="Sendfeed.php" hash="647476f7041f28416b9dfe384844e107"/><file name="Startat.php" hash="1461075a13288e581fb09d73e86e32a1"/><file name="Url.php" hash="cc471d4b8fb40fb2c5687d53d48301e3"/></dir></dir><file name="Datafeed.php" hash="498c091f0a64138be3ae2d7065388d3c"/><file name="Info.php" hash="a097f8a2d1cda163f676a5a661472833"/><dir name="Report"><file name="Abstract.php" hash="61a8c0b3aec0510e53216c5e76088d8a"/><dir name="Container"><file name="Abstract.php" hash="5fbf9849ffef70fb20ca28afaf413f42"/></dir><dir name="Filter"><dir name="Form"><file name="Abstract.php" hash="b220f415bc33e325f6b6dd374a7fdf91"/><dir name="Field"><file name="PublisherVolume.php" hash="6148c9d54137b82fac25de6d2499b6c6"/></dir></dir></dir><dir name="Order"><dir name="Filter"><file name="Form.php" hash="138e4c1e69e5b2cc1c89c6739cdd2f44"/></dir><dir name="Grid"><file name="BasketInfo.php" hash="392e18140750924e7c96fa259bc66829"/></dir><file name="Grid.php" hash="638b146ada40dbff263483621f897d1b"/><dir name="Renderer"><file name="ActionInDays.php" hash="847790a89d6284047bf753c7e2d4d204"/><file name="BasketInfo.php" hash="7213345682aadab46e0993f50d851267"/><file name="Flag.php" hash="f5f73800549db03934f8ac98b85e8ba9"/><file name="NetPrice.php" hash="41b12a17f213ebb459a175ae80a81a12"/><file name="NewStatus.php" hash="0a5db3134b4fbc4d619a67f7b0d0e23d"/></dir></dir><file name="Order.php" hash="d00f516313d0e8b714427fa8ad5cdd2f"/><dir name="Statistics"><dir name="Filter"><file name="Form.php" hash="6d87c331eb9c47cf3d6b3333f6d39b81"/></dir><file name="Grid.php" hash="a09919d8e55d9d0f7e1904f692fb61d4"/><dir name="Renderer"><file name="Abstract.php" hash="58d344b42e192375ebbcc4d66c58778f"/><file name="Clicks.php" hash="f0cb82752620afdc9c4152a5c14a91fb"/><file name="Leads.php" hash="b40415618856d95292e3a5bf979f3bcc"/><file name="Sales.php" hash="ab64acc7c6622277cbb47a1a498dbc36"/></dir></dir><file name="Statistics.php" hash="ecf6e0c0ccae99c31f488c4dc1ad165b"/></dir><dir name="System"><dir name="Config"><dir name="Form"><dir name="Field"><file name="Checkbox.php" hash="0a3822603120e5d869a8e5e46ea7489c"/><file name="Currency.php" hash="1bd8fb4ff196880b993c686c52d7770e"/><file name="Headinginfo.php" hash="68a163d02d1c58864ad4403bfba37fc0"/><file name="Image.php" hash="3312e43a6f4359ba382feb50fbfa2985"/><file name="PublisherRate.php" hash="82365977924823dde0cbaf4cf09dcbff"/></dir></dir></dir></dir></dir><file name="Retargeting.php" hash="5ce43a15cd5c36e366f21f796f6ec01e"/><file name="Tracking.php" hash="76380c33b3a2e983013b8d2302c29b3e"/></dir><dir name="Controller"><dir name="Adminhtml"><dir name="Report"><file name="Abstract.php" hash="a69e3eecbc2c77481f45c45fdc4b8472"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="6a80575baceed76e22a14f38f16e9319"/></dir><dir name="Model"><dir name="Api"><dir name="Client"><file name="Abstract.php" hash="229a20459f36c500b5bd9a17614f147c"/><file name="Orders.php" hash="b9c5ad202f8e22a4c673b9b9de1e6f8c"/><file name="Statistics.php" hash="81e4a34844f6328a7707c130af2b5e93"/><file name="Toolbox.php" hash="e1d6dd2fcd9f123c5cbfd4f2dcac9ae1"/></dir><dir name="Model"><file name="Abstract.php" hash="06caec95c84ba972908edc8332795830"/><file name="BasketItem.php" hash="2689a41d60e4fd9deb9528f4efc06a16"/><file name="Channel.php" hash="40acd753b14fcbef3b7442f6f5d63b42"/><file name="Creative.php" hash="b423cb3ab3f86f9daaa090a8aa25c5b0"/><file name="Order.php" hash="bfb6cd173e81666a8f6cc1c447e0bbc5"/><file name="PublisherSegment.php" hash="35c29119e2a40455ee53650a6106db7a"/><file name="PublisherStatistics.php" hash="42fffd201037a7c4b4d8e062d2ec712b"/><file name="Rate.php" hash="8b7a8b1ae7dfe3e4916d8b389dc16636"/></dir><file name="Security.php" hash="a063a7968beee5643a801417a64213cc"/><dir name="Source"><file name="Abstract.php" hash="421ff0d28d0fb8fd604a2872638e67a2"/><file name="CancellationReason.php" hash="ad48bf8acd71874e9854cc8a7bcc9c99"/><file name="Channel.php" hash="441a2682c37c51cd87e24b472fa95765"/><file name="Creative.php" hash="038e71e5320724d4bc0c99c84a3ef18b"/><file name="CreativeType.php" hash="e81bfdbb25212a6f20bf873c3f22732e"/><file name="EvaluationType.php" hash="adb01f6c4c3b73b5097edc691bca42c9"/><dir name="Period"><file name="Type.php" hash="d2b0e709432bb6e8c6e0b6fcff6a9d3c"/></dir><file name="Period.php" hash="3fa3e82f8703a90096bba23976da2996"/><file name="PublisherFilter.php" hash="b8fa11eb5f4270331c68e3c99ede3eb4"/><file name="PublisherSegment.php" hash="070b89f5d58babf6b2a24edeefd15872"/><file name="TransactionStatus.php" hash="f5d7fbffdee21b848b817eec8666cbfc"/><file name="VolumeType.php" hash="1e449402d1375fbfe4a65e650b7e4ee9"/></dir><file name="UsernameToken.php" hash="6374a74793f09581500b94b570d3031b"/></dir><file name="Api.php" hash="eb1847d35f245ff106560011d64e6255"/><file name="Config.php" hash="e26f440539262e57d148f2f3ae548a84"/><file name="Datafeed.php" hash="68cc4bedb6f6ab7c5558d4a42cd69dd8"/><file name="Filter.php" hash="3a015dd920e58568ad61289f0388d7b2"/><file name="Mapper.php" hash="bee971dcd34db9500c42d79155708fd6"/><file name="Observer.php" hash="249aecce976f41e8cad919775741cf9c"/><dir name="Resource"><dir name="Api"><dir name="Model"><dir name="BasketItem"><file name="Collection.php" hash="d3770854136beff6cf4c7ba80d05aec8"/></dir><dir name="Channel"><file name="Collection.php" hash="9cd6a79701e0bdedd28c6ecd6a225b40"/></dir><dir name="Collection"><file name="Abstract.php" hash="61be14fb4295e6b241c4ce118b95c477"/></dir><dir name="Creative"><file name="Collection.php" hash="3fe67718a8e5f27933533ec4ac21b36a"/></dir><dir name="Order"><file name="Collection.php" hash="11061588fd7c471db7adcf1652f800d4"/></dir><dir name="PublisherSegment"><file name="Collection.php" hash="eceff28298489c11da890cfafba0f91e"/></dir><dir name="PublisherStatistics"><file name="Collection.php" hash="a3a3cd535342e071fee454ff56a717a4"/></dir><dir name="Rate"><file name="Collection.php" hash="05e2a4599d09922542e34cc7433957a4"/></dir></dir></dir><dir name="Datafeed"><file name="Collection.php" hash="5a065e9330b1f9bbd77b351322a852c1"/></dir><file name="Datafeed.php" hash="c4444fb84b072b7367ae4129d2c611bf"/><dir name="Filter"><file name="Collection.php" hash="0cdc65706c719033d955871a9e1d35e0"/></dir><file name="Filter.php" hash="4c4918f5538454c6f5a5121b5bc2a645"/><dir name="Mapper"><file name="Collection.php" hash="47e104471faf72233a66b55a75a91c45"/></dir><file name="Mapper.php" hash="6be25a431465ce19e301666bfd889a5f"/></dir><dir name="System"><dir name="Config"><dir name="Backend"><file name="Image.php" hash="0b333d05bf4a8500c2982a4902e43677"/><file name="Rate.php" hash="e60af2fbc3913dac543fda408ccfe893"/></dir><dir name="Source"><file name="Abstract.php" hash="154be9a346d4a7db2766be650eb50758"/><file name="Attribute.php" hash="f6d9a2b2c3a82b6d118b70234c4fc144"/><file name="Platform.php" hash="95b94b8bdc783151da3279263589f650"/><dir name="Product"><file name="Attribute.php" hash="4f7bca95704128a86e6988862a24e60f"/><file name="Id.php" hash="5263eaf63d66641e85fcadd9aed99f33"/></dir><dir name="Retargeting"><file name="Cart.php" hash="7b818edd7b9e5ca319c0efdf70531833"/><file name="Category.php" hash="b0c84ee220f97687a5fb1d4f357cc2d5"/><file name="Checkout.php" hash="82c8db7a65c4b1879a885d9126ba52d5"/><file name="Product.php" hash="b0e9e902b03df6017c4cd7bdb26ad92e"/></dir><dir name="Tracking"><file name="Parameters.php" hash="91fa01890f09fae399931ac781a7b3d1"/><file name="Type.php" hash="29ce52da1bd3557583254db33a5cff78"/></dir></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Affilinet"><file name="CmsController.php" hash="d386100652124f97327bac7cbb129d60"/><file name="DatafeedController.php" hash="9fa33e56ad59ff7e7bfa37e8ec4aca99"/><dir name="Report"><file name="OrderController.php" hash="9b7adcd646fa27af2a68bd82add344e1"/><file name="StatisticsController.php" hash="9403318ca03fef86576fcd24abe6e8c4"/></dir></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="e123204a8d1b86c132aa82d07f96efc1"/><file name="config.xml" hash="d0c345b2a69889a2c927c9a0df236645"/><file name="system.xml" hash="3e06c5cbafddbe8f988a73531ec86619"/></dir><dir name="sql"><dir name="datafeed_setup"><file name="install-1.0.0.php" hash="b34cd4c821233a2dae444ad7ff83417e"/></dir><dir name="filter_setup"><file name="install-1.0.0.php" hash="4bdc3517c61e5fcdc8e66c7aba790e7c"/></dir><dir name="mapper_setup"><file name="install-1.0.0.php" hash="f681b6b93ea6ade9039fbdb3fc75d173"/></dir></dir></dir></dir></target></contents>
|
18 |
<compatible/>
|
19 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
20 |
</package>
|