You are here

function feeds_plugin_compare in Feeds 6

Same name and namespace in other branches
  1. 7.2 plugins/FeedsPlugin.inc \feeds_plugin_compare()
  2. 7 plugins/FeedsPlugin.inc \feeds_plugin_compare()

Sort callback for feeds_get_plugins().

Related topics

1 string reference to 'feeds_plugin_compare'
feeds_get_plugins in ./feeds.module
Gets all available plugins. Does not list hidden plugins.

File

./feeds.module, line 768
Feeds - basic API functions and hook implementations.

Code

function feeds_plugin_compare($a, $b) {
  return strcasecmp($a['name'], $b['name']);
}