You are here

function bean_usage_sort_by_type in Bean (for Drupal 7) 7

Sort bean usage by bean.type

Parameters

$a:

$b:

Return value

int

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

File

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

Code

function bean_usage_sort_by_type($a, $b) {
  return strcmp($a->type, $b->type);
}