Modifications for module installer in openemr.
[openemr.git] / interface / modules / zend_modules / module / Acl / view / layout / layout.phtml
blobeff1d9649f5b3946e814cf534146758dc1f57ece
1 <?php
2 /* +-----------------------------------------------------------------------------+
3 *    OpenEMR - Open Source Electronic Medical Record
4 *    Copyright (C) 2013 Z&H Consultancy Services Private Limited <sam@zhservices.com>
6 *    This program is free software: you can redistribute it and/or modify
7 *    it under the terms of the GNU Affero General Public License as
8 *    published by the Free Software Foundation, either version 3 of the
9 *    License, or (at your option) any later version.
11 *    This program is distributed in the hope that it will be useful,
12 *    but WITHOUT ANY WARRANTY; without even the implied warranty of
13 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 *    GNU Affero General Public License for more details.
16 *    You should have received a copy of the GNU Affero General Public License
17 *    along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 *    @author  Jacob T.Paul <jacob@zhservices.com>
19 *    @author  Basil PT <basil@zhservices.com>  
21 * +------------------------------------------------------------------------------+
24 echo $this->doctype(); 
27 <html lang="en">
28     <head>
29         <meta charset="utf-8">
30         <?php echo $this->headMeta()->appendName('viewport', 'width=device-width, initial-scale=1.0') ?>
32         <!-- Le styles -->
33         <?php echo $this->headLink(array('rel' => 'shortcut icon', 'type' => 'image/vnd.microsoft.icon', 'href' => $this->basePath() . '/images/favicon.ico'))
34                         ->prependStylesheet($this->basePath() . '/css/acl.css')
35                         ->prependStylesheet($this->basePath() . '/css/jquery.treeview-1.4.1/jquery.treeview.css')
36                         ->prependStylesheet($this->basePath() . '/css/easyui.css')
37                         ->prependStylesheet($this->basePath() . '/css/icon.css')
38                         ->prependStylesheet($this->basePath() . '/css/demo.css')
39                         ->prependStylesheet($this->basePath() . '/css/bootstrap-responsive.min.css')
40                         ->prependStylesheet($this->basePath() . '/css/style.css')
41                         ->prependStylesheet($this->basePath() . '/css/suggestion.css')
42                         ->prependStylesheet($this->basePath() . '/css/bubbletip-IE.css')
43                         ->prependStylesheet($this->basePath() . '/css/bubbletip.css')
44                         ->prependStylesheet($this->basePath() . '/css/bubbles.css')
45                         ->prependStylesheet($this->basePath() . '/css/jquery.custom-scrollbar.css')
46                         ->prependStylesheet($GLOBALS['css_header']) ?>
48         <!-- Scripts -->
49         <?php echo $this->headScript()
50                                         ->prependFile($this->basePath() . '/js/application/common.js')
51           ->prependFile($this->basePath() . '/js/lib/html5.js', 'text/javascript', array('conditional' => 'lt IE 9',))
52                                         ->prependFile($this->basePath() . '/js/lib/bootstrap.min.js')
53                                         ->prependFile($this->basePath() . '/js/acl/acl.js')
54                                         ->prependFile($this->basePath() . '/js/lib/jquery.treeview-1.4.1/jquery.treeview.js')
55                                         ->prependFile($this->basePath() . '/js/lib/jquery-ui.js')
56                                         ->prependFile($this->basePath() . '/js/lib/jquery.custom-scrollbar.js')
57                                         ->prependFile($this->basePath() . '/js/lib/jquery-1.8.0.min.js')
58                                         ?>
59     </head>
60     <body  class="container_body">
61         <div class="container2" style="width:100%">
62             <?php echo $this->content; ?>
63         </div> <!-- /container -->
64         <?php echo $this->inlineScript() ?>
65     </body>
66 </html>