You are here

function theme_hosting_site_profile in Hosting 6.2

Same name and namespace in other branches
  1. 7.4 site/hosting_site.module \theme_hosting_site_profile()
  2. 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 681

Code

function theme_hosting_site_profile($profile, $html = FALSE) {
  if ($html) {
    return "{$profile->title} <em>({$profile->short_name})</em>";
  }
  return "{$profile->title} ({$profile->short_name})";
}