You are here

function feeds_plugin_compare in Feeds 7.2

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

Sort callback for FeedsPlugin::all().

1 string reference to 'feeds_plugin_compare'
FeedsPlugin::all in plugins/FeedsPlugin.inc
Get all available plugins.

File

plugins/FeedsPlugin.inc, line 444
Definition of FeedsPlugin class.

Code

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