function _domain_id_sort in Domain Access 5
Same name and namespace in other branches
- 6.2 domain.module \_domain_id_sort()
- 7.2 domain.module \_domain_id_sort()
Helper sort function
File
- ./
domain.module, line 514 - Core module functions for the Domain Access suite.
Code
function _domain_id_sort($a, $b) {
return $a['domain_id'] < $b['domain_id'] ? -1 : 1;
}