Version Notes
Any questions or concerns, please email cs@tagalys.com and we will get back to you in less than 24 hours.
Download this release
Release Info
Developer | Aaditya |
Extension | Personalized-localized-and-Intelligent-Site-Search |
Version | 1.0.9 |
Comparing to | |
See all releases |
Code changes from version 1.0.8 to 1.0.9
- app/code/local/Tagalys/Core/Block/Adminhtml/Tagalys/Edit/Tab/Debug.php +87 -0
- app/code/local/Tagalys/Core/Block/Adminhtml/Tagalys/Edit/Tab/Sync.php +0 -19
- app/code/local/Tagalys/Core/Block/Adminhtml/Tagalys/Edit/Tabs.php +7 -0
- app/code/local/Tagalys/Core/Model/Observer.php +4 -2
- app/code/local/Tagalys/Sync/Model/Client.php +1 -0
- app/code/local/Tagalys/Sync/controllers/Adminhtml/TagalysController.php +8 -1
- app/code/local/Tagalys/Sync/etc/config.xml +2 -2
- app/code/local/Tagalys/Tsearch/Model/Catalog/Layer/Filter/Category.php +2 -1
- package.xml +3 -3
app/code/local/Tagalys/Core/Block/Adminhtml/Tagalys/Edit/Tab/Debug.php
ADDED
@@ -0,0 +1,87 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class Tagalys_Core_Block_Adminhtml_Tagalys_Edit_Tab_Debug extends Mage_Adminhtml_Block_Widget_Form
|
4 |
+
implements Mage_Adminhtml_Block_Widget_Tab_Interface {
|
5 |
+
|
6 |
+
public function __construct() {
|
7 |
+
parent::__construct();
|
8 |
+
}
|
9 |
+
|
10 |
+
|
11 |
+
protected function _prepareForm() {
|
12 |
+
|
13 |
+
/** @var $form Varien_Data_Form */
|
14 |
+
$form = Mage::getModel('varien/data_form', array(
|
15 |
+
'id' => 'edit_form',
|
16 |
+
'action' => $this->getUrl('*/tagalys', array('_current' => true)),
|
17 |
+
'method' => 'post'
|
18 |
+
));
|
19 |
+
|
20 |
+
$form->setHtmlIdPrefix('admin_');
|
21 |
+
$htmlIdPrefix = $form->getHtmlIdPrefix();
|
22 |
+
|
23 |
+
|
24 |
+
$debug_fieldset = $form->addFieldset('debug_fieldset', array('legend' => $this->__('Manual Product Resync')));
|
25 |
+
|
26 |
+
|
27 |
+
$debug_fieldset->addField('note_resync', 'note', array(
|
28 |
+
'text' => $this->__('Do not manually sync the catalog unless you face any issues with normal setup. This is not a part of regular setup, please do this with guidance from the tagalys team (cs@tagalys.com)'),
|
29 |
+
));
|
30 |
+
|
31 |
+
$debug_fieldset->addField('submit_resync', 'submit', array(
|
32 |
+
'name' => 'submit_resync',
|
33 |
+
'value' => 'Manual Catalog Resync',
|
34 |
+
'class'=> "tagalys-btn",
|
35 |
+
'tabindex' => 1
|
36 |
+
));
|
37 |
+
|
38 |
+
$debug_fieldset = $form->addFieldset('debug_fieldset1', array('legend' => $this->__('Manual Configuration Resync')));
|
39 |
+
|
40 |
+
|
41 |
+
$debug_fieldset->addField('note_reconfig', 'note', array(
|
42 |
+
'text' => $this->__('Do not manually sync the Configuration unless you face any issues with normal setup. This is not a part of regular setup, please do this with guidance from the tagalys team (cs@tagalys.com)'),
|
43 |
+
));
|
44 |
+
|
45 |
+
$debug_fieldset->addField('submit_reconfig', 'submit', array(
|
46 |
+
'name' => 'submit_reconfig',
|
47 |
+
'value' => 'Manual Configuration Update',
|
48 |
+
'class'=> "tagalys-btn",
|
49 |
+
'tabindex' => 1
|
50 |
+
));
|
51 |
+
|
52 |
+
$this->setForm($form);
|
53 |
+
return parent::_prepareForm();
|
54 |
+
}
|
55 |
+
|
56 |
+
|
57 |
+
public function getTabLabel() {
|
58 |
+
return $this->__('Settings');
|
59 |
+
}
|
60 |
+
|
61 |
+
/**
|
62 |
+
* Tab title getter
|
63 |
+
*
|
64 |
+
* @return string
|
65 |
+
*/
|
66 |
+
public function getTabTitle() {
|
67 |
+
return $this->__('Settings');
|
68 |
+
}
|
69 |
+
|
70 |
+
/**
|
71 |
+
* Check if tab can be shown
|
72 |
+
*
|
73 |
+
* @return bool
|
74 |
+
*/
|
75 |
+
public function canShowTab() {
|
76 |
+
return true;
|
77 |
+
}
|
78 |
+
|
79 |
+
/**
|
80 |
+
* Check if tab hidden
|
81 |
+
*
|
82 |
+
* @return bool
|
83 |
+
*/
|
84 |
+
public function isHidden() {
|
85 |
+
return false;
|
86 |
+
}
|
87 |
+
}
|
app/code/local/Tagalys/Core/Block/Adminhtml/Tagalys/Edit/Tab/Sync.php
CHANGED
@@ -102,25 +102,6 @@ implements Mage_Adminhtml_Block_Widget_Tab_Interface {
|
|
102 |
'tabindex' => 1
|
103 |
));
|
104 |
|
105 |
-
$welcome_fieldset = $form->addFieldset('welcome_fieldset', array('legend' => $this->__('Manual Resync')));
|
106 |
-
|
107 |
-
|
108 |
-
$welcome_fieldset->addField('note_resync', 'note', array(
|
109 |
-
'text' => $this->__('Do not manually sync the catalog unless you face any issues with normal setup. This is not a part of regular setup, please do this with guidance from the tagalys team (cs@tagalys.com)'),
|
110 |
-
));
|
111 |
-
|
112 |
-
$welcome_fieldset->addField('submit', 'submit', array(
|
113 |
-
'name' => 'submit_resync',
|
114 |
-
'value' => 'Trigger Manual Resync',
|
115 |
-
'class'=> "tagalys-btn",
|
116 |
-
'tabindex' => 1
|
117 |
-
));
|
118 |
-
|
119 |
-
$this->setChild('form_after', $this->getLayout()->createBlock('adminhtml/widget_form_element_dependence')
|
120 |
-
->addFieldMap("{$htmlIdPrefix}sync_level", 'sync_level')
|
121 |
-
->addFieldMap("{$htmlIdPrefix}note_advanced", 'note_advanced')
|
122 |
-
->addFieldDependence('note_advanced', 'sync_level', 'advanced')
|
123 |
-
);
|
124 |
|
125 |
$this->setForm($form);
|
126 |
return parent::_prepareForm();
|
102 |
'tabindex' => 1
|
103 |
));
|
104 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
105 |
|
106 |
$this->setForm($form);
|
107 |
return parent::_prepareForm();
|
app/code/local/Tagalys/Core/Block/Adminhtml/Tagalys/Edit/Tabs.php
CHANGED
@@ -86,6 +86,13 @@ class Tagalys_Core_Block_Adminhtml_Tagalys_Edit_Tabs extends Mage_Adminhtml_Bloc
|
|
86 |
));
|
87 |
}
|
88 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
89 |
|
90 |
return parent::_prepareLayout();
|
91 |
}
|
86 |
));
|
87 |
}
|
88 |
|
89 |
+
if($stores_setup) {
|
90 |
+
$this->addTab('tagalys_debug', array(
|
91 |
+
'label' => $this->__('Trouble Shooting'),
|
92 |
+
'content' => $this->getLayout()->createBlock('tagalys_core/adminhtml_tagalys_edit_tab_debug')
|
93 |
+
->toHtml()
|
94 |
+
));
|
95 |
+
}
|
96 |
|
97 |
return parent::_prepareLayout();
|
98 |
}
|
app/code/local/Tagalys/Core/Model/Observer.php
CHANGED
@@ -7,6 +7,7 @@ class Tagalys_Core_Model_Observer extends Varien_Object
|
|
7 |
if(!Mage::helper('tagalys_core')->getTagalysConfig("is_tsearchsuggestion_active")) {
|
8 |
return false;
|
9 |
}
|
|
|
10 |
$tagalys_config_events = array('adminhtml_catalog_product_attribute_delete','adminhtml_catalog_product_attribute_save', 'adminhtml_system_currency_saveRates','adminhtml_system_currencysymbol_save');
|
11 |
if(in_array ($observer->getEvent()->getControllerAction()->getFullActionName(), $tagalys_config_events))
|
12 |
{
|
@@ -14,10 +15,11 @@ class Tagalys_Core_Model_Observer extends Varien_Object
|
|
14 |
}
|
15 |
if(in_array ($observer->getEvent()->getControllerAction()->getFullActionName(), array("adminhtml_catalog_category_save")))
|
16 |
{
|
17 |
-
|
|
|
18 |
$this->updateCategory($catid);
|
19 |
}
|
20 |
-
if($
|
21 |
Mage::dispatchEvent("tagalys_custom_config_event", array('request' => $observer->getControllerAction()->getRequest()));
|
22 |
}
|
23 |
}
|
7 |
if(!Mage::helper('tagalys_core')->getTagalysConfig("is_tsearchsuggestion_active")) {
|
8 |
return false;
|
9 |
}
|
10 |
+
$params = $observer->getEvent()->getControllerAction()->getRequest()->getParams();
|
11 |
$tagalys_config_events = array('adminhtml_catalog_product_attribute_delete','adminhtml_catalog_product_attribute_save', 'adminhtml_system_currency_saveRates','adminhtml_system_currencysymbol_save');
|
12 |
if(in_array ($observer->getEvent()->getControllerAction()->getFullActionName(), $tagalys_config_events))
|
13 |
{
|
15 |
}
|
16 |
if(in_array ($observer->getEvent()->getControllerAction()->getFullActionName(), array("adminhtml_catalog_category_save")))
|
17 |
{
|
18 |
+
|
19 |
+
$catid = $params["id"];
|
20 |
$this->updateCategory($catid);
|
21 |
}
|
22 |
+
if($params["section"] == "currency") {
|
23 |
Mage::dispatchEvent("tagalys_custom_config_event", array('request' => $observer->getControllerAction()->getRequest()));
|
24 |
}
|
25 |
}
|
app/code/local/Tagalys/Sync/Model/Client.php
CHANGED
@@ -115,6 +115,7 @@ class Tagalys_Sync_Model_Client extends Mage_Core_Model_Abstract
|
|
115 |
$result = curl_exec($agent);
|
116 |
$info = curl_getinfo($agent);
|
117 |
|
|
|
118 |
if(curl_errno($agent)) {
|
119 |
$this->_error = true;
|
120 |
} else {
|
115 |
$result = curl_exec($agent);
|
116 |
$info = curl_getinfo($agent);
|
117 |
|
118 |
+
|
119 |
if(curl_errno($agent)) {
|
120 |
$this->_error = true;
|
121 |
} else {
|
app/code/local/Tagalys/Sync/controllers/Adminhtml/TagalysController.php
CHANGED
@@ -16,6 +16,7 @@ class Tagalys_Sync_Adminhtml_TagalysController extends Mage_Adminhtml_Controller
|
|
16 |
|
17 |
public function saveAction() {
|
18 |
|
|
|
19 |
$output = $this->getRequest()->getParams();
|
20 |
|
21 |
$this->_helper = Mage::helper('tagalys_core');
|
@@ -79,9 +80,15 @@ class Tagalys_Sync_Adminhtml_TagalysController extends Mage_Adminhtml_Controller
|
|
79 |
$response = Mage::helper("sync/tagalysFeedFactory")->createProductFeed($key,true);;
|
80 |
}
|
81 |
}
|
|
|
|
|
|
|
|
|
82 |
if(Mage::helper('tagalys_core')->getTagalysConfig("is_tsearchsuggestions_active") || Mage::helper('tagalys_core')->getTagalysConfig("is_tsearch_active"))
|
83 |
Mage::getSingleton('core/session')->addSuccess("Your preference has been saved.");
|
84 |
-
|
|
|
|
|
85 |
return $this->_redirect('*/tagalys');
|
86 |
}
|
87 |
|
16 |
|
17 |
public function saveAction() {
|
18 |
|
19 |
+
|
20 |
$output = $this->getRequest()->getParams();
|
21 |
|
22 |
$this->_helper = Mage::helper('tagalys_core');
|
80 |
$response = Mage::helper("sync/tagalysFeedFactory")->createProductFeed($key,true);;
|
81 |
}
|
82 |
}
|
83 |
+
if(!empty($output["submit_reconfig"])) {
|
84 |
+
Mage::dispatchEvent('tagalys_client_config', array('object'=>$output));
|
85 |
+
}
|
86 |
+
if(empty($output["submit_resync"]) && empty($output["submit_reconfig"])) {
|
87 |
if(Mage::helper('tagalys_core')->getTagalysConfig("is_tsearchsuggestions_active") || Mage::helper('tagalys_core')->getTagalysConfig("is_tsearch_active"))
|
88 |
Mage::getSingleton('core/session')->addSuccess("Your preference has been saved.");
|
89 |
+
} else {
|
90 |
+
Mage::getSingleton('core/session')->addSuccess($output["submit_resync"] ? $output["submit_resync"]." Success." : $output["submit_reconfig"]. " Success.");
|
91 |
+
}
|
92 |
return $this->_redirect('*/tagalys');
|
93 |
}
|
94 |
|
app/code/local/Tagalys/Sync/etc/config.xml
CHANGED
@@ -8,8 +8,8 @@
|
|
8 |
<client_config>/v1/configuration</client_config>
|
9 |
<sync_feed_progress>/v1/products/sync_feed_progress</sync_feed_progress>
|
10 |
<api_auth>/v1/identification/check</api_auth>
|
11 |
-
<installed_plugin>Search
|
12 |
-
<plugin_to_be_activated>tsearchsuggestion</plugin_to_be_activated>
|
13 |
</endpoint>
|
14 |
</tagalys_endpoint>
|
15 |
</default>
|
8 |
<client_config>/v1/configuration</client_config>
|
9 |
<sync_feed_progress>/v1/products/sync_feed_progress</sync_feed_progress>
|
10 |
<api_auth>/v1/identification/check</api_auth>
|
11 |
+
<installed_plugin>Search</installed_plugin>
|
12 |
+
<plugin_to_be_activated>tsearchsuggestion,tsearch</plugin_to_be_activated>
|
13 |
</endpoint>
|
14 |
</tagalys_endpoint>
|
15 |
</default>
|
app/code/local/Tagalys/Tsearch/Model/Catalog/Layer/Filter/Category.php
CHANGED
@@ -55,7 +55,8 @@ class Tagalys_Tsearch_Model_Catalog_Layer_Filter_Category extends Mage_Catalog_M
|
|
55 |
$data = $this->getLayer()->getAggregator()->getCacheData($key);
|
56 |
|
57 |
if ($data === null) {
|
58 |
-
$
|
|
|
59 |
foreach ($tagalys as $filters) {
|
60 |
if($filters["id"] == "__categories"){
|
61 |
$tagalys_categories = $filters;
|
55 |
$data = $this->getLayer()->getAggregator()->getCacheData($key);
|
56 |
|
57 |
if ($data === null) {
|
58 |
+
$data = Mage::helper('tsearch')->getTagalysSearchData();
|
59 |
+
$tagalys = $data["filters"];
|
60 |
foreach ($tagalys as $filters) {
|
61 |
if($filters["id"] == "__categories"){
|
62 |
$tagalys_categories = $filters;
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Personalized-localized-and-Intelligent-Site-Search</name>
|
4 |
-
<version>1.0.
|
5 |
<stability>stable</stability>
|
6 |
<license>Tagalys</license>
|
7 |
<channel>community</channel>
|
@@ -11,8 +11,8 @@
|
|
11 |
<notes>Any questions or concerns, please email cs@tagalys.com and we will get back to you in less than 24 hours. </notes>
|
12 |
<authors><author><name>Aaditya</name><user>Aaditya</user><email>antony@tagalys.com</email></author></authors>
|
13 |
<date>2017-02-07</date>
|
14 |
-
<time>
|
15 |
-
<contents><target name="magelocal"><dir><dir name="Tagalys"><dir name="SearchSuggestions"><dir name="Block"><dir name="Catalog"><dir name="Layer"><dir name="Filter"><file name="Attribute.php" hash="4a1d6c59a119e36f06a9227b4a648f77"/><file name="Category.php" hash="322d606ca40b6c7a976ec09f5080281a"/></dir></dir><file name="Layer.php" hash="4e72f2b2b8788ba0dce51aa38575e313"/></dir></dir><dir name="Helper"><file name="Data.php" hash="fa1f09a28bb0d3772a4aeb29af8c575b"/></dir><dir name="Model"><dir name="Catalog"><dir name="Layer"><dir name="Filter"><file name="Attribute.php" hash="897b2f76ab974edea9e4dffa176662f7"/><file name="Category.php" hash="c2c91bcd957559e5b4cb0c0ad9268a7f"/></dir></dir></dir></dir><dir name="controllers"><file name="AutoSuggestController.php" hash="8ef45554e5cc780b7e9f020cd19e28c5"/></dir><dir name="etc"><file name="config.xml" hash="854e13ce3dad489f9da4ae63cadf7512"/></dir></dir><dir name="Core"><dir name="Block"><dir name="Adminhtml"><dir name="Tagalys"><dir name="Edit"><file name="Form.php" hash="f03082a193308464a70ddb12929f6445"/><dir name="Tab"><file name="Credentials.php" hash="ed600b42a2fe12222ef352a9a6b0dbd7"/><file name="Setup.php" hash="8a5b190544b9e26e7d29716b8e3946dd"/><file name="Signup.php" hash="db50f6b1f8fe7c10eba8996adaab5b46"/><file name="Sync.php" hash="
|
16 |
<compatible/>
|
17 |
<dependencies><required><php><min>5.3.0</min><max>5.6.0</max></php></required></dependencies>
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Personalized-localized-and-Intelligent-Site-Search</name>
|
4 |
+
<version>1.0.9</version>
|
5 |
<stability>stable</stability>
|
6 |
<license>Tagalys</license>
|
7 |
<channel>community</channel>
|
11 |
<notes>Any questions or concerns, please email cs@tagalys.com and we will get back to you in less than 24 hours. </notes>
|
12 |
<authors><author><name>Aaditya</name><user>Aaditya</user><email>antony@tagalys.com</email></author></authors>
|
13 |
<date>2017-02-07</date>
|
14 |
+
<time>11:38:11</time>
|
15 |
+
<contents><target name="magelocal"><dir><dir name="Tagalys"><dir name="SearchSuggestions"><dir name="Block"><dir name="Catalog"><dir name="Layer"><dir name="Filter"><file name="Attribute.php" hash="4a1d6c59a119e36f06a9227b4a648f77"/><file name="Category.php" hash="322d606ca40b6c7a976ec09f5080281a"/></dir></dir><file name="Layer.php" hash="4e72f2b2b8788ba0dce51aa38575e313"/></dir></dir><dir name="Helper"><file name="Data.php" hash="fa1f09a28bb0d3772a4aeb29af8c575b"/></dir><dir name="Model"><dir name="Catalog"><dir name="Layer"><dir name="Filter"><file name="Attribute.php" hash="897b2f76ab974edea9e4dffa176662f7"/><file name="Category.php" hash="c2c91bcd957559e5b4cb0c0ad9268a7f"/></dir></dir></dir></dir><dir name="controllers"><file name="AutoSuggestController.php" hash="8ef45554e5cc780b7e9f020cd19e28c5"/></dir><dir name="etc"><file name="config.xml" hash="854e13ce3dad489f9da4ae63cadf7512"/></dir></dir><dir name="Core"><dir name="Block"><dir name="Adminhtml"><dir name="Tagalys"><dir name="Edit"><file name="Form.php" hash="f03082a193308464a70ddb12929f6445"/><dir name="Tab"><file name="Credentials.php" hash="ed600b42a2fe12222ef352a9a6b0dbd7"/><file name="Debug.php" hash="300e99069b08e1c7f4ec3d3a7c056ae2"/><file name="Setup.php" hash="8a5b190544b9e26e7d29716b8e3946dd"/><file name="Signup.php" hash="db50f6b1f8fe7c10eba8996adaab5b46"/><file name="Sync.php" hash="df41344ec4ec924ccc34ad3e8b93c8f2"/><file name="Tsearch.php" hash="0f8d06abb0058aa63bb7619d96b54986"/><file name="Tsearchsuggestion.php" hash="66ba155f8119a448ee2c2fdb6e5777d5"/></dir><file name="Tabs.php" hash="8a9099c0a9d8881b4526d42b24943383"/></dir><file name="Edit.php" hash="b6ed0a6d60ed8437013316ea2bf4ae8c"/><file name="Notifications.php" hash="a8a462e420cffb43dcc9a3501114e01b"/><file name="Progress.php" hash="9de974b3672b91e25f5062d6d76c350d"/><file name="SearchReady.php" hash="9e58736e1eb8cba32ee0b84b19ee7b6c"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="0a045aa8949d1f1d6b4c299cf2f5579e"/></dir><dir name="Model"><file name="Config.php" hash="6b1fc527b6ee9b6386669d91ada6c0cb"/><dir name="Mysql4"><dir name="Config"><file name="Collection.php" hash="ea729baf00ac3f73ea70eb36cf182699"/></dir><file name="Config.php" hash="f96196b73e2e9bd2ceaf4b6ba8befb1a"/></dir><file name="Observer.php" hash="c3619b4cd7264290bc7f1a34e293ac18"/></dir><dir name="etc"><file name="adminhtml.xml" hash="7be928fd40cff7dda724457e84736624"/><file name="config.xml" hash="7b26e95fe97248975edd7f2c1c75cb80"/></dir><dir name="sql"><dir name="tagalys_core_setup"><file name="mysql4-install-0.2.0.php" hash="50451682b52f41e0e5a2b656b4ed222f"/></dir></dir></dir><dir name="Sync"><dir name="Helper"><file name="Data.php" hash="f6dbd08edafe1f615818e8ea73d412fd"/><file name="Inventory.php" hash="61a553020607ff202ddb6ea32593cc36"/><file name="Service.php" hash="84cc6f7415e416225c3740c8d20521c1"/><file name="TagalysFeedFactory.php" hash="eda6643eaf3840321c57a48db8eb5a51"/></dir><dir name="Model"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Backend"><dir name="Tagalys"><file name="Cron.php" hash="497ea5cee9239e97275b87743a4341a8"/></dir></dir></dir></dir></dir><file name="Client.php" hash="8040286126ba95b02b6fe52f98668657"/><dir name="Dataflow"><dir name="Convert"><dir name="Adapter"><file name="Io.php" hash="e1796293468adb1340d6336fd37e4a43"/></dir></dir></dir><dir name="Mysql4"><dir name="Queue"><file name="Collection.php" hash="d0228354a318338e31d85e25960b9f5c"/></dir><file name="Queue.php" hash="8c192d482dbbaa48c703f00ef5cf1a73"/></dir><file name="Observer.php" hash="2642389de90e5d5092a12bd9f1f58a20"/><file name="ProductDetails.php" hash="a0c8b3dbc03baa1c3b9f9fa1878c8b81"/><file name="Queue.php" hash="c48db47089e3ca175017c409768aefe5"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="ImportController.php" hash="3e0e0d36cb252768a7ccbb823d404752"/><dir name="System"><dir name="Convert"><file name="GuiController.php" hash="0a7755e0004a1db8c3fbfdfee717cdcc"/></dir></dir><file name="TagalysController.php" hash="75b22f6cf00e1d0c55af420d0ea430ce"/></dir><file name="FeedController.php" hash="056d76af4b612dc94e235df80a79c58d"/></dir><dir name="etc"><file name="config.xml" hash="48f053d6fb3be974951a2f88f73b84c1"/><file name="wsdl.xml" hash="1479803fedcad805ae6420f0eff141ad"/></dir><dir name="sql"><dir name="sync_setup"><file name="mysql4-install-0.1.0.php" hash="756c821858436db88487a3b121531d0e"/><file name="mysql4-install-0.2.0.php" hash="756c821858436db88487a3b121531d0e"/><file name="mysql4-upgrade-0.1.0-0.2.0.php" hash="1e1fdc5770389a9123a3079e354ad822"/></dir></dir></dir><dir name="PopularSearches"><dir name="Model"><file name="Observer.php" hash="a7d598941b2073bda8cf2eb1f03b0e6c"/></dir><dir name="etc"><file name="config.xml" hash="4089d29d49ff24d49446c8fed7c153b5"/></dir></dir><dir name="Tsearch"><dir name="Block"><dir name="Catalog"><dir name="Layer"><dir name="Filter"><file name="Attribute.php" hash="8d0f3d1786e1350dd3b050dac907f382"/><file name="Category.php" hash="084bd8b9a22699c867902f774eeb7f72"/><file name="Price.php" hash="2db28591e437f65cd52506906ee96663"/></dir><file name="State.php" hash="8dadc65a747943cb9973747495d3a090"/><file name="View.php" hash="28966b74d8cf4d2dd79155c546d4aa51"/></dir><dir name="Product"><dir name="List"><file name="Toolbar.php" hash="00a3f570914bc92fc738a8a2b63168f9"/></dir><file name="List.php" hash="360faadf31bc8a3606f789f634ea101b"/></dir></dir><dir name="Catalogsearch"><dir name="Layer"><dir name="Filter"><file name="Attribute.php" hash="3a858ada3f75cf0aa8c327d27daa616b"/></dir><file name="View.php" hash="28c09e321dc22fdbb03b48f057e8ae1b"/></dir><file name="Layer.php" hash="576c376ec352ce14e7f10c7e77fb8b59"/><file name="Result.php" hash="382a1f850d62de8e86617f149244db93"/></dir></dir><dir name="Helper"><file name="Data.php" hash="ae9d36b28b1eb921153d4207be3304a9"/></dir><dir name="Model"><dir name="Catalog"><dir name="Layer"><dir name="Filter"><file name="Attribute.php" hash="1d239626f555c4215a07edea9e3322de"/><file name="Category.php" hash="0dfb591ee8a64759177aa93bc2ffbed7"/><file name="Price.php" hash="f7d04011027bd796736a1238d76c56c1"/></dir></dir><file name="Layer.php" hash="5d005f705e43fc61ce548da82b22a3df"/><dir name="Product"><file name="List.php" hash="8bd460c476e4630149c7e11cb8f50a9c"/></dir></dir><dir name="Catalogsearch"><file name="Layer.php" hash="b32c1e8c132ba771bd0e0490ed97c853"/></dir><dir name="Client"><file name="Connector.php" hash="96107c6d1925cf6391d90a0c81b89f67"/></dir><file name="Engine.php" hash="3a6470c95fa7f51b5719d4734c208acc"/><file name="Observer.php" hash="eb77033417011509be021fba2028d018"/><dir name="Resource"><dir name="Catalog"><dir name="Product"><file name="Collection.php" hash="a0bcbb601025bc0af84ee3c11ef6e531"/><file name="testCollection.php" hash="a0bcbb601025bc0af84ee3c11ef6e531"/></dir></dir></dir></dir><dir name="etc"><file name="config.xml" hash="b5dc2fe2c23975efad00a1aeb15f0888"/></dir></dir></dir></dir></target><target name="magedesign"><dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><dir name="tagalys"><file name="ss.xml" hash="9d62ce5a9ae20f67f8f6b5baa8c5a2b6"/></dir></dir><dir name="template"><dir name="tagalys"><file name="tagalys_ss.phtml" hash="522f06677f0188c9a425a2401eb1ec11"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="Tagalys_core.xml" hash="6385afae91af7bada73792120c378e65"/></dir><dir name="template"><dir name="tagalys"><file name="progressbar.phtml" hash="a54e328030c9f430a6022697f1431388"/></dir></dir></dir></dir></dir></dir></target><target name="mageskin"><dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="css"><file name="tagalys-core.css" hash="8d9ea54b6b1602cda702b4c55b4943a1"/></dir><dir name="images"><file name="logo-tagalys.png" hash="6b9eeda985cf02bfa23eeddcc64e422b"/></dir></dir></dir></dir></dir></target><target name="mage"><dir><dir name="js"><dir name="tagalys"><file name="tagalys-core.js" hash="09bba056df414ead8c8aea26a1fb8ed8"/></dir></dir></dir></target><target name="mageetc"><dir><dir name="modules"><file name="Tagalys_SearchSuggestions.xml" hash="0b256e54d7f0344f70c4c4efd0473b61"/><file name="Tagalys_Tsearch.xml" hash="8986598b80306698d18983ef9a2926f9"/></dir></dir></target></contents>
|
16 |
<compatible/>
|
17 |
<dependencies><required><php><min>5.3.0</min><max>5.6.0</max></php></required></dependencies>
|
18 |
</package>
|