tags:

views:

18

answers:

1

Is it possible to load a plugin from a another different plugin

A: 

Yes, you can as long as you're not creating a circular reference. For instance, it's common to export a Logging Service in one "plugin", and consume it in many others.

Also, if your main application has an extension point (e.g. Drivers), one of the Driver plugins can itself have an extension point (e.g. Protocols) and someone else can write a plugin for that extension point.

SoapBox Core works like this.

Scott Whitlock