function health_admin_dashboard_headers in Health Status 7
Gets the headers for the admin dashboard table.
2 calls to health_admin_dashboard_headers()
- health_admin_dashboard_form in ./
health.admin.inc - Health dashboard with data from previous days.
- health_cron_email_send in ./
health.module - Sends a health status on cron run when necessary.
File
- ./
health.admin.inc, line 134 - Contains admin forms.
Code
function health_admin_dashboard_headers() {
return array(
t('Status'),
t('Status Message'),
t('Monitor'),
t('Description'),
);
}