-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathEditAttributeDefinition.ascx.cs
263 lines (224 loc) · 9.08 KB
/
EditAttributeDefinition.ascx.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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
using Globals = DotNetNuke.Common.Globals;
using DotNetNuke.Services.Exceptions;
using DotNetNuke.Common.Lists;
using DotNetNuke.Services.Localization;
using DotNetNuke.UI.Utilities;
using DotNetNuke.Common.Utilities;
using System;
namespace Engage.Dnn.Locator
{
using System.Globalization;
partial class EditAttributeDefinition : ModuleBase
{
protected override void OnInit(EventArgs e)
{
base.OnInit(e);
divDelete.Visible = ((bool)IsAddMode == false);
lgDefinitions.InnerText = Localization.GetString("lgDefinitions", LocalResourceFile);
}
#region Private Members
//private string ResourceFile = "~/Admin/Users/App_LocalResources/LocationType.ascx";
#endregion
#region Protected Members
[System.Diagnostics.DebuggerBrowsable(System.Diagnostics.DebuggerBrowsableState.Never)]
protected bool IsAddMode
{
get { return Request.QueryString["AttributeDefinitionID"] == null; }
}
protected bool IsList
{
get
{
bool _IsList = false;
ListController objListController = new ListController();
ListEntryInfo dataType = objListController.GetListEntryInfo(AttributeDefinition.DataType);
if (((dataType != null)) && (dataType.ListName == "DataType") && (dataType.Value == "List"))
{
_IsList = true;
}
return _IsList;
}
}
protected bool IsSuperUser
{
get
{
if (PortalSettings.ActiveTab.ParentId == PortalSettings.SuperTabId)
{
return true;
}
else
{
return false;
}
}
}
[System.Diagnostics.DebuggerBrowsable(System.Diagnostics.DebuggerBrowsableState.Never)]
private AttributeDefinition _attributeDefinition;
protected AttributeDefinition AttributeDefinition
{
get
{
//_attributeDefinition = LocationType.GetAttributeDefinition(AttributeDefinitionId, LocationTypeId);
if (_attributeDefinition == null)
{
if ((bool)IsAddMode)
{
//Create New Attribute Definition
_attributeDefinition = new AttributeDefinition();
_attributeDefinition.PortalId = UsersPortalId;
_attributeDefinition.LocationTypeId = LocationTypeId;
ListController controller = new ListController();
ListEntryInfo info = controller.GetListEntryInfo("DataType", "Text");
_attributeDefinition.DataType = info.EntryID;
_attributeDefinition.AttributeName = txtName.Text;
_attributeDefinition.DefaultValue = txtDefaultValue.Text;
_attributeDefinition.ViewOrder = LocationType.GetAttributeDefinitions(LocationTypeId).Count;
}
else
{
//Get Attribute Definition from Data Store
_attributeDefinition = LocationType.GetAttributeDefinition(AttributeDefinitionId, LocationTypeId);
}
}
return _attributeDefinition;
}
}
protected int AttributeDefinitionId
{
get
{
int id = Null.NullInteger;
if (ViewState["AttributeDefinitionID"] != null)
{
id = Int32.Parse(ViewState["AttributeDefinitionID"].ToString(), CultureInfo.InvariantCulture);
}
if (Request.QueryString["AttributeDefinitionId"] != null)
{
id = Convert.ToInt32(Request.QueryString["AttributeDefinitionId"], CultureInfo.InvariantCulture);
}
return id;
}
set
{
ViewState["AttributeDefinitionID"] = value;
}
}
protected int LocationTypeId
{
get
{
int id = Null.NullInteger;
if (Request.QueryString["ltid"] != null)
{
id = Int32.Parse(this.Request.QueryString["ltid"], CultureInfo.InvariantCulture);
}
return id;
}
}
protected int UsersPortalId
{
get
{
int id = PortalId;
if (IsSuperUser)
{
id = Null.NullInteger;
}
return id;
}
}
#endregion
#region Event Handlers
private void Page_Load(object sender, System.EventArgs e)
{
try
{
// Get Attribute Definition Id from Querystring (unless its been stored in the Viewstate)
if (AttributeDefinitionId == Null.NullInteger)
{
if ((Request.QueryString["AttributeDefinitionId"] != null))
{
AttributeDefinitionId = Int32.Parse(Request.QueryString["AttributeDefinitionId"], CultureInfo.InvariantCulture);
}
else
{
cmdDelete.Visible = false;
}
}
if (!Page.IsPostBack)
{
// Add Delete Confirmation
cmdDelete.Visible = true;
ClientAPI.AddButtonConfirm(cmdDelete, Localization.GetString("DeleteAttribute", LocalResourceFile));
BindData();
}
}
catch (Exception exc)
{
//Module failed to load
Exceptions.ProcessModuleLoadException(this, exc);
}
}
protected void cmdUpdate_Click(object sender, System.Web.UI.ImageClickEventArgs e)
{
try
{
AttributeDefinition.AttributeName = txtName.Text;
AttributeDefinition.DefaultValue = txtDefaultValue.Text;
if (this.IsAddMode)
{
LocationType.AddAttributeDefinition(AttributeDefinition);
Response.Redirect(Globals.NavigateURL(PortalSettings.ActiveTab.TabID, "AttributeDefinitions", "mid=" + ModuleId.ToString(CultureInfo.InvariantCulture) + "<id=" + LocationTypeId.ToString(CultureInfo.InvariantCulture)));
}
else
{
LocationType.UpdateAttributeDefinition(AttributeDefinition);
Response.Redirect(Globals.NavigateURL(PortalSettings.ActiveTab.TabID, "AttributeDefinitions", "mid=" + ModuleId.ToString(CultureInfo.InvariantCulture) + "<id=" + LocationTypeId.ToString(CultureInfo.InvariantCulture)));
}
}
catch (ModuleLoadException exc)
{
// Module failed to load
Exceptions.ProcessModuleLoadException(this, exc);
}
}
protected void cmdCancel_Click(object sender, System.Web.UI.ImageClickEventArgs e)
{
try
{
Response.Redirect(Globals.NavigateURL(PortalSettings.ActiveTab.TabID, "AttributeDefinitions", "mid=" + ModuleId.ToString(CultureInfo.InvariantCulture) + "<id=" + LocationTypeId.ToString(CultureInfo.InvariantCulture)));
}
catch (ModuleLoadException exc)
{
//Module failed to load
Exceptions.ProcessModuleLoadException(this, exc);
}
}
protected void cmdDelete_Click(object sender, System.Web.UI.ImageClickEventArgs e)
{
try
{
if (AttributeDefinitionId != Null.NullInteger)
{
//Delete the Attribute Definition
LocationType.DeleteAttributeDefinition(AttributeDefinition);
}
//Redirect to Definitions page
Response.Redirect(EditUrl("AttributeDefinitions"), true);
}
catch (ModuleLoadException exc)
{
//Module failed to load
Exceptions.ProcessModuleLoadException(this, exc);
}
}
#endregion
private void BindData()
{
_attributeDefinition = LocationType.GetAttributeDefinition(AttributeDefinitionId, LocationTypeId);
txtName.Text = AttributeDefinition.AttributeName;
txtDefaultValue.Text = AttributeDefinition.DefaultValue;
}
}
}