function theme_hosting_site_profile in Hosting 7.4
Same name and namespace in other branches
- 6.2 site/hosting_site.module \theme_hosting_site_profile()
- 7.3 site/hosting_site.module \theme_hosting_site_profile()
Theme function for install profile item.
2 theme calls to theme_hosting_site_profile()
- hosting_settings in ./
hosting.module - General settings form.
- hosting_site_form in site/
hosting_site.form.inc - Implements hook_form().
File
- site/
hosting_site.module, line 739 - Contains hook implementations for Hosting site module.
Code
function theme_hosting_site_profile($variables) {
if ($variables['html']) {
return "{$variables['profile']->title} <em>({$variables['profile']->short_name})</em>";
}
return "{$variables['profile']->title} ({$variables['profile']->short_name})";
}