-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscripts.php
More file actions
28 lines (22 loc) · 1.5 KB
/
scripts.php
File metadata and controls
28 lines (22 loc) · 1.5 KB
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
<?php
namespace Vanderbilt\DataModelBrowserExternalModule;
echo $module->loadREDCapJS(); ?>
<script src="<?= $module->getUrl('js/jquery.dataTables.min.js') ?>"></script>
<script src="<?= $module->getUrl('js/dataTables.select.min.js') ?>"></script>
<script src="<?= $module->getUrl('js/dataTables.buttons.min.js') ?>"></script>
<script type="text/javascript" src="<?= $module->getUrl('js/functions.js') ?>"></script>
<script type="text/javascript" src="<?= $module->getUrl('js/jquery-ui.min.js') ?>"></script>
<script type="text/javascript" src="<?= $module->getUrl('js/jquery.tablesorter.min.js') ?>"></script>
<link type='text/css' href='<?= $module->getUrl('js/fonts-awesome/css/font-awesome.min.css') ?>' rel='stylesheet'
media='screen'/>
<link rel="stylesheet" type="text/css" href="<?= $module->getUrl('css/bootstrap.min.css') ?>">
<link rel="stylesheet" type="text/css" href="<?= $module->getUrl('css/style.css') ?>">
<link type='text/css' href='<?= $module->getUrl('css/tabs-steps-menu.css') ?>' rel='stylesheet' media='screen'/>
<link type='text/css' href='<?= $module->getUrl('css/sortable-theme-bootstrap.css') ?>' rel='stylesheet'
media='screen'/>
<link type='text/css' href='<?= $module->getUrl('css/jquery-ui.min.css') ?>' rel='stylesheet' media='screen'/>
<script>
var startDDProjects_url = <?=json_encode($module->getUrl('startDDProjects.php'))?>;
var downloadPDF_AJAX_url = <?=json_encode($module->getUrl('options/downloadPDF_AJAX.php'))?>;
var pid = <?=json_encode($pid)?>;
</script>