function _views_weight_sort

Same name in other branches
  1. 7.x-3.x includes/admin.inc \_views_weight_sort()
1 string reference to '_views_weight_sort'
views_fetch_base_tables in includes/admin.inc
Fetch a list of all base tables available

File

includes/admin.inc, line 3842

Code

function _views_weight_sort($a, $b) {
    if ($a['weight'] != $b['weight']) {
        return $a['weight'] < $b['weight'] ? -1 : 1;
    }
    if ($a['title'] != $b['title']) {
        return $a['title'] < $b['title'] ? -1 : 1;
    }
    return 0;
}