add multi database option along with related zend configuration module (#439)
[openemr.git] / interface / modules / zend_modules / module / Multipledb / view / layout / layout.phtml
blob358bca14feff5c9da817f769c14cadc61b6e4c1b
1 <?php
3 /* +-----------------------------------------------------------------------------+
4 * Copyright 2016 matrix israel
5 * LICENSE: This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 3
8 * of the License, or (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see
15 * http://www.gnu.org/licenses/licenses.html#GPL
16 *    @author  Oshri Rozmarin <oshri.rozmarin@gmail.com>
17 * +------------------------------------------------------------------------------+
18  *
19  */
23 <?php echo $this->doctype(); ?>
25 <html lang="en">
26 <head>
27     <meta charset="utf-8">
29     <?php $this->headMeta()->appendName('viewport', 'width=device-width, initial-scale=1.0');
30     echo $this->headMeta();
31     ?>
33     <!-- css files -->
34     <?php foreach($this->cssFiles as $file){
36         $this->headLink()->appendStylesheet( $GLOBALS['assets_static_relative']  . $file);
37     }
38     $this->headLink()->appendStylesheet( $this->basePath()  . '/css/multipledb/multipledb.css');
39     echo $this->headLink();
40     ?>
42     <!-- Scripts -->
43     <?php
44     foreach($this->jsFiles as $file){
46         $this->headScript()->appendFile($GLOBALS['assets_static_relative']   . $file);
47     }
48     echo  $this->headScript() ;
49     ?>
51 </head>
53 <body class="container-fluid body_top " dir="<?php echo $language_direction?>" >
54 <nav class="navbar navbar-default">
55     <div class="container-fluid">
56         <div class="navbar-header">
57             <!--button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
58                 <span class="sr-only">Toggle navigation</span>
59                 <span class="icon-bar"></span>
60                 <span class="icon-bar"></span>
61                 <span class="icon-bar"></span>
62             <button-->
64             <a class="navbar-brand" href="#"><?php echo $this->escapeHtml($title);?></a>
65         </div>
66         <div id="navbar" class="navbar-collapse collapse">
67             <ul class="nav navbar-nav">
69             </ul>
70             <ul class="nav navbar-nav navbar-right">
72             </ul>
73         </div><!--/.nav-collapse -->
74     </div>
75 </nav><!----end of nav--->
77     <div class='row'>
78         <div class="col-md-12">
79             <?php echo $this->content; ?>
80         </div>
81     </div>
82     <footer>
84     </footer>
85 </div>