You are here

public function UnsavedIndexConfiguration::isInstallable in Search API 8

Checks whether this entity is installable.

For example, a default view might not be installable if the base table doesn't exist.

Return value

bool TRUE if the entity is installable, FALSE otherwise.

Overrides ConfigEntityInterface::isInstallable

File

src/UnsavedIndexConfiguration.php, line 724

Class

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

Namespace

Drupal\search_api

Code

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