function devel_block_switch_user() {
$block['subject'] = t('Switch user');
+ $links = devel_switch_user_list();
+ if (!empty($links)) {
+ $block['content'] = theme('item_list', $links);
+ $block['content'] .= drupal_get_form('devel_switch_user_form');
+ return $block;
+ }
+}
+
+function devel_switch_user_list() {
$links = array();
if (user_access('switch users')) {
$dest = drupal_get_destination();
}
}
}
- if (!empty($links)) {
- $block['content'] = theme('item_list', $links);
- $block['content'] .= drupal_get_form('devel_switch_user_form');
- return $block;
- }
+ return $links;
}
function devel_phpinfo() {