You are here

public function BackendPluginBase::postUpdate in Search API 8

Notifies the backend that its configuration was updated.

The server's $original property can be used to inspect the old configuration values.

Return value

bool TRUE, if the update requires reindexing of all content on the server.

Overrides BackendInterface::postUpdate

2 methods override BackendPluginBase::postUpdate()
Database::postUpdate in modules/search_api_db/src/Plugin/search_api/backend/Database.php
Notifies the backend that its configuration was updated.
TestBackend::postUpdate in tests/search_api_test/src/Plugin/search_api/backend/TestBackend.php
Notifies the backend that its configuration was updated.

File

src/Backend/BackendPluginBase.php, line 215

Class

BackendPluginBase
Defines a base class for backend plugins.

Namespace

Drupal\search_api\Backend

Code

public function postUpdate() {
  return FALSE;
}