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
<? @include_once("../../includes/common.php"); ?>
<?
if($panel && is_array($panel)) {
if(is_numeric($panel['panel_height'])) $panel['panel_height'].="px";
$visible="";
if($panel['panel_visible']!="all") $visible=$panel['panel_visible'];
?>
<div class="panel col-lg-<?=$panel['panel_cols']?> panel-media-low <?=$visible?>" style="height: <?=$panel['panel_height']?>">
<?
if($panel['panel_title']!="") {
?>
<div class="panel-heading"><h2 class="panel-title"><?=$panel['panel_title']?></h2></div>
<?
}
$height="";
$dmfull="";
if($panel['panel_height']!="" && intval($panel['panel_height'])>0) {
$height="style=\"height:".$panel['panel_height']."\"";
$dmheight="style=\"height:".strval(intval($panel['panel_height'])-30)."px\"";
if(endsWith($panel['panel_height'], '%')) {
$dmfull="domotika-panel-full";
$dmheight="style=\"height:100%;\"";
}
}
elseif($panel['panel_height']!="" && intval($panel['panel_height'])==0) {
$height="style=\"height:100%;\"";
$dmfull="domotika-panel-full";
$dmheight="style=\"height:100%;\"";
}
?>
<div class="domotika-panel <?=$dmfull;?>" <?=$dmheight;?>>
<?
?>
<button type="button" class="btn btn-lg btn-primary" style="height:50%;width:30%;margin-top:3px;">Primary button</button>
<button type="button" class="btn btn-lg btn-primary" style="height:50%;width:30%;margin-top:3px;">Primary button</button>
<button type="button" class="btn btn-lg btn-primary" style="height:50%;width:30%;margin-top:3px;">Primary button</button>
<button type="button" class="btn btn-lg btn-primary" style="height:50%;width:30%;margin-top:3px;">Primary button</button>
<button type="button" class="btn btn-lg btn-primary" style="height:50%;width:30%;margin-top:3px;">Primary button</button>
<button type="button" class="btn btn-lg btn-primary" style="height:50%;width:30%;margin-top:3px;">Primary button</button>
</div>
</div>
<?}?>