You are here

function hosting_client_list in Hostmaster (Aegir) 6

Make a themed list of clients.

Will take whatever _hosting_get_clients() will give as clients.

See also

_hosting_get_clients()

1 call to hosting_client_list()
hosting_client_block in modules/hosting/client/hosting_client.module
Implementation of hook_block().

File

modules/hosting/client/hosting_client.module, line 786

Code

function hosting_client_list() {
  $summary = array();
  $clients = _hosting_get_clients();
  return theme('item_list', array_map('_hosting_node_link', array_keys($clients)));
}