Version Notes
* Installation error fix
Download this release
Release Info
Developer | Adar |
Extension | autocompleteplus_autosuggest |
Version | 3.0.0.3 |
Comparing to | |
See all releases |
Code changes from version 3.0.0.2 to 3.0.0.3
app/code/local/Autocompleteplus/Autosuggest/Model/Config.php
CHANGED
@@ -214,33 +214,38 @@ class Autocompleteplus_Autosuggest_Model_Config extends Mage_Core_Model_Abstract
|
|
214 |
/**
|
215 |
* Generate Config for AutocompletePlus.
|
216 |
*
|
217 |
-
* @param
|
|
|
218 |
*
|
219 |
* @return $this
|
220 |
*
|
221 |
* @throws Zend_Http_Client_Exception
|
222 |
*/
|
223 |
-
public function generateConfig($UUID =
|
224 |
{
|
|
|
225 |
$client = new Varien_Http_Client();
|
226 |
$fileIo = new Varien_Io_File();
|
227 |
$fileIo->open(array('path' => Mage::getBaseDir()));
|
228 |
$robotsTxtContent = $fileIo->read('robots.txt');
|
|
|
229 |
$config = array(
|
230 |
'adapter' => 'Zend_Http_Client_Adapter_Curl',
|
231 |
'curloptions' => array(
|
232 |
CURLOPT_RETURNTRANSFER => 1,
|
233 |
),
|
234 |
);
|
|
|
235 |
$params = array(
|
236 |
-
'site'
|
237 |
-
'email'
|
238 |
-
'f'
|
239 |
'multistore' => $this->_getHelper()->getMultiStoreDataJson(),
|
240 |
);
|
241 |
|
242 |
-
if ($UUID) {
|
243 |
$params['uuid'] = $UUID;
|
|
|
244 |
}
|
245 |
|
246 |
$client->setUri($this->getEndpoint().'/install')
|
@@ -256,7 +261,6 @@ class Autocompleteplus_Autosuggest_Model_Config extends Mage_Core_Model_Abstract
|
|
256 |
$responseData = json_decode($response->getBody(), true);
|
257 |
|
258 |
/*
|
259 |
-
* Validate uuid is less than 50 characters - why?
|
260 |
* Validate uuid exists
|
261 |
*/
|
262 |
if (isset($responseData['uuid']) && strlen($responseData['uuid']) > 50) {
|
214 |
/**
|
215 |
* Generate Config for AutocompletePlus.
|
216 |
*
|
217 |
+
* @param string $UUID
|
218 |
+
* @param string $key
|
219 |
*
|
220 |
* @return $this
|
221 |
*
|
222 |
* @throws Zend_Http_Client_Exception
|
223 |
*/
|
224 |
+
public function generateConfig($UUID = null, $key = null)
|
225 |
{
|
226 |
+
|
227 |
$client = new Varien_Http_Client();
|
228 |
$fileIo = new Varien_Io_File();
|
229 |
$fileIo->open(array('path' => Mage::getBaseDir()));
|
230 |
$robotsTxtContent = $fileIo->read('robots.txt');
|
231 |
+
|
232 |
$config = array(
|
233 |
'adapter' => 'Zend_Http_Client_Adapter_Curl',
|
234 |
'curloptions' => array(
|
235 |
CURLOPT_RETURNTRANSFER => 1,
|
236 |
),
|
237 |
);
|
238 |
+
|
239 |
$params = array(
|
240 |
+
'site' => $this->_getHelper()->getConfigDataByFullPath('web/unsecure/base_url'),
|
241 |
+
'email' => Mage::getStoreConfig(self::XML_STORE_EMAIL_CONFIG),
|
242 |
+
'f' => $this->_getHelper()->getVersion(),
|
243 |
'multistore' => $this->_getHelper()->getMultiStoreDataJson(),
|
244 |
);
|
245 |
|
246 |
+
if ($UUID && $key) {
|
247 |
$params['uuid'] = $UUID;
|
248 |
+
$params['key'] = $key;
|
249 |
}
|
250 |
|
251 |
$client->setUri($this->getEndpoint().'/install')
|
261 |
$responseData = json_decode($response->getBody(), true);
|
262 |
|
263 |
/*
|
|
|
264 |
* Validate uuid exists
|
265 |
*/
|
266 |
if (isset($responseData['uuid']) && strlen($responseData['uuid']) > 50) {
|
app/code/local/Autocompleteplus/Autosuggest/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Autocompleteplus_Autosuggest>
|
5 |
-
<version>3.0.0.
|
6 |
<url>http://autocompleteplus.com/</url>
|
7 |
<modulename>Autocompleteplus_Autosuggest</modulename>
|
8 |
</Autocompleteplus_Autosuggest>
|
@@ -198,7 +198,7 @@
|
|
198 |
<imagefield>thumbnail</imagefield>
|
199 |
<attributes>1</attributes>
|
200 |
<layered>0</layered>
|
201 |
-
<api_endpoint><![CDATA[
|
202 |
</config>
|
203 |
</autocompleteplus>
|
204 |
</default>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Autocompleteplus_Autosuggest>
|
5 |
+
<version>3.0.0.3</version>
|
6 |
<url>http://autocompleteplus.com/</url>
|
7 |
<modulename>Autocompleteplus_Autosuggest</modulename>
|
8 |
</Autocompleteplus_Autosuggest>
|
198 |
<imagefield>thumbnail</imagefield>
|
199 |
<attributes>1</attributes>
|
200 |
<layered>0</layered>
|
201 |
+
<api_endpoint><![CDATA[https://magento.instantsearchplus.com]]></api_endpoint>
|
202 |
</config>
|
203 |
</autocompleteplus>
|
204 |
</default>
|
app/code/local/Autocompleteplus/Autosuggest/sql/autosuggest_setup/mysql4-upgrade-2.0.8.8-3.0.0.0.php
CHANGED
@@ -8,12 +8,12 @@ $installer->startSetup();
|
|
8 |
if ($installer->getConnection()->isTableExists($installer->getTable('autocompleteplus_autosuggest/config'))) {
|
9 |
$select = $installer->getConnection()->select()
|
10 |
->from(array('config' => $installer->getTable('autocompleteplus_autosuggest/config')));
|
11 |
-
$row = $installer->getConnection()->
|
12 |
$installer->getConnection()->dropTable($installer->getTable('autocompleteplus_autosuggest/config'));
|
13 |
}
|
14 |
|
15 |
-
if ($row) {
|
16 |
-
$config->generateConfig($row['licensekey']);
|
17 |
} else {
|
18 |
$config->generateConfig();
|
19 |
}
|
8 |
if ($installer->getConnection()->isTableExists($installer->getTable('autocompleteplus_autosuggest/config'))) {
|
9 |
$select = $installer->getConnection()->select()
|
10 |
->from(array('config' => $installer->getTable('autocompleteplus_autosuggest/config')));
|
11 |
+
$row = $installer->getConnection()->fetchAll($select);
|
12 |
$installer->getConnection()->dropTable($installer->getTable('autocompleteplus_autosuggest/config'));
|
13 |
}
|
14 |
|
15 |
+
if ($row && isset($row[0]['licensekey']) && isset($row[0]['authkey'])) {
|
16 |
+
$config->generateConfig($row[0]['licensekey'], $row[0]['authkey']);
|
17 |
} else {
|
18 |
$config->generateConfig();
|
19 |
}
|
package.xml
CHANGED
@@ -1,23 +1,19 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>autocompleteplus_autosuggest</name>
|
4 |
-
<version>3.0.0.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.autocompleteplus.com/privacy">AC+</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>AutoComplete+ InstantSearch</summary>
|
10 |
<description>AutoComplete+ InstantSearch triples visitor conversion, optimizes search, and offers promotions through state-of-the-art contextual suggestions dropdown. Since suggestions are lightning fast, accurate, and contextual - visitors find exactly what they want - faster.</description>
|
11 |
-
<notes>*
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
<authors><author><name>Adar Greenshpon</name><user>Adar</user><email>magento@autocompleteplus.com</email></author><author><name>Phillip Jackson</name><user>philwinkle</user><email>philwinkle@gmail.com</email></author><author><name>Daniel Kenney</name><user>DKenney</user><email>j.kenney.daniel@gmail.com</email></author></authors>
|
18 |
-
<date>2016-02-17</date>
|
19 |
-
<time>20:24:27</time>
|
20 |
-
<contents><target name="magelocal"><dir name="Autocompleteplus"><dir name="Autosuggest"><dir name="Adminhtml"><dir name="Model"><file name="Attributes.php" hash="5e480167310365ad57785ef2a2da39be"/><file name="Button.php" hash="ad2429ce8a2c172237e41faef5fce322"/></dir></dir><dir name="Block"><dir name="Adminhtml"><file name="Button.php" hash="262987c852813741a2562fe927054469"/><file name="Process.php" hash="30f02cc873ac8d6eaeaaeca5c3d328e5"/><file name="Sync.php" hash="3c668febd558dd7c2db75c314378e0d5"/></dir><file name="Autocomplete.php" hash="cc694575438fe43fc086b89f2d4826c9"/><file name="Autocorrection.php" hash="6676f140f9da260f52e59478e1af2b47"/><file name="Inject.php" hash="bc001de5e9d27bc1e41b8df80d482117"/><file name="Notifications.php" hash="3ab60946b756f093585a708185d98909"/></dir><dir name="Controller"><file name="Abstract.php" hash="84b311dbc24ca94ee7f1af655430f8ea"/></dir><dir name="Helper"><file name="Data.php" hash="882586ede4d095d2e7e2a221610855cc"/></dir><dir name="Model"><dir name="Adminhtml"><file name="Attributes.php" hash="8f8581590b3b2eee69704aa1715dfdd4"/></dir><dir name="Api"><file name="V2.php" hash="f764e775bf087dad35a0351ff2c04539"/></dir><file name="Api.php" hash="298fcc3db05af5fad34375457b5001d4"/><file name="Batches.php" hash="bfa0c53ff502dbb99f120a8ac7626819"/><file name="Catalog.php" hash="bad373d41075e12b37dcf63e10b93f30"/><file name="Catalogreport.php" hash="110c05b050cffb2fec71973e36440702"/><file name="Checksum.php" hash="37550b6bd6d934f1ad2ef581dfa10eea"/><file name="Config.php" hash="9aaf3c3059a626de78ca7bce035b66a3"/><file name="Layer.php" hash="82538541fb58038dd308fc584454d0bd"/><file name="Notifications.php" hash="7f4037e171c63de662370aeceaeed1d6"/><file name="Observer.php" hash="216a02f7cc87e5f84d0806e48897a03d"/><file name="Pusher.php" hash="518825e11c9d8fd0b91ac78f6916c40b"/><dir name="Resource"><dir name="Batches"><file name="Collection.php" hash="5d3f333f7383f040654cfb402a089823"/></dir><file name="Batches.php" hash="c5c012179db3636e503f48d0a6de59d5"/><dir name="Checksum"><file name="Collection.php" hash="4c2c32f787763cef11ae9bf175c8813f"/></dir><file name="Checksum.php" hash="5e2d0ece6ea043e517a0c777fc165de4"/><dir name="Fulltext"><file name="Collection.php" hash="5096155efa1f4973f702778673c62507"/></dir><dir name="Notifications"><file name="Collection.php" hash="d7ef7e0ee228b48238b727de349a61b0"/></dir><file name="Notifications.php" hash="f4f1111bd0144c7bcc62ae456d7b36be"/><dir name="Pusher"><file name="Collection.php" hash="8f15379bc010d2a25bf01a8ed3f10fbb"/></dir><file name="Pusher.php" hash="e25a14c317dfe3ae1134f3afc654e8d3"/></dir><file name="Service.php" hash="1bfa0efd3d0652562fd7e9f90130558f"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Autocompleteplus"><file name="PushController.php" hash="c708e07e9b5ae23b4d27c5df0c04cc7f"/><file name="RedirectController.php" hash="8361d1e5922d75763eb82cd916480fb1"/></dir></dir><dir name="CatalogSearch"><file name="ResultController.php" hash="8d2c03b7849b7dbeeb9a08cfa37e63ea"/></dir><file name="CatalogsearchController.php" hash="e534d0933da8a0a1deb4b0618cea5665"/><file name="CategoriesController.php" hash="2222f02aa99ac14c465143462e581270"/><file name="LayeredController.php" hash="dad342dfc566c45bdf77554fa4268882"/><file name="ProductsController.php" hash="4fc00fe17c3455e7d4bb84fa4d3bc949"/><file name="ProductsbyidController.php" hash="4829c9ddf535c1a4abf2302e37beeabc"/><file name="ResultController.php" hash="182f65ce4ccdf154aa0326512ec37140"/><file name="SearchesController.php" hash="7a4e94bb9456b4ac6b48c30b0cd389db"/></dir><dir name="etc"><file name="adminhtml.xml" hash="34b9d24ddc4565311f6cc83d7e337478"/><file name="api.xml" hash="25ab859fc8312c4aa308f2e3306c6b66"/><file name="cache.xml" hash="b57472bc9410d67af3843825fba5b420"/><file name="config.xml" hash="72c4315eb5a6f7e12b830299c1a0f71a"/><file name="system.xml" hash="6bed22fbdfc336254126cf4a8c49aa09"/><file name="wsdl.xml" hash="97b1503c710c79376cd85e7f971c1587"/></dir><dir name="sql"><dir name="autosuggest_setup"><file name="mysql4-install-2.0.1.1.php" hash="c891e1836f3df18eba24821371c85bfa"/><file name="mysql4-upgrade-2.0.1.3-2.0.2.2.php" hash="ddc7001e761dce3b4970f3d4adac2aa3"/><file name="mysql4-upgrade-2.0.2.5-2.0.2.6.php" hash="ea94264608685c51f008382d42d499fd"/><file name="mysql4-upgrade-2.0.4.6-2.0.4.7.php" hash="8166f765780956ea87bbe62b9f709f46"/><file name="mysql4-upgrade-2.0.5.4-2.0.5.5.php" hash="00b8f4401d59f42359baec70ef2de8bb"/><file name="mysql4-upgrade-2.0.5.6-2.0.5.7.php" hash="b40aa51ca00369caa28a0030dc2490e7"/><file name="mysql4-upgrade-2.0.7.0-2.0.7.1.php" hash="3837250beee18106d0f043493dde3382"/><file name="mysql4-upgrade-2.0.7.2-2.0.7.3.php" hash="f858517837a97200e3b5c36339a0b200"/><file name="mysql4-upgrade-2.0.8.8-3.0.0.0.php" hash="6dc213bc5cfb643cbd5b0a2c2c017fdc"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Autocompleteplus_Autosuggest.xml" hash="530931765807be8a21baa5e070bc4bc2"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="autocompleteplus.xml" hash="3998429f613fcc7842b7ea31cb423ec8"/></dir><dir name="template"><dir name="autocompleteplus"><dir name="catalog"><dir name="layer"><file name="view.phtml" hash="57066d2ac5fa051c15c3ed8bb43b5d08"/></dir><dir name="product"><file name="list.phtml" hash="c269d5b27302efb51cefb86a71027a0d"/></dir></dir><file name="inject.phtml" hash="e1e8e050631fe65417edb7a8f25155c8"/><file name="process.phtml" hash="2bb8f334e6d1d64c9042c10d55ac5155"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="autocompleteplus"><file name="notifications.phtml" hash="c1d08659e65020dcb9e62cf8bc28f73b"/><dir name="system"><dir name="config"><file name="button.phtml" hash="3adf3f3f4ab989cf643f2fc49719b59d"/><file name="sync.phtml" hash="e0392aac8584e98ef4260419750e1cbb"/></dir></dir></dir></dir><dir name="layout"><file name="autocompleteplus.xml" hash="939f8a52905dfef7b81a0f4552042376"/></dir></dir></dir></dir></target></contents>
|
21 |
<compatible/>
|
22 |
-
<dependencies><required><php><min>5.
|
23 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>autocompleteplus_autosuggest</name>
|
4 |
+
<version>3.0.0.3</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.autocompleteplus.com/privacy">AC+</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>AutoComplete+ InstantSearch</summary>
|
10 |
<description>AutoComplete+ InstantSearch triples visitor conversion, optimizes search, and offers promotions through state-of-the-art contextual suggestions dropdown. Since suggestions are lightning fast, accurate, and contextual - visitors find exactly what they want - faster.</description>
|
11 |
+
<notes>* Installation error fix
|
12 |
+
</notes>
|
13 |
+
<authors><author><name>Adar</name><user>Adar</user><email>magento@autocompleteplus.com</email></author></authors>
|
14 |
+
<date>2016-02-22</date>
|
15 |
+
<time>10:03:50</time>
|
16 |
+
<contents><target name="magelocal"><dir name="Autocompleteplus"><dir name="Autosuggest"><dir name="Adminhtml"><dir name="Model"><file name="Attributes.php" hash="5e480167310365ad57785ef2a2da39be"/><file name="Button.php" hash="ad2429ce8a2c172237e41faef5fce322"/></dir></dir><dir name="Block"><dir name="Adminhtml"><file name="Button.php" hash="262987c852813741a2562fe927054469"/><file name="Process.php" hash="30f02cc873ac8d6eaeaaeca5c3d328e5"/><file name="Sync.php" hash="3c668febd558dd7c2db75c314378e0d5"/></dir><file name="Autocomplete.php" hash="cc694575438fe43fc086b89f2d4826c9"/><file name="Autocorrection.php" hash="6676f140f9da260f52e59478e1af2b47"/><file name="Inject.php" hash="bc001de5e9d27bc1e41b8df80d482117"/><file name="Notifications.php" hash="3ab60946b756f093585a708185d98909"/></dir><dir name="Controller"><file name="Abstract.php" hash="84b311dbc24ca94ee7f1af655430f8ea"/></dir><dir name="Helper"><file name="Data.php" hash="882586ede4d095d2e7e2a221610855cc"/></dir><dir name="Model"><dir name="Adminhtml"><file name="Attributes.php" hash="8f8581590b3b2eee69704aa1715dfdd4"/></dir><dir name="Api"><file name="V2.php" hash="f764e775bf087dad35a0351ff2c04539"/></dir><file name="Api.php" hash="298fcc3db05af5fad34375457b5001d4"/><file name="Batches.php" hash="bfa0c53ff502dbb99f120a8ac7626819"/><file name="Catalog.php" hash="bad373d41075e12b37dcf63e10b93f30"/><file name="Catalogreport.php" hash="110c05b050cffb2fec71973e36440702"/><file name="Checksum.php" hash="37550b6bd6d934f1ad2ef581dfa10eea"/><file name="Config.php" hash="1888720e06f3f9ff73715c068f068747"/><file name="Layer.php" hash="82538541fb58038dd308fc584454d0bd"/><file name="Notifications.php" hash="7f4037e171c63de662370aeceaeed1d6"/><file name="Observer.php" hash="216a02f7cc87e5f84d0806e48897a03d"/><file name="Pusher.php" hash="518825e11c9d8fd0b91ac78f6916c40b"/><dir name="Resource"><dir name="Batches"><file name="Collection.php" hash="5d3f333f7383f040654cfb402a089823"/></dir><file name="Batches.php" hash="c5c012179db3636e503f48d0a6de59d5"/><dir name="Checksum"><file name="Collection.php" hash="4c2c32f787763cef11ae9bf175c8813f"/></dir><file name="Checksum.php" hash="5e2d0ece6ea043e517a0c777fc165de4"/><dir name="Fulltext"><file name="Collection.php" hash="5096155efa1f4973f702778673c62507"/></dir><dir name="Notifications"><file name="Collection.php" hash="d7ef7e0ee228b48238b727de349a61b0"/></dir><file name="Notifications.php" hash="f4f1111bd0144c7bcc62ae456d7b36be"/><dir name="Pusher"><file name="Collection.php" hash="8f15379bc010d2a25bf01a8ed3f10fbb"/></dir><file name="Pusher.php" hash="e25a14c317dfe3ae1134f3afc654e8d3"/></dir><file name="Service.php" hash="1bfa0efd3d0652562fd7e9f90130558f"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Autocompleteplus"><file name="PushController.php" hash="c708e07e9b5ae23b4d27c5df0c04cc7f"/><file name="RedirectController.php" hash="8361d1e5922d75763eb82cd916480fb1"/></dir></dir><dir name="CatalogSearch"><file name="ResultController.php" hash="8d2c03b7849b7dbeeb9a08cfa37e63ea"/></dir><file name="CatalogsearchController.php" hash="e534d0933da8a0a1deb4b0618cea5665"/><file name="CategoriesController.php" hash="2222f02aa99ac14c465143462e581270"/><file name="LayeredController.php" hash="dad342dfc566c45bdf77554fa4268882"/><file name="ProductsController.php" hash="4fc00fe17c3455e7d4bb84fa4d3bc949"/><file name="ProductsbyidController.php" hash="4829c9ddf535c1a4abf2302e37beeabc"/><file name="ResultController.php" hash="182f65ce4ccdf154aa0326512ec37140"/><file name="SearchesController.php" hash="7a4e94bb9456b4ac6b48c30b0cd389db"/></dir><dir name="etc"><file name="adminhtml.xml" hash="34b9d24ddc4565311f6cc83d7e337478"/><file name="api.xml" hash="25ab859fc8312c4aa308f2e3306c6b66"/><file name="cache.xml" hash="b57472bc9410d67af3843825fba5b420"/><file name="config.xml" hash="5a412927c815a7b09088695dc22c7fad"/><file name="system.xml" hash="6bed22fbdfc336254126cf4a8c49aa09"/><file name="wsdl.xml" hash="97b1503c710c79376cd85e7f971c1587"/></dir><dir name="sql"><dir name="autosuggest_setup"><file name="mysql4-install-2.0.1.1.php" hash="c891e1836f3df18eba24821371c85bfa"/><file name="mysql4-upgrade-2.0.1.3-2.0.2.2.php" hash="ddc7001e761dce3b4970f3d4adac2aa3"/><file name="mysql4-upgrade-2.0.2.5-2.0.2.6.php" hash="ea94264608685c51f008382d42d499fd"/><file name="mysql4-upgrade-2.0.4.6-2.0.4.7.php" hash="8166f765780956ea87bbe62b9f709f46"/><file name="mysql4-upgrade-2.0.5.4-2.0.5.5.php" hash="00b8f4401d59f42359baec70ef2de8bb"/><file name="mysql4-upgrade-2.0.5.6-2.0.5.7.php" hash="b40aa51ca00369caa28a0030dc2490e7"/><file name="mysql4-upgrade-2.0.7.0-2.0.7.1.php" hash="3837250beee18106d0f043493dde3382"/><file name="mysql4-upgrade-2.0.7.2-2.0.7.3.php" hash="f858517837a97200e3b5c36339a0b200"/><file name="mysql4-upgrade-2.0.8.8-3.0.0.0.php" hash="bc1082a892dd8c222f2fc73917a8f6e3"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Autocompleteplus_Autosuggest.xml" hash="530931765807be8a21baa5e070bc4bc2"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="autocompleteplus.xml" hash="3998429f613fcc7842b7ea31cb423ec8"/></dir><dir name="template"><dir name="autocompleteplus"><dir name="catalog"><dir name="layer"><file name="view.phtml" hash="57066d2ac5fa051c15c3ed8bb43b5d08"/></dir><dir name="product"><file name="list.phtml" hash="c269d5b27302efb51cefb86a71027a0d"/></dir></dir><file name="inject.phtml" hash="e1e8e050631fe65417edb7a8f25155c8"/><file name="process.phtml" hash="2bb8f334e6d1d64c9042c10d55ac5155"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="autocompleteplus"><file name="notifications.phtml" hash="c1d08659e65020dcb9e62cf8bc28f73b"/><dir name="system"><dir name="config"><file name="button.phtml" hash="3adf3f3f4ab989cf643f2fc49719b59d"/><file name="sync.phtml" hash="e0392aac8584e98ef4260419750e1cbb"/></dir></dir></dir></dir><dir name="layout"><file name="autocompleteplus.xml" hash="939f8a52905dfef7b81a0f4552042376"/></dir></dir></dir></dir></target></contents>
|
|
|
|
|
|
|
|
|
17 |
<compatible/>
|
18 |
+
<dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
|
19 |
</package>
|