You are here

function feeds_plugin_compare in Feeds 8.2

Sort callback for FeedsPlugin::all().

File

lib/Drupal/feeds/Plugin/FeedsPlugin.php, line 244
Definition of FeedsPlugin class.

Namespace

Drupal\feeds\Plugin

Code

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