You are here

function theme_commons_events_date_display_single in Drupal Commons 7.3

1 string reference to 'theme_commons_events_date_display_single'
commons_events_theme_registry_alter in modules/commons/commons_events/commons_events.module
Implements hook_theme_registry_alter(). Gives us the ability to insert our pretty date formatter for the dates we choose below.

File

modules/commons/commons_events/commons_events.module, line 559

Code

function theme_commons_events_date_display_single($variables) {
  return $variables['date'];
}