function _views_move_bottom in Views (for Drupal 7) 5
Move an item to the end of an array.
File
- ./
views_ui.module, line 658
Code
function _views_move_bottom(&$arr, $i) {
$end = count($arr) - 1;
if ($i >= $end || $i < 0) {
return;
// can't do it.
}
$temp = $arr[$i];
for ($x = $i; $x < $end; $x++) {
$arr[$x] = $arr[$x + 1];
}
$arr[$end] = $temp;
}