Plugins was enhanced in the following ways:
1) Administrators can now configure plugins on-line. Navigate to the Plugin Manager and click on any of the plugins to see extended information and configuration details.
2) A new plugin_info call-out was added to allow plugins to expose extended information that will be visible in the Plugin Manger. For example:
function recaptcha_info() {
return array('name' => 'Recaptcha',
'desc' => 'This plugin will ...',
'version' => '1.0');
}
3) A new plugin_config call-out was added to allow plugins to define their configuration settings:
function recaptcha_config() {
...