function health_check_content in Health check 7
Page callback for /health.
Return value
string The current time.
1 string reference to 'health_check_content'
- health_check_menu in ./
health_check.module - Implements hook_menu().
File
- ./
health_check.module, line 35 - Contains Health check module.
Code
function health_check_content() {
drupal_page_is_cacheable(FALSE);
echo (string) time();
drupal_exit();
}