Skip to content
Snippets Groups Projects
Commit 90cf9016 authored by Alex Barth's avatar Alex Barth
Browse files

More comment cleanups.

parent de765659
No related branches found
No related tags found
No related merge requests found
...@@ -59,14 +59,14 @@ function feeds_perm() { ...@@ -59,14 +59,14 @@ function feeds_perm() {
/** /**
* Implementation of hook_forms(). * Implementation of hook_forms().
*
* Declare form callbacks for all known classes derived from FeedsConfigurable.
*/ */
function feeds_forms() { function feeds_forms() {
// Declare form callbacks for all known classes derived from FeedsConfigurable.
$forms = array(); $forms = array();
$forms['FeedsImporter_feeds_config_form']['callback'] = 'feeds_config_form'; $forms['FeedsImporter_feeds_config_form']['callback'] = 'feeds_config_form';
$plugins = feeds_get_plugins(); $plugins = feeds_get_plugins();
foreach ($plugins as $plugin) { foreach ($plugins as $plugin) {
// See feeds_get_config_form().
$forms[$plugin['handler']['class'] .'_feeds_config_form']['callback'] = 'feeds_config_form'; $forms[$plugin['handler']['class'] .'_feeds_config_form']['callback'] = 'feeds_config_form';
} }
return $forms; return $forms;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment