You are here

function _tagclouds_sort_by_count in TagCloud 7

1 string reference to '_tagclouds_sort_by_count'
tagclouds_sort_tags in ./tagclouds.module
API function to order a set of tags.

File

./tagclouds.module, line 387

Code

function _tagclouds_sort_by_count($a, $b) {
  return $a->count > $b->count;
}