You are here

function hosting_disabled_site in Hosting 5

Same name and namespace in other branches
  1. 6.2 hosting.module \hosting_disabled_site()
  2. 7.4 hosting.module \hosting_disabled_site()
  3. 7.3 hosting.module \hosting_disabled_site()
1 string reference to 'hosting_disabled_site'
hosting_menu in ./hosting.module
Implementation of hook_menu()

File

./hosting.module, line 121
Hosting module

Code

function hosting_disabled_site($url) {
  drupal_set_breadcrumb(array());
  return t("!url has been disabled by the site administrators", array(
    '!url' => $url,
  ));
}