function theme_hosting_summary_block in Hosting 5
1 theme call to theme_hosting_summary_block()
File
- ./
hosting.module, line 304 - Hosting module
Code
function theme_hosting_summary_block($components) {
foreach ($components as $component) {
$output .= $component;
}
return $output;
}