l10n_update-translation-last-check.tpl.php 533 B

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