2014-03-06 12:21:11 +01:00
|
|
|
<?php
|
|
|
|
|
2022-03-01 16:11:28 +01:00
|
|
|
use Icinga\Application\Icinga;
|
2014-03-06 12:21:11 +01:00
|
|
|
use Icinga\Web\StyleSheet;
|
|
|
|
|
2014-05-21 00:46:36 +02:00
|
|
|
|
|
|
|
$moduleName = $this->layout()->moduleName;
|
2015-08-19 13:39:37 +02:00
|
|
|
if ($moduleName !== 'default') {
|
2014-05-21 00:46:36 +02:00
|
|
|
$moduleClass = ' icinga-module module-' . $moduleName;
|
|
|
|
} else {
|
|
|
|
$moduleClass = '';
|
|
|
|
}
|
|
|
|
|
2022-03-01 16:11:28 +01:00
|
|
|
$logoPath = Icinga::app()->getBootstrapDirectory() . '/img/icinga-logo-big-dark.png';
|
|
|
|
$logo = base64_encode(file_get_contents($logoPath));
|
|
|
|
|
2014-05-21 00:46:36 +02:00
|
|
|
|
2014-03-06 12:21:11 +01:00
|
|
|
?><!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<style>
|
2015-11-27 16:40:17 +01:00
|
|
|
<?= StyleSheet::forPdf() ?>
|
2014-03-06 12:21:11 +01:00
|
|
|
</style>
|
2021-03-31 16:39:19 +02:00
|
|
|
<base href="<?= $this->serverUrl() ?>">
|
2014-03-06 12:21:11 +01:00
|
|
|
</head>
|
|
|
|
<body>
|
2022-03-01 16:11:28 +01:00
|
|
|
<div id="header">
|
2014-03-06 12:21:11 +01:00
|
|
|
<table>
|
2022-03-01 16:11:28 +01:00
|
|
|
<tbody>
|
|
|
|
<tr>
|
2022-05-06 09:37:48 +02:00
|
|
|
<th class="title"><?= $this->escape($this->title) ?></th>
|
2022-03-01 16:11:28 +01:00
|
|
|
<td style="text-align: right;"><img width="75" src="data:image/png;base64,<?= $logo ?>"></td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
2014-03-06 12:21:11 +01:00
|
|
|
</table>
|
|
|
|
</div>
|
2022-03-01 16:11:28 +01:00
|
|
|
<div id="footer">
|
2014-03-06 12:21:11 +01:00
|
|
|
<div class="page-number"></div>
|
|
|
|
</div>
|
2022-03-01 16:11:28 +01:00
|
|
|
<div class="<?= $moduleClass ?>">
|
|
|
|
<?= $this->render('inline.phtml') ?>
|
|
|
|
</div>
|
2014-03-06 12:21:11 +01:00
|
|
|
</body>
|
|
|
|
</html>
|