function theme_jquery_countdown_timer_container in jQuery Countdown Timer 7
Returns HTML for the timer container.
Parameters
type $variables:
Return value
string
1 theme call to theme_jquery_countdown_timer_container()
- jquery_countdown_timer_block_view in ./
jquery_countdown_timer.module - Implements hook_block_view().
File
- ./
jquery_countdown_timer.module, line 138 - This module provides block with a simple jQuery coundown
Code
function theme_jquery_countdown_timer_container($variables) {
$output = '';
$output .= "<div id='jquery-countdown-timer'></div>";
$output .= "<div id='jquery-countdown-timer-note'></div>";
return $output;
}