-
Notifications
You must be signed in to change notification settings - Fork 2
/
reference.php
99 lines (85 loc) · 4.21 KB
/
reference.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<?php
declare(strict_types=1);
/**
* This file is part of the VitexSoftware package
*
* https://vitexsoftware.com/
*
* (c) Vítězslav Dvořák <http://vitexsoftware.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
require_once 'includes/VSInit.php';
$oPage->addItem(new \VSCZ\ui\PageTop(_('Vitex Software')));
$oPage->addJavaScript('$(\'.carousel\').carousel();', null, true);
$oPage->includeJavaScript('js/bootstrap-carousel.js');
$oPage->addItem(<<<'EOD'
<div id="myCarousel" class="carousel slide">
<div class="carousel-inner">
<div class="item active">
<img src="img/reference/slide-triband.png" alt="Triband">
<div class="carousel-caption">
<h4>Triband</h4>
<p>Elektronický obchod propojený s ekonomickým systémem PohodaSQL</p>
</div>
</div>
<div class="item">
<img src="img/reference/slide-legalizace.png" alt="">
<div class="carousel-caption">
<h4>Magazín legalizace</h4>
<p>Interaktivní objednávkový formulář</p>
</div>
</div>
<div class="item">
<img src="img/reference/slide-moloch.png" alt="FSMoloch">
<div class="carousel-caption">
<h4>Fakturační systém Moloch</h4>
<p>Objednávky, fakturace a peněžní denník</p>
</div>
</div>
<div class="item">
<img src="img/reference/slide-yinyang.png" alt="FSMoloch">
<div class="carousel-caption">
<h4><a href="http://www.yinyang.cz/">Obchod Yinyang.cz</a></h4>
<p>Doprogramování rozšířených atributů produktů. Update na PHP5.4</p>
</div>
</div>
<div class="item">
<img src="img/reference/mashhana.png" alt="Mash Hana">
<div class="carousel-caption">
<h4><a href="http://www.mashhana.cz/">Japonská restaurace MASH HANA</a></h4>
<p>Update OSCommerce na PHP5.4</p>
</div>
</div>
<div class="item">
<img src="img/reference/james-slide.png" alt="Gui & Commandline help">
<div class="carousel-caption">
<h4><a href="http://inmyhotel.net/">FaT DuX In My Hotel</a></h4>
<p>Captive networking portal for hotel customers</p>
</div>
</div>
<div class="item">
<img src="img/reference/flexplorer_main.jpeg" alt="Flexplorer">
<div class="carousel-caption">
<h4><a href="/flexplorer/">FlexPlorer</a></h4>
<p>Developers tool for <a href="http://flexibee.eu/">AbraFlexi</a> API/JSON</p>
</div>
</div>
</div>
<a class="left carousel-control" href="#myCarousel" data-slide="prev">‹</a>
<a class="right carousel-control" href="#myCarousel" data-slide="next">›</a>
</div>
EOD);
/*
$OPage->column3->addItem(new \Ease\Html\H3Tag(_('Reference')));
$Reference = $OPage->column3->addItem( new \Ease\Html\UlTag() );
$Reference->addItem(new \Ease\Html\ATag('/EaseFramework/', _('Ease Framework')));
$Trib = $Reference->addItem(new \Ease\Html\ATag('http://www.triband.cz/', _('Ease Shop společnosti triband')));
$Trib->addItem(new \Ease\Html\ImgTag('img/triband.png', 'Přehled zboží',200));
$Leg = $Reference->addItem(new \Ease\Html\ATag('http://www.magazin-legalizace.cz/', _('Objednávka předplatného magazínu Legalizace')));
$Leg->addItem(new \Ease\Html\ImgTag('img/magazin-legalizace.png', 'Registrace',200));
$Reference->addItem(new \Ease\Html\ATag('http://l.q.cz/', _('zkracovač adres LinkQuick')));
*/
$oPage->addItem(new \VSCZ\ui\PageBottom());
$oPage->draw();