You are here

function _domain_url_sort in Domain Access 5

Same name and namespace in other branches
  1. 6.2 domain.module \_domain_url_sort()
  2. 7.2 domain.module \_domain_url_sort()

Helper sort function

File

./domain.module, line 528
Core module functions for the Domain Access suite.

Code

function _domain_url_sort($a, $b) {
  return strcmp($a['subdomain'], $b['subdomain']);
}