You are here

function _tagclouds_sort_by_title in TagCloud 7

Callback for usort, sort by count.

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

File

./tagclouds.module, line 383

Code

function _tagclouds_sort_by_title($a, $b) {
  return strnatcasecmp($a->name, $b->name);
}