Skip to content

Commit

Permalink
Fix error with update "traffic light" and change offline hint
Browse files Browse the repository at this point in the history
  • Loading branch information
j0nem committed Jan 10, 2019
1 parent f84e4dc commit 498909b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
10 changes: 6 additions & 4 deletions src/Resources/contao/modules/ModuleSubstitutions.php
Original file line number Diff line number Diff line change
Expand Up @@ -113,21 +113,23 @@ protected function compile()
$objUpdate->setTimestamp($intUpdate);
$objNow = new \DateTime("now");

$intDiff = $objUpdate->diff($objNow)->format("%a");

// There are four phases of warnings (green, yellow, orange, red)

if ($objNow->diff($objUpdate)->d >= 4)
if ($intDiff >= 4)
{
$intUpdateWarningLevel = 3;
}
elseif ($objNow->diff($objUpdate)->d >= 3)
elseif ($intDiff >= 3)
{
$intUpdateWarningLevel = 2;
}
elseif ($objNow->diff($objUpdate)->d >= 2)
elseif ($intDiff >= 2)
{
$intUpdateWarningLevel = 1;
}
elseif ($objNow->diff($objUpdate)->d < 2)
elseif ($intDiff < 2)
{
$intUpdateWarningLevel = 0;
}
Expand Down
4 changes: 2 additions & 2 deletions src/Resources/contao/templates/wu_substitutions.html5
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
<?php endif ;?>
<?php if ($this->cacheHint): ?>
<div class="hint ce_text">
<p>Hinweis: Der aktuelle Online-Vertretungsplan ist zurzeit nicht verfügbar, es wird die letzte abrufbare Version angezeigt.
Die angezeigten Vertretungen sind daher möglicherweise veraltet! Bitte achtet auf den Aushang im Schulhaus</p>
<p><strong>WebUntis ist momentan offline.</strong> Der aktuelle Online-Vertretungsplan ist zurzeit nicht verfügbar, es wird die letzte abrufbare Version angezeigt.
Die angezeigten Vertretungen sind daher möglicherweise veraltet! Bitte achtet auf den Aushang im Schulhaus.</p>
</div><br />
<?php endif; ?>

Expand Down

0 comments on commit 498909b

Please sign in to comment.