You are here

function _tagadelic_sort_by_title in Tagadelic 5

Same name and namespace in other branches
  1. 6 tagadelic.module \_tagadelic_sort_by_title()
  2. 7 tagadelic.module \_tagadelic_sort_by_title()

callback for usort, sort by count

1 string reference to '_tagadelic_sort_by_title'
tagadelic_sort_tags in ./tagadelic.module
API funtion to order a set of tags. @todo If you feel like making this more modular, please send me patches.

File

./tagadelic.module, line 287

Code

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