function hosting_platform_hosting_summary in Hosting 5
Same name and namespace in other branches
- 6.2 platform/hosting_platform.module \hosting_platform_hosting_summary()
- 7.4 platform/hosting_platform.module \hosting_platform_hosting_summary()
- 7.3 platform/hosting_platform.module \hosting_platform_hosting_summary()
File
- platform/
hosting_platform.module, line 273 - Platform node type definition
Code
function hosting_platform_hosting_summary() {
$summary = array();
$platforms = _hosting_get_platforms();
$summary['platforms'] = theme('item_list', array_map('_hosting_node_link', array_keys($platforms)), t('Platforms'));
return $summary;
}