mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Add absolute time of last cronjob as hover tip
This commit is contained in:
parent
6e906fc4d4
commit
0efed5c216
2 changed files with 11 additions and 4 deletions
|
|
@ -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…
Reference in a new issue