footbar.php 1.57 KB
Newer Older
nextime's avatar
nextime committed
1
<? @include_once("../includes/common.php"); ?>
2 3 4 5 6
<?
$webspeech="";
if($_DOMOTIKA['webspeech']=='touch')
   $webspeech='x-webkit-speech="x-webkit-speech"';
?>
nextime's avatar
nextime committed
7
<div class="navbar navbar-fixed-bottom">
8
   <a class="navbar-brand" href="http://www.unixmedia.it" target=_blank>Domotika</a>
nextime's avatar
nextime committed
9
   <p class="navbar-text hidden-sm"><a href="http://www.unixmedia.it" class="navbar-link" target=_blank>by Unixmedia</a></p>
10
   <button id="speechbutton" type="button" class="btn btn-default navbar-btn pull-right speechbutton"></button>
nextime's avatar
nextime committed
11
   <form id="speech" class="navbar-form footbar-form hidden-sm"> 
12
      <input type="text" id="speechinp" name="text" value="" class="form-control" <?=$webspeech?> lang="<?=$_DOMOTIKA['speechlang']?>" placeholder="Command">
nextime's avatar
nextime committed
13 14
   </form> 
   <form id="speechsm" class="navbar-form footbar-form-sm visible-sm"> 
15
      <input type="text" id="speechinp" name="text" value="" class="form-control" <?=$webspeech?> lang="<?=$_DOMOTIKA['speechlang']?>" placeholder="Command">
nextime's avatar
nextime committed
16
   </form> 
17
   <button id="notifybutton" type="button" class="btn btn-default navbar-btn pull-right notifybutton">
nextime's avatar
nextime committed
18 19 20 21 22 23 24 25 26 27 28 29 30 31
      <span id="notifybadge" class="badge">0</span>
   </button>
   <a class="btn btn-default navbar-btn pull-right homebutton" href="<?=$BASEGUIPATH;?>"></a>

  <div id="notifypanel" class="panel notifypanel">
    <div class="panel-heading"><h4>Notifications<i class="glyphicon glyphicon-remove pull-right" id="notify-removeall"></i></h4></div>
    <div class="notifylist">
      <div id="notifications" class="list-group" data-snap-ignore="true">
      </div>
    </div>
  </div>

</div><!-- /.navbar -->