File: error.phtml

package info (click to toggle)
icingaweb2 2.12.4-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 15,156 kB
  • sloc: php: 73,914; javascript: 4,987; sql: 333; xml: 75; sh: 72; makefile: 5
file content (13 lines) | stat: -rw-r--r-- 510 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
<div class="content">
    <h1><?= $this->translate('Could not save dashboard'); ?></h1>
    <p>
        <?= $this->translate('Please copy the following dashboard snippet to '); ?>
        <strong><?= $this->config->getConfigFile(); ?>;</strong>.
        <br>
        <?= $this->translate('Make sure that the webserver can write to this file.'); ?>
    </p>
    <pre><?= $this->config; ?></pre>
    <hr>
    <h2><?= $this->translate('Error details'); ?></h2>
    <p><?= $this->error->getMessage(); ?></p>
</div>