From de765659b87f2aa0f2c5eab3d60b3ef0b23a08c6 Mon Sep 17 00:00:00 2001 From: Alex Barth <alex_b@53995.no-reply.drupal.org> Date: Sat, 27 Feb 2010 05:03:59 +0000 Subject: [PATCH] Clean up use of variable, clean up comments. --- feeds.module | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/feeds.module b/feeds.module index b03d3dd5..6964ee8a 100644 --- a/feeds.module +++ b/feeds.module @@ -692,9 +692,7 @@ function feeds_plugin_instance($plugin, $id) { /** * Determines whether given plugin is derived from given base plugin. * - * @todo Update variable names. Should be $plugin_key if it is a key string. - * - * @param $plugin + * @param $plugin_key * String that identifies a Feeds plugin key. * @param $parent_plugin * String that identifies a Feeds plugin key to be tested against. @@ -703,10 +701,10 @@ function feeds_plugin_instance($plugin, $id) { * TRUE if $parent_plugin is directly *or indirectly* a parent of $plugin, * FALSE otherwise. */ -function feeds_plugin_child($plugin, $parent_plugin) { +function feeds_plugin_child($plugin_key, $parent_plugin) { ctools_include('plugins'); $plugins = ctools_get_plugins('feeds', 'plugins'); - $info = $plugins[$plugin]; + $info = $plugins[$plugin_key]; if (empty($info['handler']['parent'])) { return FALSE; @@ -723,7 +721,7 @@ function feeds_plugin_child($plugin, $parent_plugin) { * Determine the type of a plugin. * * @param $plugin_key - * String that is a Feeds plugin key. + * String that identifies a Feeds plugin key. * * @return * One of the following values: -- GitLab