public function Item::getAllExtraData in Search API 8
Retrieves all extra data set for this item.
Return value
array An array mapping extra data keys to their data.
Overrides ItemInterface::getAllExtraData
1 call to Item::getAllExtraData()
- Item::__toString in src/
Item/ Item.php - Implements the magic __toString() method to simplify debugging.
File
- src/
Item/ Item.php, line 408
Class
- Item
- Provides a default implementation for a search item.
Namespace
Drupal\search_api\ItemCode
public function getAllExtraData() {
return $this->extraData;
}