You are here

public function Field::isIndexedLocked in Search API 8

Determines whether this field should always be enabled/indexed.

Return value

bool TRUE if this field should be locked as enabled/indexed.

Overrides FieldInterface::isIndexedLocked

1 call to Field::isIndexedLocked()
Field::getSettings in src/Item/Field.php
Retrieves all settings encapsulated in this field as an array.

File

src/Item/Field.php, line 608

Class

Field
Represents a field on a search item that can be indexed.

Namespace

Drupal\search_api\Item

Code

public function isIndexedLocked() {
  return (bool) $this->indexedLocked;
}