blob: a6798188dedd7a781c2f97c8c00bc670b495e917 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php
/**
* @file
* Default theme implementation for the last time we checked for update data.
*
* Available variables:
* - $last_checked: User interface string with the formatted time ago when the
* site last checked for available updates.
* - $link: A link to manually check available updates.
*
* @see template_preprocess_l10n_update_last_check()
*
* @ingroup themeable
*/
?>
<div class="l10n_update-checked">
<p><?php print $last_checked; ?> <span class="check-manually">(<?php print $link; ?>)</span></p>
</div>
|