Skip to content

Commit

Permalink
monitoring health views: Ensure dashboard compliance
Browse files Browse the repository at this point in the history
refs #7876
  • Loading branch information
Johannes Meyer committed Apr 17, 2015
1 parent b9f9ea6 commit 78e4df2
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
@@ -1,6 +1,8 @@
<?php if (! $this->compact): ?>
<div class="controls">
<?= $this->tabs->showOnlyCloseButton() ?>
<?= $this->tabs->showOnlyCloseButton(); ?>
</div>
<?php endif ?>
<div class="content">
<h1><?= $title; ?></h1>
<?php if ((bool) $programStatus->notifications_enabled === false): ?>
Expand Down
@@ -1,12 +1,12 @@
<?php

$rv = $this->runtimeVariables()->create($this->runtimevariables);
$cp = $this->checkPerformance()->create($this->checkperformance);

?>
if (! $this->compact): ?>
<div class="controls">
<?= $this->tabs ?>
<?= $this->tabs; ?>
</div>
<?php endif ?>

<div class="content processinfo">
<div class="boxview">
Expand Down
@@ -1,6 +1,8 @@
<?php if (! $this->compact): ?>
<div class="controls">
<?= $this->tabs ?>
<?= $this->tabs; ?>
</div>
<?php endif ?>
<div class="content">
<?= sprintf($this->translate('%s is currently not up and running'), $this->backendName) ?>
</div>
@@ -1,7 +1,8 @@
<?php if (! $this->compact): ?>
<div class="controls">
<?= $this->tabs ?>
<?= $this->tabs; ?>
</div>
<?php
<?php endif;

$rv = $this->runtimeVariables()->create($this->runtimevariables);
$cp = $this->checkPerformance()->create($this->checkperformance);
Expand Down

0 comments on commit 78e4df2

Please sign in to comment.