Openemr fix 5665 vitals being squashed (#5668)
[openemr.git] / config / config.yaml
blob7f01981e2dc91a76958fe6e53c56cb050d09d09f
1 ---
2 # Use %KEY-NAME% in this file and it will be replaced with the value of
3 # $GLOBALS['KEY-NAME'] if it exists. If the key name does not exist, this script
4 # won't work (Need to build in proper error handling @TODO RD 2017-05-16
6 # Example usage:
7 # assets: Top-level key name (Required)
8 #     asset-short-name: Short name
9 #         basePath: %assets_static_relative%/full/path/to/deepest/common/file
10 #         script: null filename or null
11 #         link: jquery-ui.min.css filename or null
12 #         autoload: true (defaults to false)
13 #         loadInFile: relative path to file, load always in specific file (defaults to false) for custom assets.
14 assets:
15     jquery:
16         basePath: '%assets_static_relative%/jquery/dist/'
17         script: jquery.min.js
18         autoload: true
19         allowNoLoad: true
20     bootstrap:
21         basePath: '%assets_static_relative%/bootstrap/dist/'
22         script: js/bootstrap.bundle.min.js
23         # Bootstrap is included in main themes via SASS
24         #  So will only use below css link if no_main-theme token is provided.
25         #  TODO - incorporate this mechanism for rtl when rtl bootrap SASS mechanism is up and running
26         link: css/bootstrap.min.css
27         autoload: true
28         allowNoLoad: true
29         # RTL only for no_main-theme which is rare
30         rtl:
31             basePath: '%assets_static_relative%/bootstrap-rtl/dist/'
32             link: css/bootstrap-rtl.min.css
33     # keep utility and javaScript translations near top of load order.
34     i18next:
35         basePath: '%assets_static_relative%/i18next/dist/umd/'
36         script: i18next.min.js
37     i18next-xhr-backend:
38         basePath: '%assets_static_relative%/i18next-xhr-backend/dist/umd/'
39         script: i18nextXHRBackend.min.js
40     i18next-browser-languagedetector:
41         basePath: '%assets_static_relative%/i18next-browser-languagedetector/dist/umd/'
42         script: i18nextBrowserLanguageDetector.min.js
43     utility:
44         basePath: '%webroot%/library/js/'
45         script: utility.js
46         autoload: true
47         allowNoLoad: true
48     main-theme:
49         alreadyBuilt: true
50         link: '%css_header%'
51         autoload: true
52         allowNoLoad: true
53     # The compact theme asset follows the allowNoLoad setting of the main-theme asset
54     # ie. no-main-theme token will also skip the compact-theme
55     compact-theme:
56         alreadyBuilt: true
57         link: '%compact_header%'
58         autoload: true
59         allowNoLoad: true
60     tabs-theme:
61         basePath: '%webroot%/public/themes/'
62         link: '%theme_tabs_layout%'
63         rtl:
64             basePath: '%webroot%/public/themes/'
65             link: rtl_%theme_tabs_layout%
66     pdf-style:
67         basePath: '%webroot%/public/themes/'
68         link: style_pdf.css
69     patientportal-base:
70         basePath: '%webroot%/public/themes/'
71         link: patientportal-base.css
72         rtl:
73             basePath: '%webroot%/public/themes/'
74             link: rtl_patientportal-base.css
75     patientportal-register:
76         basePath: '%webroot%/public/themes/'
77         link: patientportal-register.css
78         rtl:
79             basePath: '%webroot%/public/themes/'
80             link: rtl_patientportal-register.css
81     patientportal-style:
82         basePath: '%webroot%/public/themes/'
83         link: patientportal-style.css
84         rtl:
85             basePath: '%webroot%/public/themes/'
86             link: rtl_patientportal-style.css
87     knockout:
88         basePath: '%assets_static_relative%/knockout/build/output/'
89         script: knockout-latest.js
90     jquery-ui:
91         basePath: '%assets_static_relative%/jquery-ui/'
92         script: jquery-ui.min.js
93     jquery-ui-theme:
94         basePath: '%assets_static_relative%/jquery-ui/'
95         link: jquery-ui.theme.css
96     jquery-ui-base:
97         basePath: '%assets_static_relative%/jquery-ui-themes/themes/base/'
98         link: jquery-ui.min.css
99     jquery-ui-darkness:
100         basePath: '%assets_static_relative%/jquery-ui-themes/themes/ui-darkness/'
101         link: jquery-ui.min.css
102     jquery-ui-sunny:
103         basePath: '%assets_static_relative%/jquery-ui-themes/themes/sunny/'
104         link: jquery-ui.min.css
105     jquery-ui-redmond:
106         basePath: '%assets_static_relative%/jquery-ui-themes/themes/redmond/'
107         link: jquery-ui.min.css
108     jquery-ui-cupertino:
109         basePath: '%assets_static_relative%/jquery-ui-themes/themes/cupertino/'
110         link: jquery-ui.min.css
111     jquery-ui-lightness:
112         basePath: '%assets_static_relative%/jquery-ui-themes/themes/ui-lightness/'
113         link: jquery-ui.min.css
114     jquery-ui-excite-bike:
115         basePath: '%assets_static_relative%/jquery-ui-themes/themes/excite-bike/'
116         link: jquery-ui.min.css
117     datatables:
118         basePath: '%assets_static_relative%/datatables.net/js/'
119         script: jquery.dataTables.min.js
120     datatables-colreorder:
121         basePath: '%assets_static_relative%'
122         link: /datatables.net-colreorder-dt/css/colReorder.dataTables.min.css
123         script: /datatables.net-colreorder/js/dataTables.colReorder.min.js
124     datatables-dt:
125         basePath: '%assets_static_relative%/datatables.net-dt/css/'
126         link: jquery.dataTables.min.css
127     datatables-bs:
128         basePath: '%assets_static_relative%/datatables.net-bs4/'
129         script: js/dataTables.bootstrap4.min.js
130         link: css/dataTables.bootstrap4.min.css
131     datatables-jqui:
132         basePath: '%assets_static_relative%/datatables.net-jqui/js/'
133         script: dataTables.jqueryui.min.js
134     datatables-jqui-theme:
135         basePath: '%assets_static_relative%/datatables.net-jqui/css/'
136         link: dataTables.jqueryui.min.css
137     datatables-scroller:
138         basePath: '%assets_static_relative%/datatables.net-scroller/js/'
139         script: dataTables.scroller.min.js
140     datatables-scroller-jqui-theme:
141         basePath: '%assets_static_relative%/datatables.net-scroller-jqui/css/'
142         link: scroller.jqueryui.min.css
143     fontawesome:
144         basePath: '%assets_static_relative%/@fortawesome/fontawesome-free/css/'
145         link: all.min.css
146     datetime-picker:
147         basePath: '%assets_static_relative%/jquery-datetimepicker/build/'
148         script: jquery.datetimepicker.full.min.js
149         link: jquery.datetimepicker.min.css
150     report-helper:
151         basePath: '%webroot%/library/js/'
152         script: report_helper.js
153     opener:
154         basePath: '%webroot%/interface/main/tabs/js/'
155         script: include_opener.js
156     topdialog:
157         basePath: '%webroot%/library/'
158         script: topdialog.js
159     common:
160         basePath: '%webroot%/library/js/'
161         script: common.js
162     textformat:
163         basePath: '%webroot%/library/'
164         script: textformat.js
165         autoload: true
166         allowNoLoad: true
167     dialog:
168         basePath: '%webroot%/library/'
169         script: dialog.js
170         autoload: true
171         allowNoLoad: true
172     select2:
173         basePath: '%assets_static_relative%/select2/dist/'
174         script: js/select2.full.min.js
175         link:
176             - css/select2.min.css
177             # BS4 theme moved to main theme assets to allow fluidity
178     jscolor:
179         basePath: '%assets_static_relative%/@eastdesire/jscolor/'
180         script: jscolor.min.js
181     esign:
182         basePath: '%webroot%/library/ESign/'
183         script: js/jquery.esign.js
184         link: css/esign.css
185     esign-theme-only:
186         basePath: '%webroot%/library/ESign/'
187         link: css/esign.css
188     dygraphs:
189         basePath: '%assets_static_relative%/modified/dygraphs-2-0-0/'
190         script: dygraph.js
191         link: dygraph.css
192     moment:
193         basePath: '%assets_static_relative%/moment/min/'
194         script: moment.min.js
195     purecss:
196         basePath: '%assets_static_relative%/purecss/build/'
197         link: pure-min.css
198     angular:
199         basePath: '%assets_static_relative%/angular/'
200         script: angular.min.js
201     angular-sanitize:
202         basePath: '%assets_static_relative%/angular-sanitize/'
203         script: angular-sanitize.min.js
204     backbone:
205         basePath: '%assets_static_relative%/backbone/'
206         script: backbone-min.js
207     checklist-model:
208         basePath: '%assets_static_relative%/checklist-model/'
209         script: checklist-model.js
210     underscore:
211         basePath: '%assets_static_relative%/underscore/'
212         script: underscore-min.js
213     ckeditor:
214         basePath: '%assets_static_relative%/ckeditor4/'
215         script: ckeditor.js
216     search-highlight:
217         basePath: '%webroot%/library/js/'
218         script: SearchHighlight.js
219     track-anything:
220         basePath: '%webroot%/interface/forms/track_anything/'
221         link: style.css
222     konva:
223         basePath: '%assets_static_relative%/konva/'
224         script: konva.min.js
225     magic-wand:
226         basePath: '%assets_static_relative%/magic-wand-js/js/'
227         script: magic-wand-min.js
228     jszip:
229         basePath: '%assets_static_relative%/jszip/dist/'
230         script: jszip.min.js
231     jspdf:
232         basePath: '%assets_static_relative%/jspdf/dist/'
233         script: jspdf.umd.min.js
234     dwv:
235         basePath: '%assets_static_relative%/dwv/'
236         script:
237             - decoders/pdfjs/jpx.js
238             - decoders/pdfjs/util.js
239             - decoders/pdfjs/arithmetic_decoder.js
240             - decoders/pdfjs/jpg.js
241             - decoders/rii-mango/lossless-min.js
242             - dist/dwv.min.js
243     sortablejs:
244       basePath: '%assets_static_relative%/sortablejs/'
245       script: Sortable.min.js
246     hotkeys:
247         basePath: '%assets_static_relative%/hotkeys-js/'
248         script:
249             - dist/hotkeys.min.js
250     reason-code-widget:
251         basePath: '%webroot%/library/js/'
252         script: reasonCodeWidget.js
253     erx:
254         basePath: '%webroot%/library/js/'
255         script: erx_javascript.js
256     checkpwd_validation:
257         basePath: '%webroot%/interface/usergroup/'
258         script: checkpwd_validation.js