Version Notes
- Backend redirection status kept in the user session
Download this release
Release Info
Developer | Webinterpret |
Extension | Webinterpret_Connector |
Version | 1.3.1.1 |
Comparing to | |
See all releases |
Code changes from version 1.3.1.0 to 1.3.1.1
app/code/community/Webinterpret/Connector/Helper/Data.php
CHANGED
@@ -515,4 +515,21 @@ class Webinterpret_Connector_Helper_Data extends Mage_Core_Helper_Abstract
|
|
515 |
{
|
516 |
return Mage::getModuleDir('', 'Webinterpret_Connector') . '/resources/geoip/GeoIP2-Country.mmdb';
|
517 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
518 |
}
|
515 |
{
|
516 |
return Mage::getModuleDir('', 'Webinterpret_Connector') . '/resources/geoip/GeoIP2-Country.mmdb';
|
517 |
}
|
518 |
+
|
519 |
+
/**
|
520 |
+
* Checks if the session was already started
|
521 |
+
*
|
522 |
+
* @return bool
|
523 |
+
*/
|
524 |
+
public function isSessionStarted() {
|
525 |
+
if (php_sapi_name() !== 'cli') {
|
526 |
+
if (version_compare(phpversion(), '5.4.0', '>=')) {
|
527 |
+
return session_status() === PHP_SESSION_ACTIVE;
|
528 |
+
} else {
|
529 |
+
return session_id() !== '';
|
530 |
+
}
|
531 |
+
}
|
532 |
+
|
533 |
+
return false;
|
534 |
+
}
|
535 |
}
|
app/code/community/Webinterpret/Connector/Model/BackendRedirector.php
CHANGED
@@ -19,6 +19,16 @@ use WebinterpretConnector\Webinterpret\Toolkit\GeoIP;
|
|
19 |
*/
|
20 |
class Webinterpret_Connector_Model_BackendRedirector extends Varien_Object
|
21 |
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
/** @var GeoIP */
|
23 |
private $geoIp;
|
24 |
|
@@ -49,7 +59,7 @@ class Webinterpret_Connector_Model_BackendRedirector extends Varien_Object
|
|
49 |
parent::__construct();
|
50 |
}
|
51 |
|
52 |
-
public function generateInternationalRedirectionUrlIfAvailable()
|
53 |
{
|
54 |
// collect user information
|
55 |
$clientIp = $this->geoIp->getClientIp();
|
@@ -64,8 +74,6 @@ class Webinterpret_Connector_Model_BackendRedirector extends Varien_Object
|
|
64 |
return null;
|
65 |
}
|
66 |
|
67 |
-
$productId = Mage::registry('current_product')->getId();
|
68 |
-
|
69 |
// check if product is available in Inventory Manager
|
70 |
$productInfo = $this->inventoryManagerClient->fetchProductInfo($productId, $clientIp, $clientCountryCode);
|
71 |
|
@@ -181,4 +189,35 @@ class Webinterpret_Connector_Model_BackendRedirector extends Varien_Object
|
|
181 |
return new FileGetContents();
|
182 |
}
|
183 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
184 |
}
|
19 |
*/
|
20 |
class Webinterpret_Connector_Model_BackendRedirector extends Varien_Object
|
21 |
{
|
22 |
+
/**
|
23 |
+
* Time that the redirector should be disabled for in seconds
|
24 |
+
*/
|
25 |
+
const REDIRECTOR_DISABLEMENT_PERIOD = 3600;
|
26 |
+
|
27 |
+
/**
|
28 |
+
* The key that the list of disabled products will be kept under in the session
|
29 |
+
*/
|
30 |
+
const REDIRECTOR_DISABLEMENT_LIST_SESSION_KEY = 'webinterpret-redirector-disabled-products';
|
31 |
+
|
32 |
/** @var GeoIP */
|
33 |
private $geoIp;
|
34 |
|
59 |
parent::__construct();
|
60 |
}
|
61 |
|
62 |
+
public function generateInternationalRedirectionUrlIfAvailable($productId)
|
63 |
{
|
64 |
// collect user information
|
65 |
$clientIp = $this->geoIp->getClientIp();
|
74 |
return null;
|
75 |
}
|
76 |
|
|
|
|
|
77 |
// check if product is available in Inventory Manager
|
78 |
$productInfo = $this->inventoryManagerClient->fetchProductInfo($productId, $clientIp, $clientCountryCode);
|
79 |
|
189 |
return new FileGetContents();
|
190 |
}
|
191 |
}
|
192 |
+
|
193 |
+
public function disableBackendRedirectorForProduct($productId)
|
194 |
+
{
|
195 |
+
$disabledProducts = Mage::getSingleton('core/session')->getData(self::REDIRECTOR_DISABLEMENT_LIST_SESSION_KEY);
|
196 |
+
|
197 |
+
if (!is_array($disabledProducts)) {
|
198 |
+
$disabledProducts = array();
|
199 |
+
}
|
200 |
+
|
201 |
+
$disabledProducts[$productId] = time() + self::REDIRECTOR_DISABLEMENT_PERIOD;
|
202 |
+
|
203 |
+
Mage::getSingleton('core/session')->setData(self::REDIRECTOR_DISABLEMENT_LIST_SESSION_KEY, $disabledProducts);
|
204 |
+
}
|
205 |
+
|
206 |
+
public function isBackendRedirectorDisabledForProduct($productId)
|
207 |
+
{
|
208 |
+
$disabledProducts = Mage::getSingleton('core/session')->getData(self::REDIRECTOR_DISABLEMENT_LIST_SESSION_KEY);
|
209 |
+
$redirectorDisablementExpiryDate = isset($disabledProducts[$productId]) ? $disabledProducts[$productId] : null;
|
210 |
+
|
211 |
+
if (is_null($redirectorDisablementExpiryDate)) {
|
212 |
+
return false;
|
213 |
+
}
|
214 |
+
|
215 |
+
if ($redirectorDisablementExpiryDate < time()) {
|
216 |
+
unset($disabledProducts[$productId]);
|
217 |
+
Mage::getSingleton('core/session')->setData(self::REDIRECTOR_DISABLEMENT_LIST_SESSION_KEY, $disabledProducts);
|
218 |
+
return false;
|
219 |
+
} else {
|
220 |
+
return true;
|
221 |
+
}
|
222 |
+
}
|
223 |
}
|
app/code/community/Webinterpret/Connector/Model/Observer.php
CHANGED
@@ -61,19 +61,26 @@ class Webinterpret_Connector_Model_Observer
|
|
61 |
|
62 |
public function hookIntoProductInit($observer)
|
63 |
{
|
64 |
-
if (!Mage::helper('webinterpret_connector')->isBackendRedirectorEnabled()) {
|
65 |
-
return $observer;
|
66 |
-
}
|
67 |
-
|
68 |
try {
|
69 |
/** @var Webinterpret_Connector_Model_BackendRedirector $backendRedirector */
|
70 |
$backendRedirector = Mage::getModel('webinterpret_connector/backendRedirector');
|
71 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
72 |
} catch (\Exception $e) {
|
73 |
return $observer;
|
74 |
}
|
75 |
|
76 |
if (!is_null($redirectionUrl)) {
|
|
|
77 |
Mage::app()->getFrontController()->getResponse()->setRedirect($redirectionUrl);
|
78 |
Mage::app()->getResponse()->sendResponse();
|
79 |
exit;
|
61 |
|
62 |
public function hookIntoProductInit($observer)
|
63 |
{
|
|
|
|
|
|
|
|
|
64 |
try {
|
65 |
/** @var Webinterpret_Connector_Model_BackendRedirector $backendRedirector */
|
66 |
$backendRedirector = Mage::getModel('webinterpret_connector/backendRedirector');
|
67 |
+
$productId = Mage::registry('current_product')->getId();
|
68 |
+
|
69 |
+
if (
|
70 |
+
!Mage::helper('webinterpret_connector')->isSessionStarted() ||
|
71 |
+
!Mage::helper('webinterpret_connector')->isBackendRedirectorEnabled() ||
|
72 |
+
$backendRedirector->isBackendRedirectorDisabledForProduct($productId)
|
73 |
+
) {
|
74 |
+
return $observer;
|
75 |
+
}
|
76 |
+
|
77 |
+
$redirectionUrl = $backendRedirector->generateInternationalRedirectionUrlIfAvailable($productId);
|
78 |
} catch (\Exception $e) {
|
79 |
return $observer;
|
80 |
}
|
81 |
|
82 |
if (!is_null($redirectionUrl)) {
|
83 |
+
$backendRedirector->disableBackendRedirectorForProduct($productId);
|
84 |
Mage::app()->getFrontController()->getResponse()->setRedirect($redirectionUrl);
|
85 |
Mage::app()->getResponse()->sendResponse();
|
86 |
exit;
|
app/code/community/Webinterpret/Connector/etc/config.xml
CHANGED
@@ -8,7 +8,7 @@
|
|
8 |
<config>
|
9 |
<modules>
|
10 |
<Webinterpret_Connector>
|
11 |
-
<version>1.3.1.
|
12 |
</Webinterpret_Connector>
|
13 |
</modules>
|
14 |
<global>
|
8 |
<config>
|
9 |
<modules>
|
10 |
<Webinterpret_Connector>
|
11 |
+
<version>1.3.1.1</version>
|
12 |
</Webinterpret_Connector>
|
13 |
</modules>
|
14 |
<global>
|
package.xml
CHANGED
@@ -1,18 +1,18 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Webinterpret_Connector</name>
|
4 |
-
<version>1.3.1.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Integrate Magento with Webinterpret.</summary>
|
10 |
<description>Translate and market your products internationally with Webinterpret. This is the official Magento extension for integrating with Webinterpret.</description>
|
11 |
-
<notes>- Backend
|
12 |
<authors><author><name>Webinterpret</name><user>webinterpret</user><email>info@webinterpret.com</email></author></authors>
|
13 |
-
<date>2016-
|
14 |
-
<time>
|
15 |
-
<contents><target name="magecommunity"><dir><dir name="Webinterpret"><dir name="Connector"><dir><dir name="Block"><dir name="Adminhtml"><file name="Notifications.php" hash="5e1935e32f1b5d10f0b76fee427a23a6"/><dir name="System"><dir name="Config"><dir name="Fieldset"><file name="Status.php" hash="99b95c7991e91a4d4d98efdaf8007b88"/></dir></dir></dir></dir><file name="Footer.php" hash="160f03e528d7e9411e85d524919fd280"/><file name="Head.php" hash="1261ad40df9f0dc708178d78d63158d8"/><dir name="Product"><file name="View.php" hash="3b3b40108b53d326c0dcff0e45fa8407"/></dir></dir><dir name="Helper"><file name="Data.php" hash="f159aa66d7a8160abb5df53085c2235c"/></dir><dir name="Lib"><dir name="Webinterpret"><file name="InventoryManagerClient.php" hash="d6acf256009835b2d389ffdb8abe48b8"/><file name="InventoryManagerProductInfo.php" hash="bb57591383e0422f6d053092a1e8820c"/><dir name="Toolkit"><file name="GeoIP.php" hash="04b858256cee73a321e34b1cdd81953f"/></dir></dir><file name="autoload.php" hash="38dfc2154472b80340528faa44a36522"/><dir name="composer"><file name="ClassLoader.php" hash="c67ebce5ff31e99311ceb750202adf2e"/><file name="LICENSE" hash="cfdafe5f67fbcc46c00fcb2f5b80a0cf"/><file name="autoload_classmap.php" hash="8645d3a4e3ad87e7cf4d88a46717aab4"/><file name="autoload_namespaces.php" hash="f7aec47106fe386a4d7710cee304fc7c"/><file name="autoload_psr4.php" hash="a1ee1e33d38bf972aaa8596aed6b9498"/><file name="autoload_real.php" hash="097fc6becad3c938f052e71bc46ab58a"/><dir name="ca-bundle"><file name="LICENSE" hash="783e50a8f248e56536e25b4746d035af"/><file name="README.md" hash="04096c5cd7666bbb481909761dd7d528"/><file name="composer.json" hash="719cc746e830f62c35eb73f694b02881"/><dir name="res"><file name="cacert.pem" hash="dcd698b7138230c1a9b6d04051a4fc83"/></dir><dir name="src"><file name="CaBundle.php" hash="ce2de2d0d2ac7d0035333c47f062f7f3"/></dir></dir><file name="installed.json" hash="309fa5b7f42e66abb184c0d81e0eaca9"/></dir><dir name="geoip2"><dir name="geoip2"><file name="CHANGELOG.md" hash="c93aaf66d68f404db1143ac548e72f69"/><file name="LICENSE" hash="3b83ef96387f14655fc854ddc3c6bd57"/><file name="README.md" hash="99be28bbbbf4e4e4d9ade38af2172c7b"/><file name="composer.json" hash="684eb00e319ab4b9f463712d2ea07ee2"/><dir name="src"><dir name="Compat"><file name="JsonSerializable.php" hash="b328c8968d8f6fd793da9ec8266b7ead"/></dir><dir name="Database"><file name="Reader.php" hash="69128baa625870ba775cdbce95bff033"/></dir><dir name="Exception"><file name="AddressNotFoundException.php" hash="f7b42f2f1952b78482e1cc6ae3e9c92e"/><file name="AuthenticationException.php" hash="a664ef571be82c82fa584545e66ff1fb"/><file name="GeoIp2Exception.php" hash="b14e09b853d258d93f7a0fd50e07b1d3"/><file name="HttpException.php" hash="c8129a00315622f4b2ce282096d41562"/><file name="InvalidRequestException.php" hash="79b7b13a3057e02ad573f01795bad4d3"/><file name="OutOfQueriesException.php" hash="35f4fa482a66d2e424b0f0ca9d19d390"/></dir><dir name="Model"><file name="AbstractModel.php" hash="34ef56e9aa17d1b408bcb5f48652e921"/><file name="AnonymousIp.php" hash="3c241f7efdde4dd769611f725384cc20"/><file name="City.php" hash="05f32089542682ec031911c66f457799"/><file name="ConnectionType.php" hash="202313369fa7d759d0c2f842a707cc42"/><file name="Country.php" hash="75526b5928bde78331e1cbaaf8551c30"/><file name="Domain.php" hash="8dcd1be751d401e66a8d220b0f15dca1"/><file name="Enterprise.php" hash="34fac18339d7cdff0492376a2d6ddaaf"/><file name="Insights.php" hash="1f0131cf93a2a64af5f7b1ae4c7f3a87"/><file name="Isp.php" hash="fbeb9ae86063258f363f6d2ed3e18057"/></dir><file name="ProviderInterface.php" hash="ada7808f8ef411d055c74f8e1e607930"/><dir name="Record"><file name="AbstractPlaceRecord.php" hash="746e0df11901479b60cb5dabf938cced"/><file name="AbstractRecord.php" hash="d821f2fb8a4ebd3c75f78ad82bd7a32c"/><file name="City.php" hash="54a21bf0b8984bea0091ee4e4eea9a5d"/><file name="Continent.php" hash="05ec67b54e6be3287cc3f2e439e1eaf5"/><file name="Country.php" hash="626d0e71d01876f400787be9e51ab628"/><file name="Location.php" hash="7552ff9d0f2a415bfee76f0141ffe9e2"/><file name="MaxMind.php" hash="05a43644700119689bf9940ab480b967"/><file name="Postal.php" hash="63832bd023c1c91a63c55477f14bb671"/><file name="RepresentedCountry.php" hash="9def588dc86e3302178992be480c5592"/><file name="Subdivision.php" hash="95008667190f6465669dbe6314d1e1e8"/><file name="Traits.php" hash="b70cdd26fd9a8b72e4e116c3cfef686a"/></dir><dir name="WebService"><file name="Client.php" hash="43a9140d8c9e6f52ee8369de1a6db5d8"/></dir></dir><file name=".gitmodules" hash="a1da842003e271f63f73319ab5d4e555"/></dir></dir><dir name="kriswallsmith"><dir name="buzz"><file name="CHANGELOG.md" hash="52f99dd3ede5d1ce97bf3b84597d1f69"/><file name="LICENSE" hash="8a10d9e96a9a0925ec7ebcacdd311337"/><file name="README.md" hash="901c8c869022838a7b1d5c355b678f41"/><file name="composer.json" hash="450defd5c92b8f905eb533c7b68775b7"/><dir name="examples"><file name="CookieListener.php" hash="424842bc2eee0b7bebdb9e105afe850f"/><file name="DigestAuthListener.php" hash="c4bfba70ecdd10b34174dbabda70bd38"/></dir><dir name="lib"><dir name="Buzz"><file name="Browser.php" hash="b59c3a87d43f0341ed310543e7dc8555"/><dir name="Client"><file name="AbstractClient.php" hash="f40f342282ce950321ee033e38c0f861"/><file name="AbstractCurl.php" hash="d86e03512358f4e946e623382da97afb"/><file name="AbstractStream.php" hash="f81315ba845a61eb3065eb988e32051d"/><file name="BatchClientInterface.php" hash="3216ee78dd79fab5cf54bcb94ca7cbad"/><file name="ClientInterface.php" hash="0ba9521f57320a50bc912565b45f3324"/><file name="Curl.php" hash="9208ca282da8907429e0c5ffb8a91e91"/><file name="FileGetContents.php" hash="a74d11f3053c37ad3ec74f80bb17df46"/><file name="MultiCurl.php" hash="097a75700f0781016e5b8bfa574af159"/></dir><dir name="Exception"><file name="ClientException.php" hash="2290c9bb236df1415e63ee4b50199524"/><file name="ExceptionInterface.php" hash="887286cc69d88403826f2cde0fb05d6d"/><file name="InvalidArgumentException.php" hash="40bcc515ead31256f723daa920ea970e"/><file name="LogicException.php" hash="1f93d93a6173bc3dc83071928d855a1c"/><file name="RequestException.php" hash="603c99142aa41fb69373c46d0c4d5eff"/><file name="RuntimeException.php" hash="2a5c17331eb1b01dcf82138668f149fb"/></dir><dir name="Listener"><file name="BasicAuthListener.php" hash="a01fae7d3a226d7b4c4a213cf2784ea4"/><file name="CallbackListener.php" hash="2b80a85e1dd5905bab79af7dc851d780"/><file name="CookieListener.php" hash="f2d400cbe1973e0bf2e70d233c71976e"/><file name="DigestAuthListener.php" hash="4205ee1295ae9e6046187b2a05436378"/><dir name="History"><file name="Entry.php" hash="e21f16b7547b4571f8325f8e2d1a0a32"/><file name="Journal.php" hash="4a7382bf0aa15400795dad3bcc0b3a0b"/></dir><file name="HistoryListener.php" hash="c20a2823330ad1c62c1e00d666062feb"/><file name="ListenerChain.php" hash="a19636acd50c32e7f1f3e74f70fa1c04"/><file name="ListenerInterface.php" hash="843663d54fc7362a9ff1aa79a8bc0503"/><file name="LoggerListener.php" hash="a1848cf1541d6c573ac17f216b6113e4"/></dir><dir name="Message"><file name="AbstractMessage.php" hash="d26608e2edb470f57c315005885bb359"/><dir name="Factory"><file name="Factory.php" hash="5cf89875f6796df4df08926b5f1006ad"/><file name="FactoryInterface.php" hash="96293478c30ce7ab5f6c8e1385d839db"/></dir><dir name="Form"><file name="FormRequest.php" hash="cd16d45436dab763aa8026e5adc43e7f"/><file name="FormRequestInterface.php" hash="57147f32a199d34858494aa9e935046e"/><file name="FormUpload.php" hash="5ad3c1fc47ea6d222915944b39bf46b2"/><file name="FormUploadInterface.php" hash="e654b096b82b5a4275489492387f568b"/></dir><file name="MessageInterface.php" hash="bd99826f8e2c9d1a1b0c65a5eb997e9e"/><file name="Request.php" hash="a1342c3ea578ddefa2b120814ba8bf80"/><file name="RequestInterface.php" hash="2b0fe4438cfc90c017389b191c94652b"/><file name="Response.php" hash="f4ffe4a64514548b0beb621a3d9f0089"/></dir><dir name="Util"><file name="Cookie.php" hash="1d42f5324611c19e8a6ea5c2cb6eb9f2"/><file name="CookieJar.php" hash="a3a92e31e139f797445e6be14c32e155"/><file name="Url.php" hash="888ec065b1a992dd2e8062bd7ba9e679"/></dir></dir></dir><file name="phpunit.xml.dist" hash="188b17738bbcd66e1fd408b454243572"/><dir name="test"><dir name="Buzz"><dir name="Test"><file name="BrowserTest.php" hash="e813cb5807345aff24698449f1ae5be9"/><dir name="Client"><file name="AbstractStreamTest.php" hash="e7b47d0fe24b7149c62ac736177d203d"/><file name="ClientTest.php" hash="8a14503e884cdf9b5e833b5206be61a4"/><file name="FunctionalTest.php" hash="0f069b79b734fb2efbde5f276d6ce37a"/></dir><dir name="Listener"><file name="BasicAuthListenerTest.php" hash="ae5c0fd244f7743d81080118b42dc73c"/><file name="CallbackListenerTest.php" hash="07d0e399b18e0cdd69aa66bf62bcbadc"/><file name="DigestAuthListenerTest.php" hash="595dbd612d2f1fde1264f738d1ed2c1e"/><dir name="History"><file name="EntryTest.php" hash="b7c001167cc0131c399e071538a66cb7"/><file name="JournalTest.php" hash="4111eb643fbcb05129dded0067aeefa7"/></dir><file name="HistoryListenerTest.php" hash="9953cad9320b6c78ce477532d454b3af"/><file name="ListenerChainTest.php" hash="ff5b9727f91f7a9da2d322d5a97deddb"/><file name="LoggerListenerTest.php" hash="7e40e0735e7dac71bcd9119c7a3c2e56"/></dir><dir name="Message"><file name="AbstractMessageTest.php" hash="90d531511705842c573b28f4c8fb5d68"/><file name="FactoryTest.php" hash="ced832a48cbc0d9e288136c1ff77d075"/><dir name="Fixtures"><file name="google.png" hash="169e859db7f28a01e1b51e1c9e2d6b2b"/></dir><file name="FormRequestTest.php" hash="a2ffa5131fd015f512b4a27c346d5657"/><file name="FormUploadTest.php" hash="34879f48bef94f8e33da964873cab449"/><file name="RequestTest.php" hash="e317c4e28a35a1aaebb7bec68cfe896c"/><file name="ResponseTest.php" hash="579841f50c45431092ca535aefbd9dc8"/></dir><dir name="Util"><file name="CookieJarTest.php" hash="79ee72e90586bc4be15b609c62b6db40"/><file name="CookieTest.php" hash="52f9472651d7cd7933fe5cf91daff218"/><file name="UrlTest.php" hash="2161e86caf2c229e63be62b555375054"/></dir></dir></dir><dir name="etc"><file name="nginx.conf" hash="db731e2d76cb867039bbc90014ba6476"/><file name="squid.conf" hash="77d3d02b7f2d73d6330a207b579785e7"/></dir><file name="server.php" hash="479689cf2fe15407f6280e83160b0277"/></dir><file name=".gitignore" hash="f7d5a75baf3a1beeb22243dd7ef578bd"/><file name=".travis.yml" hash="1b91a4fa3e3b4cc60d31f5f0eddb7e79"/></dir></dir><dir name="maxmind"><dir name="web-service-common"><file name="CHANGELOG.md" hash="7f2f05525acaaf52f3771f0129676e4a"/><file name="LICENSE" hash="3b83ef96387f14655fc854ddc3c6bd57"/><file name="README.md" hash="37316c741db7f5ae8dc1eaff4a045bd8"/><file name="composer.json" hash="ec42bb19ef5ba2b22192e89f3bd7b1ce"/><dir name="src"><dir name="Exception"><file name="AuthenticationException.php" hash="a1fdcba6decc96345545f4f10287e162"/><file name="HttpException.php" hash="6579aa42001dbe77ca3e8d1e51aac3d2"/><file name="InsufficientFundsException.php" hash="14886d684f1be0b4b28a66f4b22e490f"/><file name="InvalidInputException.php" hash="72dc20089eb4a5cfaccafe6e2b17a36e"/><file name="InvalidRequestException.php" hash="b55c1b8b30715dc40416be8c1ce3bd61"/><file name="IpAddressNotFoundException.php" hash="16313ab0d82195477e1ba071e7696313"/><file name="PermissionRequiredException.php" hash="f832cea2f10902ae2ffa4521e13c73d1"/><file name="WebServiceException.php" hash="6882e0d113e22478202f99caf306bde9"/></dir><dir name="WebService"><file name="Client.php" hash="6253acd40102faead6d8750f5467d420"/><dir name="Http"><file name="CurlRequest.php" hash="da8ba5cf09aea35ee6a69c074d70f3f8"/><file name="Request.php" hash="b493bca240735584dd610eadf2372880"/><file name="RequestFactory.php" hash="5c41aa383b7be71773fa2b68c0ad4e6e"/></dir></dir></dir></dir></dir><dir name="maxmind-db"><dir name="reader"><file name="CHANGELOG.md" hash="6e0348104ab013c82482394c0d10322e"/><file name="LICENSE" hash="3b83ef96387f14655fc854ddc3c6bd57"/><file name="README.md" hash="4d6518a9c5916e04e55cd394f0f39424"/><file name="composer.json" hash="0a95937043bf1924fb18f70ba453122a"/><dir name="ext"><file name="config.m4" hash="e6d700d321e152a73797148a486c449d"/><file name="maxminddb.c" hash="0ac67b9330fa433be129f77c2b9622c6"/><file name="php_maxminddb.h" hash="312cbe9b3aa017e727b52d421475b7fa"/><dir name="tests"><file name="001-load.phpt" hash="86ba1adc502540b42cbb1ef2fe5cfd67"/></dir></dir><dir name="src"><dir name="MaxMind"><dir name="Db"><dir name="Reader"><file name="Decoder.php" hash="ac9cc72ca5d65bf0e2bc26254d2e08e6"/><file name="InvalidDatabaseException.php" hash="30a5d8369ea2012e747ac1e59f78c76f"/><file name="Metadata.php" hash="643d939699d39a80c3a8c3adb19ee9e7"/><file name="Util.php" hash="92c382f8642000eef497745ec9bf2e91"/></dir><file name="Reader.php" hash="dd648dd18ea4df0c8ff6eabee28ddf57"/></dir></dir></dir></dir></dir></dir><dir name="Model"><file name="BackendRedirector.php" hash="23201003d6ce909be11f274ff45247eb"/><file name="Notification.php" hash="a62c3b7ff11cd2d1082c0d959d8eb295"/><file name="Observer.php" hash="f95067dfec736812f55b60c7a82db024"/><file name="StoreExtender.php" hash="316db9a49ce8c22edf44648f2fa7baa6"/></dir><dir name="bridge2cart"><file name="bridge.php" hash="cdd197a1af1a05082a8836ea24922dad"/><file name="config.php" hash="0fb8e12c8d9c293354eb4fb96a713608"/><file name="helper.php" hash="afb5e2141259c580285ac85d0c180144"/><file name="preloader.php" hash="8a8ada3537394687defdc28d4b6077e8"/></dir><dir name="controllers"><file name="HelperController.php" hash="73fb01f035db7d75eb1ee0a3d535fd0b"/><file name="IndexController.php" hash="a76fb36d3f6fa4c370b766ed9ba818ed"/></dir><dir name="etc"><file name="adminhtml.xml" hash="07e287503c40ce7c588efe7863c05002"/><file name="config.xml" hash="b77efdfa43556d028ea3e1166c4b1d7f"/><file name="system.xml" hash="cfe59ca34ebfef69b900f4ad275a809a"/></dir><dir name="resources"><dir name="geoip"><file name="COPYRIGHT.txt" hash="37e1c6f4fc26ec1993d127575029c079"/><file name="GeoIP2-Country.mmdb" hash="33a191481c2840aa2ad482d00773d6b5"/><file name="LICENSE.txt" hash="46fce10ea30c7c62dbf39fc979604d68"/></dir></dir></dir></dir></dir></dir></target><target name="magedesign"><dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><dir name="webinterpret"><file name="connector.xml" hash="867fafe49fa978668f6e5d7027c57aa6"/></dir></dir><dir name="template"><dir name="webinterpret"><dir name="system"><dir name="config"><file name="activate.phtml" hash="5ef389ad58cb1be9cc666fecd8379fbf"/><dir name="fieldset"><file name="banner.phtml" hash="921b677bd3e52d9c86172bdf26ab4a37"/><file name="status.phtml" hash="412bd1ea314a7f0c8897e6a9225c3551"/></dir></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><dir name="webinterpret"><file name="connector.xml" hash="1226a298ca08a92008293ba4e8c09eab"/></dir></dir><dir name="template"><dir name="webinterpret"><dir name="connector"><file name="footer.phtml" hash="bd48d0e36dea0936b9f28fbdada3b8c1"/><file name="head.phtml" hash="107312871a7b2730532db8d986de5726"/><file name="product_view.phtml" hash="2036bc444284b99f4cc8228fa4751777"/></dir></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Webinterpret_Connector.xml" hash="087c2742f6bcb89ed6a77921e6493feb"/></dir></target><target name="magelocale"><dir><dir name="de_DE"><file name="Webinterpret_Connector.csv" hash="91312fd3bd2645b88e3b3643b6b614a9"/></dir><dir name="en_US"><file name="Webinterpret_Connector.csv" hash="c382db753974630198cf029cf90b5d27"/></dir></dir></target></contents>
|
16 |
<compatible/>
|
17 |
<dependencies><required><php><min>5.3.2</min><max>7.0.10</max></php></required></dependencies>
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Webinterpret_Connector</name>
|
4 |
+
<version>1.3.1.1</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Integrate Magento with Webinterpret.</summary>
|
10 |
<description>Translate and market your products internationally with Webinterpret. This is the official Magento extension for integrating with Webinterpret.</description>
|
11 |
+
<notes>- Backend redirection status kept in the user session</notes>
|
12 |
<authors><author><name>Webinterpret</name><user>webinterpret</user><email>info@webinterpret.com</email></author></authors>
|
13 |
+
<date>2016-11-03</date>
|
14 |
+
<time>14:40:36</time>
|
15 |
+
<contents><target name="magecommunity"><dir><dir name="Webinterpret"><dir name="Connector"><dir><dir name="Block"><dir name="Adminhtml"><file name="Notifications.php" hash="5e1935e32f1b5d10f0b76fee427a23a6"/><dir name="System"><dir name="Config"><dir name="Fieldset"><file name="Status.php" hash="99b95c7991e91a4d4d98efdaf8007b88"/></dir></dir></dir></dir><file name="Footer.php" hash="160f03e528d7e9411e85d524919fd280"/><file name="Head.php" hash="1261ad40df9f0dc708178d78d63158d8"/><dir name="Product"><file name="View.php" hash="3b3b40108b53d326c0dcff0e45fa8407"/></dir></dir><dir name="Helper"><file name="Data.php" hash="cf4590df1618625cb6f391ea2fa855ba"/></dir><dir name="Lib"><dir name="Webinterpret"><file name="InventoryManagerClient.php" hash="d6acf256009835b2d389ffdb8abe48b8"/><file name="InventoryManagerProductInfo.php" hash="bb57591383e0422f6d053092a1e8820c"/><dir name="Toolkit"><file name="GeoIP.php" hash="04b858256cee73a321e34b1cdd81953f"/></dir></dir><file name="autoload.php" hash="38dfc2154472b80340528faa44a36522"/><dir name="composer"><file name="ClassLoader.php" hash="c67ebce5ff31e99311ceb750202adf2e"/><file name="LICENSE" hash="cfdafe5f67fbcc46c00fcb2f5b80a0cf"/><file name="autoload_classmap.php" hash="8645d3a4e3ad87e7cf4d88a46717aab4"/><file name="autoload_namespaces.php" hash="f7aec47106fe386a4d7710cee304fc7c"/><file name="autoload_psr4.php" hash="a1ee1e33d38bf972aaa8596aed6b9498"/><file name="autoload_real.php" hash="097fc6becad3c938f052e71bc46ab58a"/><dir name="ca-bundle"><file name="LICENSE" hash="783e50a8f248e56536e25b4746d035af"/><file name="README.md" hash="04096c5cd7666bbb481909761dd7d528"/><file name="composer.json" hash="719cc746e830f62c35eb73f694b02881"/><dir name="res"><file name="cacert.pem" hash="dcd698b7138230c1a9b6d04051a4fc83"/></dir><dir name="src"><file name="CaBundle.php" hash="ce2de2d0d2ac7d0035333c47f062f7f3"/></dir></dir><file name="installed.json" hash="309fa5b7f42e66abb184c0d81e0eaca9"/></dir><dir name="geoip2"><dir name="geoip2"><file name="CHANGELOG.md" hash="c93aaf66d68f404db1143ac548e72f69"/><file name="LICENSE" hash="3b83ef96387f14655fc854ddc3c6bd57"/><file name="README.md" hash="99be28bbbbf4e4e4d9ade38af2172c7b"/><file name="composer.json" hash="684eb00e319ab4b9f463712d2ea07ee2"/><dir name="src"><dir name="Compat"><file name="JsonSerializable.php" hash="b328c8968d8f6fd793da9ec8266b7ead"/></dir><dir name="Database"><file name="Reader.php" hash="69128baa625870ba775cdbce95bff033"/></dir><dir name="Exception"><file name="AddressNotFoundException.php" hash="f7b42f2f1952b78482e1cc6ae3e9c92e"/><file name="AuthenticationException.php" hash="a664ef571be82c82fa584545e66ff1fb"/><file name="GeoIp2Exception.php" hash="b14e09b853d258d93f7a0fd50e07b1d3"/><file name="HttpException.php" hash="c8129a00315622f4b2ce282096d41562"/><file name="InvalidRequestException.php" hash="79b7b13a3057e02ad573f01795bad4d3"/><file name="OutOfQueriesException.php" hash="35f4fa482a66d2e424b0f0ca9d19d390"/></dir><dir name="Model"><file name="AbstractModel.php" hash="34ef56e9aa17d1b408bcb5f48652e921"/><file name="AnonymousIp.php" hash="3c241f7efdde4dd769611f725384cc20"/><file name="City.php" hash="05f32089542682ec031911c66f457799"/><file name="ConnectionType.php" hash="202313369fa7d759d0c2f842a707cc42"/><file name="Country.php" hash="75526b5928bde78331e1cbaaf8551c30"/><file name="Domain.php" hash="8dcd1be751d401e66a8d220b0f15dca1"/><file name="Enterprise.php" hash="34fac18339d7cdff0492376a2d6ddaaf"/><file name="Insights.php" hash="1f0131cf93a2a64af5f7b1ae4c7f3a87"/><file name="Isp.php" hash="fbeb9ae86063258f363f6d2ed3e18057"/></dir><file name="ProviderInterface.php" hash="ada7808f8ef411d055c74f8e1e607930"/><dir name="Record"><file name="AbstractPlaceRecord.php" hash="746e0df11901479b60cb5dabf938cced"/><file name="AbstractRecord.php" hash="d821f2fb8a4ebd3c75f78ad82bd7a32c"/><file name="City.php" hash="54a21bf0b8984bea0091ee4e4eea9a5d"/><file name="Continent.php" hash="05ec67b54e6be3287cc3f2e439e1eaf5"/><file name="Country.php" hash="626d0e71d01876f400787be9e51ab628"/><file name="Location.php" hash="7552ff9d0f2a415bfee76f0141ffe9e2"/><file name="MaxMind.php" hash="05a43644700119689bf9940ab480b967"/><file name="Postal.php" hash="63832bd023c1c91a63c55477f14bb671"/><file name="RepresentedCountry.php" hash="9def588dc86e3302178992be480c5592"/><file name="Subdivision.php" hash="95008667190f6465669dbe6314d1e1e8"/><file name="Traits.php" hash="b70cdd26fd9a8b72e4e116c3cfef686a"/></dir><dir name="WebService"><file name="Client.php" hash="43a9140d8c9e6f52ee8369de1a6db5d8"/></dir></dir><file name=".gitmodules" hash="a1da842003e271f63f73319ab5d4e555"/></dir></dir><dir name="kriswallsmith"><dir name="buzz"><file name="CHANGELOG.md" hash="52f99dd3ede5d1ce97bf3b84597d1f69"/><file name="LICENSE" hash="8a10d9e96a9a0925ec7ebcacdd311337"/><file name="README.md" hash="901c8c869022838a7b1d5c355b678f41"/><file name="composer.json" hash="450defd5c92b8f905eb533c7b68775b7"/><dir name="examples"><file name="CookieListener.php" hash="424842bc2eee0b7bebdb9e105afe850f"/><file name="DigestAuthListener.php" hash="c4bfba70ecdd10b34174dbabda70bd38"/></dir><dir name="lib"><dir name="Buzz"><file name="Browser.php" hash="b59c3a87d43f0341ed310543e7dc8555"/><dir name="Client"><file name="AbstractClient.php" hash="f40f342282ce950321ee033e38c0f861"/><file name="AbstractCurl.php" hash="d86e03512358f4e946e623382da97afb"/><file name="AbstractStream.php" hash="f81315ba845a61eb3065eb988e32051d"/><file name="BatchClientInterface.php" hash="3216ee78dd79fab5cf54bcb94ca7cbad"/><file name="ClientInterface.php" hash="0ba9521f57320a50bc912565b45f3324"/><file name="Curl.php" hash="9208ca282da8907429e0c5ffb8a91e91"/><file name="FileGetContents.php" hash="a74d11f3053c37ad3ec74f80bb17df46"/><file name="MultiCurl.php" hash="097a75700f0781016e5b8bfa574af159"/></dir><dir name="Exception"><file name="ClientException.php" hash="2290c9bb236df1415e63ee4b50199524"/><file name="ExceptionInterface.php" hash="887286cc69d88403826f2cde0fb05d6d"/><file name="InvalidArgumentException.php" hash="40bcc515ead31256f723daa920ea970e"/><file name="LogicException.php" hash="1f93d93a6173bc3dc83071928d855a1c"/><file name="RequestException.php" hash="603c99142aa41fb69373c46d0c4d5eff"/><file name="RuntimeException.php" hash="2a5c17331eb1b01dcf82138668f149fb"/></dir><dir name="Listener"><file name="BasicAuthListener.php" hash="a01fae7d3a226d7b4c4a213cf2784ea4"/><file name="CallbackListener.php" hash="2b80a85e1dd5905bab79af7dc851d780"/><file name="CookieListener.php" hash="f2d400cbe1973e0bf2e70d233c71976e"/><file name="DigestAuthListener.php" hash="4205ee1295ae9e6046187b2a05436378"/><dir name="History"><file name="Entry.php" hash="e21f16b7547b4571f8325f8e2d1a0a32"/><file name="Journal.php" hash="4a7382bf0aa15400795dad3bcc0b3a0b"/></dir><file name="HistoryListener.php" hash="c20a2823330ad1c62c1e00d666062feb"/><file name="ListenerChain.php" hash="a19636acd50c32e7f1f3e74f70fa1c04"/><file name="ListenerInterface.php" hash="843663d54fc7362a9ff1aa79a8bc0503"/><file name="LoggerListener.php" hash="a1848cf1541d6c573ac17f216b6113e4"/></dir><dir name="Message"><file name="AbstractMessage.php" hash="d26608e2edb470f57c315005885bb359"/><dir name="Factory"><file name="Factory.php" hash="5cf89875f6796df4df08926b5f1006ad"/><file name="FactoryInterface.php" hash="96293478c30ce7ab5f6c8e1385d839db"/></dir><dir name="Form"><file name="FormRequest.php" hash="cd16d45436dab763aa8026e5adc43e7f"/><file name="FormRequestInterface.php" hash="57147f32a199d34858494aa9e935046e"/><file name="FormUpload.php" hash="5ad3c1fc47ea6d222915944b39bf46b2"/><file name="FormUploadInterface.php" hash="e654b096b82b5a4275489492387f568b"/></dir><file name="MessageInterface.php" hash="bd99826f8e2c9d1a1b0c65a5eb997e9e"/><file name="Request.php" hash="a1342c3ea578ddefa2b120814ba8bf80"/><file name="RequestInterface.php" hash="2b0fe4438cfc90c017389b191c94652b"/><file name="Response.php" hash="f4ffe4a64514548b0beb621a3d9f0089"/></dir><dir name="Util"><file name="Cookie.php" hash="1d42f5324611c19e8a6ea5c2cb6eb9f2"/><file name="CookieJar.php" hash="a3a92e31e139f797445e6be14c32e155"/><file name="Url.php" hash="888ec065b1a992dd2e8062bd7ba9e679"/></dir></dir></dir><file name="phpunit.xml.dist" hash="188b17738bbcd66e1fd408b454243572"/><dir name="test"><dir name="Buzz"><dir name="Test"><file name="BrowserTest.php" hash="e813cb5807345aff24698449f1ae5be9"/><dir name="Client"><file name="AbstractStreamTest.php" hash="e7b47d0fe24b7149c62ac736177d203d"/><file name="ClientTest.php" hash="8a14503e884cdf9b5e833b5206be61a4"/><file name="FunctionalTest.php" hash="0f069b79b734fb2efbde5f276d6ce37a"/></dir><dir name="Listener"><file name="BasicAuthListenerTest.php" hash="ae5c0fd244f7743d81080118b42dc73c"/><file name="CallbackListenerTest.php" hash="07d0e399b18e0cdd69aa66bf62bcbadc"/><file name="DigestAuthListenerTest.php" hash="595dbd612d2f1fde1264f738d1ed2c1e"/><dir name="History"><file name="EntryTest.php" hash="b7c001167cc0131c399e071538a66cb7"/><file name="JournalTest.php" hash="4111eb643fbcb05129dded0067aeefa7"/></dir><file name="HistoryListenerTest.php" hash="9953cad9320b6c78ce477532d454b3af"/><file name="ListenerChainTest.php" hash="ff5b9727f91f7a9da2d322d5a97deddb"/><file name="LoggerListenerTest.php" hash="7e40e0735e7dac71bcd9119c7a3c2e56"/></dir><dir name="Message"><file name="AbstractMessageTest.php" hash="90d531511705842c573b28f4c8fb5d68"/><file name="FactoryTest.php" hash="ced832a48cbc0d9e288136c1ff77d075"/><dir name="Fixtures"><file name="google.png" hash="169e859db7f28a01e1b51e1c9e2d6b2b"/></dir><file name="FormRequestTest.php" hash="a2ffa5131fd015f512b4a27c346d5657"/><file name="FormUploadTest.php" hash="34879f48bef94f8e33da964873cab449"/><file name="RequestTest.php" hash="e317c4e28a35a1aaebb7bec68cfe896c"/><file name="ResponseTest.php" hash="579841f50c45431092ca535aefbd9dc8"/></dir><dir name="Util"><file name="CookieJarTest.php" hash="79ee72e90586bc4be15b609c62b6db40"/><file name="CookieTest.php" hash="52f9472651d7cd7933fe5cf91daff218"/><file name="UrlTest.php" hash="2161e86caf2c229e63be62b555375054"/></dir></dir></dir><dir name="etc"><file name="nginx.conf" hash="db731e2d76cb867039bbc90014ba6476"/><file name="squid.conf" hash="77d3d02b7f2d73d6330a207b579785e7"/></dir><file name="server.php" hash="479689cf2fe15407f6280e83160b0277"/></dir><file name=".gitignore" hash="f7d5a75baf3a1beeb22243dd7ef578bd"/><file name=".travis.yml" hash="1b91a4fa3e3b4cc60d31f5f0eddb7e79"/></dir></dir><dir name="maxmind"><dir name="web-service-common"><file name="CHANGELOG.md" hash="7f2f05525acaaf52f3771f0129676e4a"/><file name="LICENSE" hash="3b83ef96387f14655fc854ddc3c6bd57"/><file name="README.md" hash="37316c741db7f5ae8dc1eaff4a045bd8"/><file name="composer.json" hash="ec42bb19ef5ba2b22192e89f3bd7b1ce"/><dir name="src"><dir name="Exception"><file name="AuthenticationException.php" hash="a1fdcba6decc96345545f4f10287e162"/><file name="HttpException.php" hash="6579aa42001dbe77ca3e8d1e51aac3d2"/><file name="InsufficientFundsException.php" hash="14886d684f1be0b4b28a66f4b22e490f"/><file name="InvalidInputException.php" hash="72dc20089eb4a5cfaccafe6e2b17a36e"/><file name="InvalidRequestException.php" hash="b55c1b8b30715dc40416be8c1ce3bd61"/><file name="IpAddressNotFoundException.php" hash="16313ab0d82195477e1ba071e7696313"/><file name="PermissionRequiredException.php" hash="f832cea2f10902ae2ffa4521e13c73d1"/><file name="WebServiceException.php" hash="6882e0d113e22478202f99caf306bde9"/></dir><dir name="WebService"><file name="Client.php" hash="6253acd40102faead6d8750f5467d420"/><dir name="Http"><file name="CurlRequest.php" hash="da8ba5cf09aea35ee6a69c074d70f3f8"/><file name="Request.php" hash="b493bca240735584dd610eadf2372880"/><file name="RequestFactory.php" hash="5c41aa383b7be71773fa2b68c0ad4e6e"/></dir></dir></dir></dir></dir><dir name="maxmind-db"><dir name="reader"><file name="CHANGELOG.md" hash="6e0348104ab013c82482394c0d10322e"/><file name="LICENSE" hash="3b83ef96387f14655fc854ddc3c6bd57"/><file name="README.md" hash="4d6518a9c5916e04e55cd394f0f39424"/><file name="composer.json" hash="0a95937043bf1924fb18f70ba453122a"/><dir name="ext"><file name="config.m4" hash="e6d700d321e152a73797148a486c449d"/><file name="maxminddb.c" hash="0ac67b9330fa433be129f77c2b9622c6"/><file name="php_maxminddb.h" hash="312cbe9b3aa017e727b52d421475b7fa"/><dir name="tests"><file name="001-load.phpt" hash="86ba1adc502540b42cbb1ef2fe5cfd67"/></dir></dir><dir name="src"><dir name="MaxMind"><dir name="Db"><dir name="Reader"><file name="Decoder.php" hash="ac9cc72ca5d65bf0e2bc26254d2e08e6"/><file name="InvalidDatabaseException.php" hash="30a5d8369ea2012e747ac1e59f78c76f"/><file name="Metadata.php" hash="643d939699d39a80c3a8c3adb19ee9e7"/><file name="Util.php" hash="92c382f8642000eef497745ec9bf2e91"/></dir><file name="Reader.php" hash="dd648dd18ea4df0c8ff6eabee28ddf57"/></dir></dir></dir></dir></dir></dir><dir name="Model"><file name="BackendRedirector.php" hash="76adbcd50fc8b71758428ef57eca6ce6"/><file name="Notification.php" hash="a62c3b7ff11cd2d1082c0d959d8eb295"/><file name="Observer.php" hash="d3973d8acb54217d98d86c2b81fe3d3a"/><file name="StoreExtender.php" hash="316db9a49ce8c22edf44648f2fa7baa6"/></dir><dir name="bridge2cart"><file name="bridge.php" hash="cdd197a1af1a05082a8836ea24922dad"/><file name="config.php" hash="0fb8e12c8d9c293354eb4fb96a713608"/><file name="helper.php" hash="afb5e2141259c580285ac85d0c180144"/><file name="preloader.php" hash="8a8ada3537394687defdc28d4b6077e8"/></dir><dir name="controllers"><file name="HelperController.php" hash="73fb01f035db7d75eb1ee0a3d535fd0b"/><file name="IndexController.php" hash="a76fb36d3f6fa4c370b766ed9ba818ed"/></dir><dir name="etc"><file name="adminhtml.xml" hash="07e287503c40ce7c588efe7863c05002"/><file name="config.xml" hash="6888483e83a492a280fbc6b381c35ec0"/><file name="system.xml" hash="cfe59ca34ebfef69b900f4ad275a809a"/></dir><dir name="resources"><dir name="geoip"><file name="COPYRIGHT.txt" hash="37e1c6f4fc26ec1993d127575029c079"/><file name="GeoIP2-Country.mmdb" hash="33a191481c2840aa2ad482d00773d6b5"/><file name="LICENSE.txt" hash="46fce10ea30c7c62dbf39fc979604d68"/></dir></dir></dir></dir></dir></dir></target><target name="magedesign"><dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><dir name="webinterpret"><file name="connector.xml" hash="867fafe49fa978668f6e5d7027c57aa6"/></dir></dir><dir name="template"><dir name="webinterpret"><dir name="system"><dir name="config"><file name="activate.phtml" hash="5ef389ad58cb1be9cc666fecd8379fbf"/><dir name="fieldset"><file name="banner.phtml" hash="921b677bd3e52d9c86172bdf26ab4a37"/><file name="status.phtml" hash="412bd1ea314a7f0c8897e6a9225c3551"/></dir></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><dir name="webinterpret"><file name="connector.xml" hash="1226a298ca08a92008293ba4e8c09eab"/></dir></dir><dir name="template"><dir name="webinterpret"><dir name="connector"><file name="footer.phtml" hash="bd48d0e36dea0936b9f28fbdada3b8c1"/><file name="head.phtml" hash="107312871a7b2730532db8d986de5726"/><file name="product_view.phtml" hash="2036bc444284b99f4cc8228fa4751777"/></dir></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Webinterpret_Connector.xml" hash="087c2742f6bcb89ed6a77921e6493feb"/></dir></target><target name="magelocale"><dir><dir name="de_DE"><file name="Webinterpret_Connector.csv" hash="91312fd3bd2645b88e3b3643b6b614a9"/></dir><dir name="en_US"><file name="Webinterpret_Connector.csv" hash="c382db753974630198cf029cf90b5d27"/></dir></dir></target></contents>
|
16 |
<compatible/>
|
17 |
<dependencies><required><php><min>5.3.2</min><max>7.0.10</max></php></required></dependencies>
|
18 |
</package>
|