Add absolute time of last cronjob as hover tip

remotes/origin/external-backend-ondemand
Jakob Sack 10 years ago
parent 6e906fc4d4
commit 0efed5c216
  1. 2
      settings/js/admin.js
  2. 13
      settings/templates/admin.php

@ -39,6 +39,8 @@ $(document).ready(function(){
} );
});
$('#backgroundjobs span.crondate').tipsy({fade: true, gravity: 's', live: true});
$('#backgroundjobs input').change(function(){
if($(this).attr('checked')){
var mode = $(this).val();

@ -237,13 +237,18 @@ if ($_['suggestedOverwriteCliUrl']) {
<p class="cronlog inlineblock">
<?php if ($_['lastcron'] !== false):
$human_time = relative_modified_date($_['lastcron']);
$absolute_time = OC_Util::formatDate($_['lastcron']);
if (time() - $_['lastcron'] <= 3600): ?>
<span class="cronstatus success"></span>
<?php p($l->t("Last cron was executed %s.", array($human_time)));
else: ?>
<span class="crondate" original-title="<?php p($absolute_time);?>">
<?php p($l->t("Last cron was executed %s.", array($human_time)));?>
</span>
<?php else: ?>
<span class="cronstatus error"></span>
<?php p($l->t("Last cron was executed %s. Something seems wrong.", array($human_time)));
endif;
<span class="crondate" original-title="<?php p($absolute_time);?>">
<?php p($l->t("Last cron was executed %s. Something seems wrong.", array($human_time)));?>
</span>
<?php endif;
else: ?>
<span class="cronstatus error"></span>
<?php p($l->t("Cron was not executed yet!"));

Loading…
Cancel
Save