You are here

function farm_calendar_dashboard_date in farmOS 7

Date dashboard callback.

1 string reference to 'farm_calendar_dashboard_date'
farm_calendar_farm_dashboard_panes in modules/farm/farm_calendar/farm_calendar.farm_dashboard.inc
Implements hook_farm_dashboard_panes().

File

modules/farm/farm_calendar/farm_calendar.farm_dashboard.inc, line 23
Farm dashboard hooks implemented by farm calendar module.

Code

function farm_calendar_dashboard_date() {
  return '<h2>' . t('Today is') . ' ' . l(date('M j Y'), 'farm/calendar/day') . '</h2>';
}