![]() Release status: stable |
|
---|---|
Implementation | Search |
Description | Adds to or replaces Special:Search results with Google CSE results |
Author(s) | Ryan Finnie (Fo0bartalk) |
Maintainer(s) | Sophivorus |
Latest version | 3.1 (2022-09-23) |
MediaWiki | 1.32+ |
PHP | 7.0+ |
License | GNU General Public License 2.0 or later |
Download | Download extension Git [?]: |
Example | appropedia.org search result |
Parameters
|
|
Hooks used
|
|
Quarterly downloads | 18 (Ranked 152nd) |
Translate the GoogleSiteSearch extension if it is available at translatewiki.net | |
The GoogleSiteSearch extension allows you to add Google Custom Search Engine (CSE) results to "Special:Search" additionally to MediaWiki search results, or optionally, replace them altogether.
Installation
- Go to the Google CSE management page and add a custom search engine. Note down the "Search engine unique ID". It should be in the format
numbers:letters
. - Download and place the file(s) in a directory called
GoogleSiteSearch
in yourextensions/
folder. - Add the following code at the bottom of your LocalSettings.php
wfLoadExtension( 'GoogleSiteSearch' ); $wgGoogleSiteSearchCSEID = 'YOUR_CSE_ID';
file: - Configure as required.
Done – Navigate to Special:Version on your wiki to verify that the extension is successfully installed.
Configuration
The following configuration parameters are available:
$wgGoogleSiteSearchCSEID
- The ID of the created Google custom search engine. Required.
$wgGoogleSiteSearchOnly
- Whether to replace the the MediaWiki search results. If
true
, only the CSE search results are shown. If false, the CSE results are shown above the MediaWiki results. Optional, defaults tofalse
. $wgGoogleSiteSearchAppend
- Whether to append rather than prepend the Google search results. Defaults to
false
. Note that under some circumstances, for example when there're too many or no search results, the relevant hook may not fire and Google search results will not be appended. $wgGoogleSiteSearchAttributes
- An array of optional Custom Search element attributes. For example, to make links open in a new window/tab:
$wgGoogleSiteSearchAttributes = [ 'linkTarget' => '_blank' ];
In addition, the HTML built by the extension is customizable via the "GoogleSiteSearchHTML" hook. For example:
$wgHooks['GoogleSiteSearchHTML'][] = function ( $specialSearch, $term, &$html ) {
$html .= '<p>Example append</p>';
};
See also
- Extension:GoogleCustomWikiSearch - Offers similar functionality
This article is issued from Mediawiki. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.