-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgoogle_cse.admin.inc
271 lines (238 loc) · 11.9 KB
/
google_cse.admin.inc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
<?php
/**
* @file
* Admin settings for Google Custom Search Engine.
*/
/**
* Admin settings page for the CSE.
*/
function google_cse_admin_settings() {
$form = array();
$form['google_cse'] = array(
'#title' => t('Google CSE'),
'#type' => 'fieldset',
'#collapsible' => TRUE,
'#collapsed' => FALSE,
);
$form['google_cse']['google_cse_cx'] = array(
'#title' => t('Google Custom Search Engine ID'),
'#type' => 'textfield',
'#default_value' => variable_get('google_cse_cx', ''),
'#description' => t('Enter your <a target="_blank" href="http://www.google.com/cse/manage/all">Google CSE unique ID</a> (click on control panel).'),
);
$form['google_cse']['google_cse_results_tab'] = array(
'#title' => t('Search results tab name'),
'#type' => 'textfield',
'#maxlength' => 50,
'#size' => 60,
'#description' => t('Enter a custom name of the tab where search results are displayed (defaults to %google).', array('%google' => t('Google'))),
'#default_value' => variable_get('google_cse_results_tab', ''),
);
$form['google_cse']['google_cse_results_width'] = array(
'#title' => t('Search results frame width'),
'#type' => 'textfield',
'#maxlength' => 4,
'#size' => 6,
'#description' => t('Enter the desired width, in pixels, of the search frame.'),
'#default_value' => variable_get('google_cse_results_width', 600),
);
$form['google_cse']['google_cse_cof_here'] = array(
'#title' => t('Ad format on this site'),
'#type' => 'radios',
'#default_value' => variable_get('google_cse_cof_here', 'FORID:11'),
'#options' => array(
'FORID:9' => t('Right'),
'FORID:10' => t('Top and right'),
'FORID:11' => t('Top and bottom'),
),
'#description' => t('Ads on the right increase the width of the iframe. Non-profit organizations can disable ads in the Google CSE control panel.'),
);
$form['google_cse']['google_cse_cof_google'] = array(
'#title' => t('Ad format on Google'),
'#type' => 'radios',
'#default_value' => variable_get('google_cse_cof_google', 'FORID:0'),
'#options' => array(
'FORID:0' => t('Right'),
'FORID:1' => t('Top and bottom'),
),
'#description' => t('AdSense ads are also displayed when the CSE links or redirects to Google.'),
);
$form['google_cse']['google_cse_results_gadget'] = array(
'#title' => t('Search results "Add to Google" Google Gadget'),
'#type' => 'checkbox',
'#default_value' => variable_get('google_cse_results_gadget', 1),
'#description' => t('If enabled, an "Add to Google" button will be displayed above the search results.'),
);
$form['google_cse']['google_cse_results_prefix'] = array(
'#title' => t('Search results prefix text'),
'#type' => 'textarea',
'#cols' => 50,
'#rows' => 4,
'#description' => t('Enter text to appear on the search page before the search form.'),
'#default_value' => variable_get('google_cse_results_prefix', ''),
);
$form['google_cse']['google_cse_results_suffix'] = array(
'#title' => t('Search results suffix text'),
'#type' => 'textarea',
'#cols' => 50,
'#rows' => 4,
'#description' => t('Enter text to appear on the search page after the search form and results.'),
'#default_value' => variable_get('google_cse_results_suffix', ''),
);
$form['google_cse']['google_cse_results_searchbox_width'] = array(
'#title' => t('Google CSE block searchbox width'),
'#type' => 'textfield',
'#maxlength' => 4,
'#size' => 6,
'#description' => t('Enter the desired width, in characters, of the searchbox on the Google CSE block.'),
'#default_value' => variable_get('google_cse_results_searchbox_width', 40),
);
$form['google_cse']['google_cse_results_display'] = array(
'#title' => t('Display search results'),
'#type' => 'radios',
'#default_value' => variable_get('google_cse_results_display', 'here'),
'#options' => array(
'here' => t('On this site (requires JavaScript)'),
'google' => t('On Google'),
),
'#description' => t('Search results for the Google CSE block can be displayed on this site, using JavaScript, or on Google, which does not require JavaScript.'),
);
$form['google_cse']['google_cse_results_display_images'] = array(
'#title' => t('Display thumbnail images in the search results'),
'#type' => 'checkbox',
'#description' => t('If set, search result snippets will contain a thumbnail image'),
'#default_value' => variable_get('google_cse_results_display_images', TRUE),
);
$form['google_cse']['sitesearch'] = array(
'#title' => t('SiteSearch settings'),
'#type' => 'fieldset',
'#collapsible' => TRUE,
'#collapsed' => TRUE,
);
$form['google_cse']['sitesearch']['google_cse_sitesearch'] = array(
'#title' => t('SiteSearch domain'),
'#type' => 'textarea',
'#cols' => 50,
'#rows' => 4,
'#description' => t('If set, users will be presented with the option of searching only on the domain(s) specified rather than using the CSE. Enter one domain or URL path followed by a description (e.g. <em>example.com/user Search users</em>) on each line.'),
'#default_value' => variable_get('google_cse_sitesearch', ''),
);
$form['google_cse']['sitesearch']['google_cse_sitesearch_form'] = array(
'#title' => t('SiteSearch form element'),
'#type' => 'radios',
'#options' => array(
'radios' => t('Radio buttons'),
'select' => t('Select'),
),
'#description' => t('Select the type of form element used to present the SiteSearch option(s).'),
'#default_value' => variable_get('google_cse_sitesearch_form', 'radios'),
);
$form['google_cse']['sitesearch']['google_cse_sitesearch_option'] = array(
'#title' => t('CSE search option label'),
'#type' => 'textfield',
'#maxlength' => 50,
'#size' => 60,
'#description' => t('Customize the label for CSE search if SiteSearch is enabled (defaults to %search-web).', array('%search-web' => t('Search the web'))),
'#default_value' => variable_get('google_cse_sitesearch_option', ''),
);
$form['google_cse']['sitesearch']['google_cse_sitesearch_default'] = array(
'#title' => t('Default to using the SiteSearch domain'),
'#type' => 'checkbox',
'#description' => t('If set, searches will default to using the first listed SiteSearch domain rather than the CSE.'),
'#default_value' => variable_get('google_cse_sitesearch_default', 0),
);
$form['google_cse']['advanced'] = array(
'#title' => t('Advanced settings'),
'#type' => 'fieldset',
'#collapsible' => TRUE,
'#collapsed' => TRUE,
);
$form['google_cse']['advanced']['google_cse_domain'] = array(
'#title' => t('Search domain'),
'#type' => 'textfield',
'#maxlength' => 64,
'#description' => t('Enter the Google domain to use for search results, e.g. <em>www.google.com</em>.'),
'#default_value' => variable_get('google_cse_domain', 'www.google.com'),
);
$form['google_cse']['advanced']['google_cse_limit_domain'] = array(
'#title' => t('Limit results to this domain'),
'#type' => 'textfield',
'#maxlength' => 64,
'#description' => t('Enter the domain to limit results on
(only display results for this domain) <em>www.google.com</em>.'),
'#default_value' => variable_get('google_cse_limit_domain', ''),
);
$form['google_cse']['advanced']['google_cse_cr'] = array(
'#title' => t('Country restriction'),
'#type' => 'textfield',
'#default_value' => variable_get('google_cse_cr', ''),
'#description' => t('Enter a 9-letter country code, e.g. <em>countryNZ</em>, and optional boolean operators, to restrict search results to documents (not) originating in particular countries. See the <a target="_blank" href="http://www.google.com/coop/docs/cse/resultsxml.html#crsp"><em>cr</em> parameter</a>.'),
);
$form['google_cse']['advanced']['google_cse_gl'] = array(
'#title' => t('Country boost'),
'#type' => 'textfield',
'#default_value' => variable_get('google_cse_gl', ''),
'#description' => t('Enter a 2-letter country code, e.g. <em>uk</em>, to boost documents written in a particular country. See the <a target="_blank" href="http://www.google.com/coop/docs/cse/resultsxml.html#glsp"><em>gl</em> parameter</a>.'),
);
$form['google_cse']['advanced']['google_cse_hl'] = array(
'#title' => t('Interface language'),
'#type' => 'textfield',
'#default_value' => variable_get('google_cse_hl', ''),
'#description' => t('Enter a supported 2- or 5-character language code, e.g. <em>fr</em>, to set the language of the user interface. See the <a target="_blank" href="http://www.google.com/coop/docs/cse/resultsxml.html#hlsp"><em>hl</em> parameter</a>.'),
);
$form['google_cse']['advanced']['google_cse_locale_hl'] = array(
'#title' => t('Set interface language dynamically'),
'#type' => 'checkbox',
'#default_value' => variable_get('google_cse_locale_hl', ''),
'#description' => t('The language restriction can be set dynamically if the locale module is enabled. Note the locale language code must match one of the <a target="_blank" href="http://www.google.com/coop/docs/cse/resultsxml.html#interfaceLanguages">supported language codes</a>.'),
);
$form['google_cse']['advanced']['google_cse_ie'] = array(
'#title' => t('Input encoding'),
'#type' => 'textfield',
'#default_value' => variable_get('google_cse_ie', ''),
'#description' => t('The default <em>utf-8</em> is recommended. See the <a target="_blank" href="http://www.google.com/coop/docs/cse/resultsxml.html#iesp"><em>ie</em> parameter</a>.'),
);
$form['google_cse']['advanced']['google_cse_lr'] = array(
'#title' => t('Language restriction'),
'#type' => 'textfield',
'#default_value' => variable_get('google_cse_lr', ''),
'#description' => t('Enter a supported 7- or 10-character language code, e.g. <em>lang_en</em>, and optional boolean operators, to restrict search results to documents (not) written in particular languages. See the <a target="_blank" href="http://www.google.com/coop/docs/cse/resultsxml.html#lrsp"><em>lr</em> parameter</a>.'),
);
$form['google_cse']['advanced']['google_cse_locale_lr'] = array(
'#title' => t('Set language restriction dynamically'),
'#type' => 'checkbox',
'#default_value' => variable_get('google_cse_locale_lr', ''),
'#description' => t('The language restriction can be set dynamically if the locale module is enabled. Note the locale language code must match one of the <a target="_blank" href="http://www.google.com/coop/docs/cse/resultsxml.html#languageCollections">supported language codes</a>.'),
);
$form['google_cse']['advanced']['google_cse_oe'] = array(
'#title' => t('Output encoding'),
'#type' => 'textfield',
'#default_value' => variable_get('google_cse_oe', ''),
'#description' => t('The default <em>utf-8</em> is recommended. See the <a target="_blank" href="http://www.google.com/coop/docs/cse/resultsxml.html#oesp"><em>oe</em> parameter</a>.'),
);
$form['google_cse']['advanced']['google_cse_safe'] = array(
'#title' => t('SafeSearch filter'),
'#type' => 'select',
'#options' => array(
'' => '',
'off' => t('Off'),
'medium' => t('Medium'),
'high' => t('High'),
),
'#default_value' => variable_get('google_cse_safe', ''),
'#description' => t('SafeSearch filters search results for adult content. See the <a target="_blank" href="http://www.google.com/coop/docs/cse/resultsxml.html#safesp"><em>safe</em> parameter</a>.'),
);
$form['google_cse_adv'] = array(
'#title' => t('Google CSE Advanced'),
'#type' => 'fieldset',
'#collapsible' => TRUE,
'#collapsed' => FALSE,
);
$form['google_cse_adv']['google_cse_use_adv'] = array(
'#title' => t('Use advanced, non-adds version, search engine (You will need a pay account)'),
'#type' => 'checkbox',
'#default_value' => variable_get('google_cse_use_adv', 0),
'#description' => t('If enabled, search results will be fetch using Adv engine.'),
);
return $form;
}