You are here

function _tagadelic_sort_by_title in Tagadelic 7

Same name and namespace in other branches
  1. 5 tagadelic.module \_tagadelic_sort_by_title()
  2. 6 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 function to order a set of tags.

File

./tagadelic.module, line 300

Code

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