You are here

function panels_move_bottom in Panels 5

move an item in an array to the bottom

File

./panels.module, line 638

Code

function panels_move_bottom(&$array, &$position) {
  $value = $array[$position];
  unset($array[$position]);
  $array[] = $value;

  // reindex the array now
  $array = array_values($array);
}