Loads plugins for Amfphp.

Plugins consist of a folder in the plugins folder. The folder and the class should all have the same name. The file containing the class should be named with the class name with the '.php' suffix added. It is the loaded class' responsability to load any other resources that the plugin needs from the same folder. A plugin interacts with Amfphp by using the Amfphp_Core_FilterManager to register its functions to be called at specific times with specific parameters during execution. It's a singleton, so use getInstance

package Amfphp_Core
author Ariel Sommeria-Klein

 Methods

gives access to the singleton

getInstance() : \Amfphp_Core_PluginManager
Static

load the plugins

loadPlugins(array $pluginFolders, array $pluginsConfig, array $sharedConfig, array $disabledPlugins) 

Parameters

$pluginFolders

array

where to load the plugins from. Absolute paths. For example Amfphp/Plugins/

$pluginsConfig

array

optional. an array containing the plugin configuration, using the plugin name as key.

$sharedConfig

array

optional. if both a specific config and a shared config are available, concatenate them to create the plugin config. Otherwise use whatever is not null

$disabledPlugins

array

optional. an array of names of plugins to disable

constructor

__construct() 

 Properties

   

$pluginInstances : array