https://github.com/neurocracy/drupal-omnipedia-search
Provides search-related functionality for Omnipedia.
https://github.com/neurocracy/drupal-omnipedia-search
drupal drupal-module php
Last synced: 3 months ago
JSON representation
Provides search-related functionality for Omnipedia.
- Host: GitHub
- URL: https://github.com/neurocracy/drupal-omnipedia-search
- Owner: neurocracy
- License: gpl-3.0
- Created: 2022-06-04T01:03:56.000Z (about 4 years ago)
- Default Branch: 4.x
- Last Pushed: 2026-02-04T20:34:00.000Z (6 months ago)
- Last Synced: 2026-02-05T08:37:30.701Z (6 months ago)
- Topics: drupal, drupal-module, php
- Language: PHP
- Homepage: https://gitlab.com/neurocracy/omnipedia/modules/omnipedia-search
- Size: 89.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
- License: license.md
Awesome Lists containing this project
README
This contains the source files for the "*Omnipedia - Search*" Drupal module,
which provides search-related functionality for
[Omnipedia](https://omnipedia.app/).
⚠️ ***[Why open source? / Spoiler warning](https://omnipedia.app/open-source)***
*Please note that [all development and issue tracking is done on
GitLab](https://gitlab.com/neurocracy/omnipedia/modules/omnipedia-search).*
----
# Description
This contains a cache context, [Search
API](https://www.drupal.org/project/search_api) processor plug-ins, a service to
determine if the current route is a wiki search route, and some configuration
that defines our Search API index and server, along with the View that displays
search results.
----
# Requirements
* [Drupal 10.5 or 11.2](https://www.drupal.org/download)
* PHP 8.2
* [Composer](https://getcomposer.org/)
## Drupal dependencies
Before attempting to install this, you must add the Composer repositories as
described in the installation instructions for these dependencies:
* The [`omnipedia_content`](https://gitlab.com/neurocracy/omnipedia/modules/omnipedia-content), [`omnipedia_core`](https://gitlab.com/neurocracy/omnipedia/modules/omnipedia-core), [`omnipedia_date`](https://gitlab.com/neurocracy/omnipedia/modules/omnipedia-date), and [`omnipedia_main_page`](https://gitlab.com/neurocracy/omnipedia/modules/omnipedia-main-page) modules.
----
# Installation
## Composer
### Set up
Ensure that you have your Drupal installation set up with the correct Composer
installer types such as those provided by [the `drupal/recommended-project`
template](https://www.drupal.org/docs/develop/using-composer/starting-a-site-using-drupal-composer-project-templates#s-drupalrecommended-project).
If you're starting from scratch, simply requiring that template and following
[the Drupal.org Composer
documentation](https://www.drupal.org/docs/develop/using-composer/starting-a-site-using-drupal-composer-project-templates)
should get you up and running.
### Repository
In your root `composer.json`, add the following to the `"repositories"` section:
```json
{
"type": "vcs",
"url": "https://gitlab.com/neurocracy/omnipedia/modules/omnipedia-search.git",
"only": ["drupal/omnipedia_search"]
}
```
### Patching
This module provides [one or more patches](#patches). These can be applied automatically by the the [`cweagans/composer-patches`](https://github.com/cweagans/composer-patches) Composer plug-in. If you're not already using it in your project, you need to install it:
```shell
composer require 'cweagans/composer-patches:^1.7 || ^2.0'
```
If you're using the 1.x version of the plug-in, you'll also need to run:
```shell
composer config extra.enable-patching true
composer config --json --merge extra.patchLevel '{"drupal/core": "-p2"}'
```
Note that you should remove these once you upgrade to `cweagans/composer-patches:^2.0` as 2.0 no longer uses that configuration.
### Installing
Once you've completed all of the above, run `composer require
"drupal/omnipedia_search:^4.0@dev"` in the root of your project to have
Composer install this and its required dependencies for you.
----
# Patches
The following patches are supplied (see [Patching](#patching) above):
* [Search API module](https://www.drupal.org/project/search_api):
* [How to change input type from "text" to "search" [#3214236]](https://www.drupal.org/project/search_api/issues/3214236)
----
# Major breaking changes
The following major version bumps indicate breaking changes:
* 4.x - Requires Drupal 9.5 or [Drupal 10](https://www.drupal.org/project/drupal/releases/10.0.0).