You are here

function bean_usage_sort_by_label in Bean (for Drupal 7) 7

Sort bean usage by bean.label

Parameters

$a:

$b:

Return value

int

1 string reference to 'bean_usage_sort_by_label'
bean_usage_output in bean_usage/bean_usage.module
Displays a table of Beans and their usage

File

bean_usage/bean_usage.module, line 499
Bean Admin Functions and Display

Code

function bean_usage_sort_by_label($a, $b) {
  return strcmp($a->label, $b->label);
}