-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathehrAdmin.html
More file actions
45 lines (42 loc) · 2.88 KB
/
ehrAdmin.html
File metadata and controls
45 lines (42 loc) · 2.88 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<script type="text/javascript" nonce="<%=scriptNonce%>">
Ext4.onReady(function (){
var webpart = <%=webpartContext%>;
Ext4.create('LDK.panel.NavPanel', {
renderTo: webpart.wrapperDivId,
width: '100%',
sections: [{
header: 'Admin',
items: [
{name: 'ETL Admin', url: '<%=contextPath%><%=containerPath%>/dataintegration-begin.view'},
{name: 'Genetics Calculations', url: '<%=contextPath%><%=containerPath%>/ehr-geneticCalculationSettings.view'},
{name: 'Manage EHR Study', url: '<%=contextPath%><%=containerPath%>/study-manageStudy.view'},
{name: 'Populate Initial Data', url: '<%=contextPath%><%=containerPath%>/SNPRC_EHR-populateData.view'},
{name: 'SND Settings', url: '<%=contextPath%><%=containerPath%>/SNPRC_EHR-SNDSettings.view'},
{name: 'Add EHR extensible columns', url: '<%=contextPath%><%=containerPath%>/SNPRC_EHR-EhrColumns.view'},
{name: 'Record Delete Settings', url: '<%=contextPath%><%=containerPath%>/ehr-recordDeleteSettings.view'},
{name: 'Run Custom SQL', url: '<%=contextPath%><%=containerPath%>/ldk-runCustomSql.view?schemaName=study'},
{name: 'Set EHR Module Properties', url: '<%=contextPath%><%=containerPath%>/core-modulePropertyAdmin.view?moduleName=EHR'},
{name: 'Configure SSRS Properties', url: '<%=contextPath%><%=containerPath%>/snprc_ehr-ssrsConfig.view'},
{name: 'Update Study QCStates', url: '<%=contextPath%><%=containerPath%>/ehr-ensureQCStates.view'},
{name: 'Verify Dataset Resources', url: '<%=contextPath%><%=containerPath%>/ehr-verifyDatasetResources.view'},
{name: 'Verify Dataset Columns', url: '<%=contextPath%><%=containerPath%>/ehr-validateDataSetCols.view'},
{name: 'Verify EHR Schema Indexes Are Compressed', url: '<%=contextPath%><%=containerPath%>/ehr-ensureEHRSchemaIndexes.view'},
{name: 'Cache Demographics On All Living Animals', url: '<%=contextPath%><%=containerPath%>/ehr-cacheLivingAnimals.view'},
{name: 'Cache Demographics On All Animals', url: '<%=contextPath%><%=containerPath%>/ehr-cacheLivingAnimals.view?includeAll=true'},
{name: 'Prime/Refresh Data Entry Cache', url: '<%=contextPath%><%=containerPath%>/ehr-primeDataEntryCache.view'}
]
},{
header: 'Logs',
items: [
{name: 'Labkey.log', url: '<%=contextPath%>' + '/admin-showPrimaryLog.view'},
{name: 'Labkey-errors.log', url: '<%=contextPath%>' + '/admin-showAllErrors.view'}
]
},{
header: 'Notifications',
items: [
{name: 'Notification Admin', url: '<%=contextPath%><%=containerPath%>/ldk-notificationAdmin.view'}
]
}]
});
});
</script>