Home
last modified time | relevance | path

Searched refs:a_ids (Results 1 – 1 of 1) sorted by last modified time

/dokuwiki/lib/plugins/acl/
H A Dadmin.php309 $a_ids = explode(':', $a['id']);
312 while (count($a_ids) && count($b_ids)) {
315 $cur_result = Sort::strcmp(array_shift($a_ids), array_shift($b_ids));
320 if ($a_ids === [] && $a['type'] == 'f' && (count($b_ids) || $b['type'] == 'd')) return 1;
321 if ($b_ids === [] && $b['type'] == 'f' && (count($a_ids) || $a['type'] == 'd')) return -1;
327 if ($a_ids === [] && $b_ids === []) {
336 if ($a_ids === []) return ($a['type'] == 'd') ? -1 : 1;