function _usertabs_move_item in User Tabs 7
1 call to _usertabs_move_item()
- usertabs_menu_alter in ./
usertabs.module - Implements hook_menu_alter().
File
- ./
usertabs.module, line 44 - usertabs.module
Code
function _usertabs_move_item(&$callbacks, $from, $to, $type = NULL) {
$callbacks[$to] = $callbacks[$from];
if ($type) {
$callbacks[$to]['type'] = $type;
}
unset($callbacks[$from]);
}