-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathModuleBase.cs
136 lines (119 loc) · 17.6 KB
/
ModuleBase.cs
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information
namespace StructuredContent
{
using System;
using DotNetNuke.Entities.Modules;
using DotNetNuke.Framework.JavaScriptLibraries;
using DotNetNuke.Web.Client.ClientResourceManagement;
/// <inheritdoc/>
public class ModuleBase : PortalModuleBase
{
/// <summary>
/// Hooks into the Page_Load event.
/// </summary>
/// <param name="sender">The page.</param>
/// <param name="e">The event.</param>
protected void Page_Load(object sender, EventArgs e)
{
JavaScript.RequestRegistration(CommonJs.jQuery);
JavaScript.RequestRegistration(CommonJs.jQueryUI);
ClientResourceManager.RegisterStyleSheet(this.Page, this.ResolveUrl("https://use.fontawesome.com/releases/v5.7.2/css/all.css"), 1);
ClientResourceManager.RegisterStyleSheet(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/plugins/bootstrap/css/bootstrap.css"), 2);
ClientResourceManager.RegisterStyleSheet(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/plugins/angular-toastr/angular-toastr.min.css"), 1);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("https://ajax.googleapis.com/ajax/libs/angularjs/1.8.2/angular.min.js"), 2);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("https://ajax.googleapis.com/ajax/libs/angularjs/1.8.2/angular-messages.min.js"), 3);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("https://ajax.googleapis.com/ajax/libs/angularjs/1.8.2/angular-animate.min.js"), 3);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("https://ajax.googleapis.com/ajax/libs/angularjs/1.8.2/angular-sanitize.min.js"), 4);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("https://ajax.googleapis.com/ajax/libs/angularjs/1.8.2/angular-cookies.min.js"), 4);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/plugins/angular-toastr/angular-toastr.tpls.min.js"), 5);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/plugins/ui.bootstrap/ui-bootstrap-tpls-2.5.0.min.js"), 6);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/plugins/angular-drap-and-drop-lists/angular-drap-and-drop-lists.min.js"), 5);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/plugins/ngMask/ngMask.min.js"), 5);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/app.js"), 20);
// content-field-type-options
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-field-type-options/boolean/directive.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-field-type-options/boolean/controller.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-field-type-options/choice/directive.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-field-type-options/choice/controller.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-field-type-options/date-time/directive.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-field-type-options/date-time/controller.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-field-type-options/email/directive.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-field-type-options/email/controller.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-field-type-options/number/directive.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-field-type-options/number/controller.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-field-type-options/phone-number/directive.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-field-type-options/phone-number/controller.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-field-type-options/static/directive.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-field-type-options/static/controller.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-field-type-options/text/directive.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-field-type-options/text/controller.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-field-type-options/url/directive.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-field-type-options/url/controller.js"), 21);
// content-field-types
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-field-types/service.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-field-types/boolean/directive.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-field-types/boolean/controller.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-field-types/choice/directive.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-field-types/choice/controller.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-field-types/choice/edit/controller.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-field-types/date-time/directive.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-field-types/date-time/controller.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-field-types/email/directive.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-field-types/email/controller.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-field-types/number/directive.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-field-types/number/controller.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-field-types/phone-number/directive.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-field-types/phone-number/controller.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-field-types/related-content-multiple/list/directive.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-field-types/related-content-multiple/list/controller.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-field-types/related-content-multiple/add/directive.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-field-types/related-content-multiple/add/controller.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-field-types/related-content-multiple/delete/directive.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-field-types/related-content-multiple/delete/controller.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-field-types/related-content-single/directive.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-field-types/related-content-single/controller.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-field-types/static/directive.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-field-types/static/controller.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-field-types/text/directive.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-field-types/text/controller.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-field-types/url/directive.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-field-types/url/controller.js"), 21);
// content-types
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-types/service.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-types/list/directive.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-types/list/controller.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-types/add/controller.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-types/edit/controller.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-types/delete/controller.js"), 21);
// content-fields
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-fields/service.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-fields/edit/controller.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-fields/delete/controller.js"), 21);
// content-item
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-items/service.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-items/list/controller.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-items/edit/controller.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/content-items/delete/controller.js"), 21);
// relationship
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/relationships/service.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/relationships/edit/controller.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/relationships/delete/controller.js"), 21);
// revision
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/revisions/service.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/revisions/detail/controller.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/revisions/list/controller.js"), 21);
// visualizer-template
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/visualizer-templates/service.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/visualizer-templates/list/controller.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/visualizer-templates/edit/controller.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/visualizer-templates/delete/controller.js"), 21);
// visualizers
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/visualizers/service.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/visualizers/edit/controller.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/visualizers/view/controller.js"), 21);
ClientResourceManager.RegisterScript(this.Page, this.ResolveUrl("~/DesktopModules/Admin/Dnn.PersonaBar/Modules/Dnn.StructuredContent/app/visualizers/view/directive.js"), 21);
}
}
}