| 1 |
<?php |
<?php |
| 2 |
// $Id$ |
// $Id: countdown.tpl.php,v 1.2 2008/05/12 15:28:25 deekayen Exp $ |
| 3 |
|
|
| 4 |
/** |
/** |
| 5 |
* @file countdown.tpl.php |
* @file countdown.tpl.php |
| 36 |
print t(', %i seconds', array('%i' => $secs_left)); |
print t(', %i seconds', array('%i' => $secs_left)); |
| 37 |
} |
} |
| 38 |
print t(($passed) ? ' since %s.' : ' until %s.', array('%s' => variable_get('countdown_event_name', ''))); |
print t(($passed) ? ' since %s.' : ' until %s.', array('%s' => variable_get('countdown_event_name', ''))); |
| 39 |
|
|
| 40 |
|
if ($accuracy != 'd') { |
| 41 |
|
$path = drupal_get_path('module', 'countdown'); |
| 42 |
|
drupal_add_js($path .'/countdown.js'); |
| 43 |
|
|
| 44 |
|
print <<<___EOS___ |
| 45 |
|
<script type="text/javascript"><!-- |
| 46 |
|
init_countdown('$accuracy'); |
| 47 |
|
// --></script> |
| 48 |
|
___EOS___; |
| 49 |
|
} |