public function Field::getFieldIdentifier in Search API 8
Returns the field identifier of this field.
Return value
string The identifier of this field.
Overrides FieldInterface::getFieldIdentifier
1 call to Field::getFieldIdentifier()
- Field::__toString in src/
Item/ Field.php - Implements the magic __toString() method to simplify debugging.
File
- src/
Item/ Field.php, line 270
Class
- Field
- Represents a field on a search item that can be indexed.
Namespace
Drupal\search_api\ItemCode
public function getFieldIdentifier() {
return $this->fieldIdentifier;
}