You are here

function hosting_site_preprocess in Hosting 7.4

Same name and namespace in other branches
  1. 7.3 site/hosting_site.module \hosting_site_preprocess()

Theme function for site titles.

File

site/hosting_site.module, line 749
Contains hook implementations for Hosting site module.

Code

function hosting_site_preprocess(&$variables) {
  if (isset($variables['node'])) {
    $variables['title'] = hosting_site_canonical_url($variables['node']);
  }
}