You are here

public function UnsavedIndexConfiguration::hasValidTracker in Search API 8

Determines whether the tracker is valid.

Return value

bool TRUE if the tracker is valid, otherwise FALSE.

Overrides IndexInterface::hasValidTracker

File

src/UnsavedIndexConfiguration.php, line 300

Class

UnsavedIndexConfiguration
Represents a configuration of an index that was not yet permanently saved.

Namespace

Drupal\search_api

Code

public function hasValidTracker() {
  return $this->entity
    ->hasValidTracker();
}