You are here

function hosting_client_list in Hosting 6.2

Same name and namespace in other branches
  1. 5 client/hosting_client.module \hosting_client_list()

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 client/hosting_client.module
Implementation of hook_block().
1 string reference to 'hosting_client_list'
hosting_client_views_default_views in client/hosting_client.views_default.inc
Implementation of hook_views_default_views().

File

client/hosting_client.module, line 897

Code

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