File tree Expand file tree Collapse file tree 2 files changed +25
-2
lines changed Expand file tree Collapse file tree 2 files changed +25
-2
lines changed Original file line number Diff line number Diff line change @@ -1715,6 +1715,15 @@ public function isQueueIndexerEnabled(): bool
1715
1715
*/
1716
1716
public const LEGACY_USE_VIRTUAL_REPLICA_ENABLED = 'algoliasearch_instant/instant/use_virtual_replica ' ;
1717
1717
1718
+ // --- Indexing Manager --- //
1719
+
1720
+ /**
1721
+ * @deprecated This constant has been renamed to be more meaningful and to avoid confusion with "backend rendering" statements
1722
+ * @see \Algolia\AlgoliaSearch\Helper\ConfigHelper::ENABLE_INDEXING
1723
+ */
1724
+ public const ENABLE_BACKEND = self ::ENABLE_INDEXING ;
1725
+
1726
+
1718
1727
// --- Autocomplete --- //
1719
1728
1720
1729
/**
@@ -2035,4 +2044,17 @@ public function hidePaginationInInstantSearchPage($storeId = null)
2035
2044
{
2036
2045
return $ this ->instantSearchConfig ->shouldHidePagination ($ storeId );
2037
2046
}
2047
+
2048
+ // --- Indexing Manager --- //
2049
+
2050
+ /**
2051
+ * @param $storeId
2052
+ * @return bool
2053
+ * @deprecated This method has been renamed to be more meaningful and to avoid confusion with "backend rendering" statements
2054
+ * @see \Algolia\AlgoliaSearch\Helper\ConfigHelper::isIndexingEnabled()
2055
+ */
2056
+ public function isEnabledBackend ($ storeId = null )
2057
+ {
2058
+ return $ this ->isIndexingEnabled ($ storeId );
2059
+ }
2038
2060
}
Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ require(
39
39
pageWarning += '</div>' ;
40
40
41
41
let pageWarningSynonyms = '<div class="algolia_dashboard_warning algolia_dashboard_warning_page">' ;
42
+ pageWarningSynonyms += '<p>Configurations related to indexing have been moved to the "Indexing Manager" section.</p>' ;
42
43
pageWarningSynonyms += '<p>Configurations related to Synonyms have been removed from the Magento dashboard. We advise you to configure synonyms from the Algolia dashboard.</p>' ;
43
44
pageWarningSynonyms += '</div>' ;
44
45
@@ -69,7 +70,7 @@ require(
69
70
const searchableSelect = $ ( 'select[name="groups[instant_facets][fields][facets][value][' + rowId + '][searchable]"]' ) ;
70
71
71
72
searchableSelect . on ( 'change' , function ( ) {
72
- configQrFromSearchableSelect ( $ ( this ) ) ;
73
+ configQrFromSearchableSelect ( $ ( this ) ) ;
73
74
} ) ;
74
75
75
76
configQrFromSearchableSelect ( searchableSelect ) ;
@@ -93,4 +94,4 @@ require(
93
94
}
94
95
95
96
}
96
- ) ;
97
+ ) ;
You can’t perform that action at this time.
0 commit comments