5
5
*/
6
6
class Algolia_Algoliasearch_Block_System_Config_Form_Field_Facets extends Algolia_Algoliasearch_Block_System_Config_Form_Field_AbstractField
7
7
{
8
+ protected $ _isQueryRulesDisabled ;
9
+
8
10
public function __construct ()
9
11
{
10
12
$ this ->settings = array (
@@ -52,10 +54,11 @@ public function __construct()
52
54
'create_rule ' => array (
53
55
'label ' => 'Create Query rule? ' ,
54
56
'options ' => array (
55
- '1 ' => 'Yes ' ,
56
- '2 ' => 'No '
57
+ '2 ' => 'No ' ,
58
+ '1 ' => 'Yes '
57
59
),
58
60
'rowMethod ' => 'getCreateRule ' ,
61
+ 'disabled ' => $ this ->isQueryRulesDisabled ()
59
62
),
60
63
),
61
64
'buttonLabel ' => 'Add Facet ' ,
@@ -64,4 +67,41 @@ public function __construct()
64
67
65
68
parent ::__construct ();
66
69
}
70
+
71
+ /**
72
+ * @return bool
73
+ */
74
+ public function isQueryRulesDisabled ()
75
+ {
76
+ if (is_null ($ this ->_isQueryRulesDisabled )) {
77
+ $ this ->_isQueryRulesDisabled = $ this ->_disableQueryRules ();
78
+ }
79
+
80
+ return $ this ->_isQueryRulesDisabled ;
81
+ }
82
+
83
+ /**
84
+ * @return bool
85
+ */
86
+ protected function _disableQueryRules ()
87
+ {
88
+ $ proxyHelper = Mage::helper ('algoliasearch/proxyHelper ' );
89
+ $ info = $ proxyHelper ->getClientConfigurationData ();
90
+
91
+ return !isset ($ info ['query_rules ' ]) || $ info ['query_rules ' ] == 0 ;
92
+ }
93
+
94
+ protected function _decorateRowHtml ($ element , $ html )
95
+ {
96
+ if (!$ this ->isQueryRulesDisabled ()) {
97
+ return parent ::_decorateRowHtml ($ element , $ html );
98
+ }
99
+
100
+ $ additionalRow = '<tr class="algoliasearch-messages"><td></td><td><div class="algoliasearch-config-info icon-stars"> ' ;
101
+ $ additionalRow .= $ this ->__ ('To get access to this Algolia feature, please consider <a href="%s" target="_blank">upgrading to a higher plan.</a> ' ,
102
+ 'https://www.algolia.com/pricing/ ' );
103
+ $ additionalRow .= '</div></td></tr> ' ;
104
+
105
+ return '<tr id="row_ ' . $ element ->getHtmlId () . '"> ' . $ html . '</tr> ' . $ additionalRow ;
106
+ }
67
107
}
0 commit comments