Version Notes
# Fixed
- infinite redirect loop on order and statistics page
Download this release
Release Info
Developer | affilinet GmbH |
Extension | Creativestyle_AffiliNet |
Version | 1.1.9 |
Comparing to | |
See all releases |
Code changes from version 1.1.8 to 1.1.9
app/code/community/Creativestyle/AffiliNet/Controller/Adminhtml/Report/Abstract.php
CHANGED
@@ -8,7 +8,6 @@
|
|
8 |
*/
|
9 |
abstract class Creativestyle_AffiliNet_Controller_Adminhtml_Report_Abstract extends Mage_Adminhtml_Controller_Action {
|
10 |
|
11 |
-
|
12 |
/**
|
13 |
* Add affilinet breadcrumbs and title
|
14 |
*
|
@@ -32,7 +31,7 @@ abstract class Creativestyle_AffiliNet_Controller_Adminhtml_Report_Abstract exte
|
|
32 |
$blocks = array($blocks);
|
33 |
}
|
34 |
|
35 |
-
$storeId = $this->
|
36 |
|
37 |
$requestData = Mage::helper('adminhtml')->prepareFilterString($this->getRequest()->getParam('filter'));
|
38 |
$requestData = $this->_filterDates($requestData, array('from', 'to'));
|
@@ -59,6 +58,14 @@ abstract class Creativestyle_AffiliNet_Controller_Adminhtml_Report_Abstract exte
|
|
59 |
return $soapMessage;
|
60 |
}
|
61 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
public function indexAction() {
|
63 |
try {
|
64 |
$this->_initLayout();
|
@@ -69,12 +76,12 @@ abstract class Creativestyle_AffiliNet_Controller_Adminhtml_Report_Abstract exte
|
|
69 |
return;
|
70 |
} else {
|
71 |
Mage::getSingleton('adminhtml/session')->addError($this->_extractErrorMessage($eSoap->getMessage()));
|
72 |
-
$this->_redirect('*/*/');
|
73 |
return;
|
74 |
}
|
75 |
} catch (Exception $e) {
|
76 |
Mage::getSingleton('adminhtml/session')->addError($e->getMessage());
|
77 |
-
$this->_redirect('*/*/');
|
78 |
return;
|
79 |
}
|
80 |
}
|
@@ -84,4 +91,14 @@ abstract class Creativestyle_AffiliNet_Controller_Adminhtml_Report_Abstract exte
|
|
84 |
$this->renderLayout();
|
85 |
}
|
86 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
87 |
}
|
8 |
*/
|
9 |
abstract class Creativestyle_AffiliNet_Controller_Adminhtml_Report_Abstract extends Mage_Adminhtml_Controller_Action {
|
10 |
|
|
|
11 |
/**
|
12 |
* Add affilinet breadcrumbs and title
|
13 |
*
|
31 |
$blocks = array($blocks);
|
32 |
}
|
33 |
|
34 |
+
$storeId = $this->getStoreId();
|
35 |
|
36 |
$requestData = Mage::helper('adminhtml')->prepareFilterString($this->getRequest()->getParam('filter'));
|
37 |
$requestData = $this->_filterDates($requestData, array('from', 'to'));
|
58 |
return $soapMessage;
|
59 |
}
|
60 |
|
61 |
+
/**
|
62 |
+
* @return integer
|
63 |
+
*/
|
64 |
+
protected function getStoreId()
|
65 |
+
{
|
66 |
+
return $this->getRequest()->getParam('store', Mage::helper('affilinet')->getStoreSwitcherFirstId());
|
67 |
+
}
|
68 |
+
|
69 |
public function indexAction() {
|
70 |
try {
|
71 |
$this->_initLayout();
|
76 |
return;
|
77 |
} else {
|
78 |
Mage::getSingleton('adminhtml/session')->addError($this->_extractErrorMessage($eSoap->getMessage()));
|
79 |
+
$this->_redirect('*/*/error', array('error_in_store' => $this->getStoreId(), 'store' => $this->getStoreId()));
|
80 |
return;
|
81 |
}
|
82 |
} catch (Exception $e) {
|
83 |
Mage::getSingleton('adminhtml/session')->addError($e->getMessage());
|
84 |
+
$this->_redirect('*/*/error', array('error_in_store' => $this->getStoreId(), 'store' => $this->getStoreId()));
|
85 |
return;
|
86 |
}
|
87 |
}
|
91 |
$this->renderLayout();
|
92 |
}
|
93 |
|
94 |
+
public function errorAction() {
|
95 |
+
$errorStoreId = $this->getRequest()->getParam('error_in_store', null);
|
96 |
+
$storeId = $this->getRequest()->getParam('store', null);
|
97 |
+
if ($errorStoreId != $storeId) {
|
98 |
+
$this->_redirect('*/*/', array('store' => $storeId));
|
99 |
+
return;
|
100 |
+
}
|
101 |
+
$this->_initLayout();
|
102 |
+
$this->renderLayout();
|
103 |
+
}
|
104 |
}
|
app/code/community/Creativestyle/AffiliNet/etc/config.xml
CHANGED
@@ -3,14 +3,14 @@
|
|
3 |
/**
|
4 |
* @category Creativestyle
|
5 |
* @package Creativestyle_AffiliNet
|
6 |
-
* @copyright Copyright (c) 2014 creativestyle GmbH
|
7 |
* @author Marek Zabrowarny / creativestyle GmbH <support@creativestyle.de>
|
8 |
*/
|
9 |
-->
|
10 |
<config>
|
11 |
<modules>
|
12 |
<Creativestyle_AffiliNet>
|
13 |
-
<version>1.1.
|
14 |
</Creativestyle_AffiliNet>
|
15 |
</modules>
|
16 |
<global>
|
3 |
/**
|
4 |
* @category Creativestyle
|
5 |
* @package Creativestyle_AffiliNet
|
6 |
+
* @copyright Copyright (c) 2014 - 2016 creativestyle GmbH
|
7 |
* @author Marek Zabrowarny / creativestyle GmbH <support@creativestyle.de>
|
8 |
*/
|
9 |
-->
|
10 |
<config>
|
11 |
<modules>
|
12 |
<Creativestyle_AffiliNet>
|
13 |
+
<version>1.1.9</version>
|
14 |
</Creativestyle_AffiliNet>
|
15 |
</modules>
|
16 |
<global>
|
app/design/adminhtml/default/default/layout/affilinet.xml
CHANGED
@@ -81,6 +81,21 @@
|
|
81 |
<adminhtml_affilinet_report_statistics_auth>
|
82 |
<update handle="admin_affilinet_failed_auth"/>
|
83 |
</adminhtml_affilinet_report_statistics_auth>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
84 |
<adminhtml_affilinet_report_order_getbasketinfo>
|
85 |
<block type="affilinet/adminhtml_report_order_grid_basketInfo" name="root" output="toHtml"/>
|
86 |
</adminhtml_affilinet_report_order_getbasketinfo>
|
81 |
<adminhtml_affilinet_report_statistics_auth>
|
82 |
<update handle="admin_affilinet_failed_auth"/>
|
83 |
</adminhtml_affilinet_report_statistics_auth>
|
84 |
+
<admin_affilinet_api_error>
|
85 |
+
<reference name="content">
|
86 |
+
<block type="adminhtml/store_switcher" name="store_switcher" as="store_switcher">
|
87 |
+
<action method="hasDefaultOption"><params>0</params></action>
|
88 |
+
<action method="setUseConfirm"><params>0</params></action>
|
89 |
+
<action method="setStoreVarName"><var_name>store</var_name></action>
|
90 |
+
</block>
|
91 |
+
</reference>
|
92 |
+
</admin_affilinet_api_error>
|
93 |
+
<adminhtml_affilinet_report_order_error>
|
94 |
+
<update handle="admin_affilinet_api_error"/>
|
95 |
+
</adminhtml_affilinet_report_order_error>
|
96 |
+
<adminhtml_affilinet_report_statistics_error>
|
97 |
+
<update handle="admin_affilinet_api_error"/>
|
98 |
+
</adminhtml_affilinet_report_statistics_error>
|
99 |
<adminhtml_affilinet_report_order_getbasketinfo>
|
100 |
<block type="affilinet/adminhtml_report_order_grid_basketInfo" name="root" output="toHtml"/>
|
101 |
</adminhtml_affilinet_report_order_getbasketinfo>
|
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>
|
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="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>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Creativestyle_AffiliNet</name>
|
4 |
+
<version>1.1.9</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 |
+
- infinite redirect loop on order and statistics page
|
13 |
</notes>
|
14 |
<authors><author><name>affilinet GmbH</name><user>affilinet</user><email>magento@affili.net</email></author></authors>
|
15 |
+
<date>2017-03-03</date>
|
16 |
+
<time>11:59:51</time>
|
17 |
+
<contents><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="affilinet.xml" hash="f753ffac3079de5e38af2fcb206e4358"/></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="7ae78cae71ee5f46fd314c75824e1460"/></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="7f09e00f3585cbac05c31fe7533fbbff"/><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>
|