You are here

function hosting_site_maintenance in Hosting 5

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

File

./hosting.module, line 126
Hosting module

Code

function hosting_site_maintenance($url) {
  drupal_set_breadcrumb(array());
  return t("!url has being worked on presently. Check back later.", array(
    '!url' => $url,
  ));
}