[FeedExpander] Document max items feature

LogMANOriginal 2016-09-05 20:33:10 +02:00
parent d66dce2f0e
commit ecd21a22c6

@ -11,7 +11,7 @@ To create a new Bridge extending `FeedExpander` you must implement all required
Find a [template](#template) at the end of this file.
**Notice:** For a standard feed only `collectData` and [`parseItem`](#the-parseItem-function) need to be implemented. `collectData` should call `$this->collectExpandableDatas('your URI here');` to automatically load feed items and header data (will subsequently call `parseItem` for each item in the feed).
**Notice:** For a standard feed only `collectData` and [`parseItem`](#the-parseItem-function) need to be implemented. `collectData` should call `$this->collectExpandableDatas('your URI here');` to automatically load feed items and header data (will subsequently call `parseItem` for each item in the feed). You can limit the number of items to fetch by specifying an additional parameter for: `$this->collectExpandableDatas('your URI here', 10)` (limited to 10 items).
## The `parseItem` function