You are here

function hosting_db_server_hosting_summary in Hosting 5

File

db_server/hosting_db_server.module, line 250

Code

function hosting_db_server_hosting_summary() {
  $summary = array();
  $db_servers = _hosting_get_db_servers();
  $summary['db_servers'] = theme('item_list', array_map('_hosting_node_link', array_keys($db_servers)), t('Database servers'));
  return $summary;
}