Skip to content

Commit 97830b8

Browse files
committed
Added About File
1 parent 2a0bb3f commit 97830b8

8 files changed

Lines changed: 40 additions & 23 deletions

File tree

build-stamp

Whitespace-only changes.

debian/changelog

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
1-
icinga-editor (0.194-1) UNRELEASED; urgency=medium
1+
icinga-editor (-) UNRELEASED; urgency=medium
22

3+
[ dvorak ]
34
* Initial release. (Closes: #XXXXXX)
45

5-
-- dvorak <dvorak@linuxadmin.austro-bohemia.local> Tue, 01 Sep 2015 16:53:02 +0200
6+
[ vitex ]
7+
* Fixed Form save null as zero Fixes & Updates
8+
9+
-- vitex <vitex@developer.kancl.brevnov.czf> Tue, 19 Jul 2016 10:36:17 +0200

debian/files

Lines changed: 0 additions & 1 deletion
This file was deleted.

debian/icinga-editor.debhelper.log

Lines changed: 5 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,6 @@
1+
dh_auto_configure
2+
dh_auto_build
3+
dh_auto_test
14
dh_prep
2-
dh_installdirs
3-
dh_install
4-
dh_installdebconf
5-
dh_installman
6-
dh_lintian
7-
dh_link
8-
dh_compress
9-
dh_fixperms
10-
dh_installdeb
11-
dh_gencontrol
12-
dh_md5sums
13-
dh_builddeb
14-
dh_builddeb
5+
dh_auto_install
6+
override_dh_install dh_install

debian/icinga-editor.postrm.debhelper

Lines changed: 0 additions & 6 deletions
This file was deleted.

debian/icinga-editor.substvars

Lines changed: 0 additions & 1 deletion
This file was deleted.

debian/revison

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

src/about.php

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<?php
2+
3+
namespace Flexplorer;
4+
5+
6+
namespace Icinga\Editor;
7+
8+
/**
9+
* Icinga Editor - hlavní strana
10+
*
11+
* @package IcingaEditor
12+
* @subpackage WebUI
13+
* @author Vitex <vitex@hippy.cz>
14+
* @copyright 2012 Vitex@hippy.cz (G)
15+
*/
16+
require_once 'includes/IEInit.php';
17+
18+
19+
$oPage->addItem(new UI\PageTop(_('O Aplikaci')));
20+
21+
$oPage->container->addItem('<br/><br/><br/><br/>');
22+
$oPage->container->addItem(new \Ease\Html\Div(nl2br(file_get_contents('../README.md')),
23+
['class' => 'jumbotron']));
24+
$oPage->container->addItem('<br/><br/><br/><br/>');
25+
26+
$oPage->addItem(new UI\PageBottom());
27+
28+
$oPage->draw();

0 commit comments

Comments
 (0)