About Features Downloads Getting Started Documentation Events Support GitHub

Love VuFind®? Consider becoming a financial supporter. Your support helps build a better VuFind®!

Site Tools


Warning: This page has not been updated in over over a year and may be outdated or deprecated.
development:plugins:content_provider_components

This is an old revision of the document!


Content Provider Components

Starting in VuFind 2.3, content-loading capabilities (for retrieving cover images, reviews, etc. from third-party APIs) were significantly refactored to rely on plugins.

Content Loader Plugin Details

Each “family” of content plugins (covers, excerpts, etc.) has its own plugin manager. All of those plugin managers are managed by this top-level plugin manager. In other words, every “plugin” in this family is actually a plugin manager in its own right – generally instances of \VuFind\Content\Loader with different configurations set. It is not usually necessary to add new services here unless you are implementing support for a whole new type of content.

Default Namespace: \VuFind\Content

Base Class: \VuFind\Content\Loader

Service Locator Configuration Section in module.config.php: ['vufind']['plugin_managers']['content']

Service Manager Name for Service Locator: VuFind\ContentPluginManager

See the General Plugin Information page for more details on VuFind plugins.

Content-Specific Plugin Details

Each content loader (described above) returns plugins of one of the types described below.

Author Notes

These plugins retrieve information about the author of a particular title.

Default Namespace: \VuFind\Content\AuthorNotes

Base Class: \VuFind\Content\AbstractBase

Service Locator Configuration Section in module.config.php: ['vufind']['plugin_managers']['content_authornotes']

Service Manager Name for Service Locator: VuFind\ContentAuthorNotesPluginManager

See the General Plugin Information page for more details on VuFind plugins.

Covers

Cover drivers are used for retrieving cover image data. They accept an array of ID values and return the URL to an image. Building a new plugin usually consists of setting some flags in the constructor to indicate which types of identifier are supported, then building a method to convert those identifiers into a valid URL.

Default Namespace: \VuFind\Content\Covers

Base Class: \VuFind\Content\AbstractCover

Service Locator Configuration Section in module.config.php: ['vufind']['plugin_managers']['content_covers']

Service Manager Name for Service Locator: VuFind\ContentCoversPluginManager

See the General Plugin Information page for more details on VuFind plugins.

Excerpts

These plugins retrieve excerpts of a particular title.

Default Namespace: \VuFind\Content\Excerpts

Base Class: \VuFind\Content\AbstractBase

Service Locator Configuration Section in module.config.php: ['vufind']['plugin_managers']['content_excerpts']

Service Manager Name for Service Locator: VuFind\ContentExcerptsPluginManager

See the General Plugin Information page for more details on VuFind plugins.

Reviews

These plugins retrieve reviews of a particular title.

Default Namespace: \VuFind\Content\Reviews

Base Class: \VuFind\Content\AbstractBase

Service Locator Configuration Section in module.config.php: ['vufind']['plugin_managers']['content_reviews']

Service Manager Name for Service Locator: VuFind\ContentReviewsPluginManager

See the General Plugin Information page for more details on VuFind plugins.

Summaries

These plugins retrieve summaries of a particular title. :!: Added in VuFind 5.0.

Default Namespace: \VuFind\Content\Summaries

Base Class: \VuFind\Content\AbstractBase

Service Locator Configuration Section in module.config.php: ['vufind']['plugin_managers']['content_summaries']

Service Manager Name for Service Locator: VuFind\ContentSummariesPluginManager

See the General Plugin Information page for more details on VuFind plugins.

Tables of Contents

These plugins retrieve the table of contents for a particular title. :!: Added in VuFind 5.0.

Default Namespace: \VuFind\Content\TOC

Base Class: \VuFind\Content\AbstractBase

Service Locator Configuration Section in module.config.php: ['vufind']['plugin_managers']['content_toc']

Service Manager Name for Service Locator: VuFind\ContentTOCPluginManager

See the General Plugin Information page for more details on VuFind plugins.

development/plugins/content_provider_components.1509107188.txt.gz · Last modified: 2017/10/27 12:26 by demiankatz