You are here

function theme_clock_daylight_savings_time_marker in Clock 7.2

Returns HTML for a Daylight Savings Time marker.

2 theme calls to theme_clock_daylight_savings_time_marker()
clock_tokens in ./clock.tokens.inc
Implements hook_tokens().
clock_token_info in ./clock.tokens.inc
Implements hook_token_info()

File

./clock.theme.inc, line 84
Theme-related functions for Clock module.

Code

function theme_clock_daylight_savings_time_marker($variables) {
  drupal_add_css(drupal_get_path('module', 'clock') . '/clock.base.css');
  return '<span class="clock-daylight-savings-time-marker">*</span>';
}