function drupal_site_offline in Drupal 6
Same name and namespace in other branches
- 4 includes/common.inc \drupal_site_offline()
- 5 includes/common.inc \drupal_site_offline()
- 7 includes/common.inc \drupal_site_offline()
Generates a site off-line message.
Related topics
File
- includes/
common.inc, line 382 - Common functions that many Drupal modules will need to reference.
Code
function drupal_site_offline() {
drupal_maintenance_theme();
drupal_set_header($_SERVER['SERVER_PROTOCOL'] . ' 503 Service unavailable');
drupal_set_title(t('Site off-line'));
print theme('maintenance_page', filter_xss_admin(variable_get('site_offline_message', t('@site is currently under maintenance. We should be back shortly. Thank you for your patience.', array(
'@site' => variable_get('site_name', 'Drupal'),
)))));
}