diff --git a/README.md b/README.md index 71eb6c5..dd430af 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,7 @@ - [Installation](#installation) - [Configuration](#configuration) - [Configuring Solr](#configuring-solr) +- [Lucene Search (New)](#lucene-search) - [Configure Collection Search](#configure-collection-search) - [Configure Views](#configure-views) - [Exposed Form](#exposed-form) @@ -15,6 +16,7 @@ - [Include / Exclude Facets](#include--exclude-facets) - [Configure Blocks](#configure-blocks) - [Advanced Search Block](#advanced-search-block) + - [Search Block (NEW)](#simple-search-block) - [Documentation](#documentation) - [Troubleshooting/Issues](#troubleshootingissues) - [Maintainers](#maintainers) @@ -68,6 +70,16 @@ Please review before continuing. The following assumes you already have a working Solr and the Drupal Search API setup. +## Lucene Search (New) + +Click [here](https://www.drupal.org/docs/contributed-modules/search-api-solr/solr-query-parsers) to find more detail about +Lucene Search in Drupal. + +If this feature is enabled, an option of searching all mapping fields will be added in Advanced Search Form (screenshot below). + +![image](./docs/lucene_search_form.png) + + ## Configure Collection Search To support collection based searches you need to index the `field_member_of` for @@ -215,6 +227,17 @@ checkbox. > [Advanced Search Block](#advanced-search-block). Please refer to that section > to learn more. +### Search Block (NEW) + +To associate this simple search block to a Advanced Search Result Page view, +you can select its machine name in the dropdown list. With that, this form +will redirect to the view with search parameters. + +You can also change the search form's appearance by changing the default label, +placeholder text for the search text field, and search button. + +![image](./docs/simple_search_settings.png) + ## Documentation Further documentation for this module is available on the diff --git a/docs/islandora_advanced_search_settings.png b/docs/islandora_advanced_search_settings.png index caa2d55..58210b7 100644 Binary files a/docs/islandora_advanced_search_settings.png and b/docs/islandora_advanced_search_settings.png differ diff --git a/docs/lucene_search_form.png b/docs/lucene_search_form.png new file mode 100644 index 0000000..085c5c5 Binary files /dev/null and b/docs/lucene_search_form.png differ diff --git a/docs/simple_search_settings.png b/docs/simple_search_settings.png new file mode 100644 index 0000000..05799e7 Binary files /dev/null and b/docs/simple_search_settings.png differ