Details
Description
As Developer I want a bulk loading API for locations, so Repository can handle such cases faster, and cache and SQL calls can be done as multi get instead of per item.
Design
Like other multi load API's return iterable list of objects, in this case Locations.
Iterable as we might want to introduce custom collection in the future to expose more info, hence avoid hardcoding usage of plain PHP array type.
API
/** * Return list of unique Locations, with location id as key. * * Missing items (NotFound) & those user does not have access to (Unauthorized), will be missing from the * list and not cause any exception. It's up to calling logic to determine if this should cause exception or not. * * @param array $locationIds * @param string[]|null $prioritizedLanguages Filter on and use as prioritized language code on translated properties of returned objects. * @param bool|null $useAlwaysAvailable Respect always available flag on content when filtering on $prioritizedLanguages. * * @return \eZ\Publish\API\Repository\Values\Content\Location[]|iterable */ public function loadLocationList(array $locationIds, array $prioritizedLanguages = null, bool $useAlwaysAvailable = null): iterable;
Attachments
Issue Links
- relates to
-
EZP-29823 Filter location loading on translations to avoid exception later when lazy property is loaded
-
- QA Done
-