Skip to content

Commit

Permalink
Merge pull request #6080 from dnnsoftware/develop
Browse files Browse the repository at this point in the history
Updates `release/10.0.0` with the latest changes from `develop`
  • Loading branch information
valadas authored Jun 21, 2024
2 parents 9524d28 + 6bb29fc commit 4823a71
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@
if (!rootText || rootText.length == 0) {
return;
}
root.append("<li class=\"" + rootClass + "\"><div>" + rootText + "</div>");
root.append("<li class=\"" + rootClass + "\"><div>" + moduleId + ":" + rootText + "</div>");
}

function buildQuickSettings(root, rootText, rootClass, rootIcon) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<xsd:schema id="root" xmlns="" xmlns:xsd="https://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
Expand Down Expand Up @@ -370,4 +370,10 @@
<data name="MonikerExists.Text" xml:space="preserve">
<value>The new value of the moniker already exists; it must be unique in the portal.</value>
</data>
<data name="plModuleId.Help" xml:space="preserve">
<value>Displays the id of the module.</value>
</data>
<data name="plModuleId.Text" xml:space="preserve">
<value>Module Id</value>
</data>
</root>
4 changes: 4 additions & 0 deletions DNN Platform/Website/admin/Modules/Modulesettings.ascx
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@
<div class="msmsContent dnnClear">
<h2 id="dnnPanel-ModuleGeneralDetails" class="dnnFormSectionHead"><a href="" class="dnnSectionExpanded"><%=LocalizeString("GeneralDetails")%></a></h2>
<fieldset>
<div class="dnnFormItem">
<dnn:label id="plModuleId" runat="server" controlname="ltModuleId" />
<span><asp:Literal ID="ltModuleId" runat="server"></asp:Literal></span>
</div>
<div class="dnnFormItem" id="cultureRow" runat="server">
<dnn:label id="cultureLabel" runat="server" controlname="cultureLanguageLabel" />
<dnnweb:dnnlanguagelabel id="cultureLanguageLabel" runat="server" />
Expand Down
1 change: 1 addition & 0 deletions DNN Platform/Website/admin/Modules/Modulesettings.ascx.cs
Original file line number Diff line number Diff line change
Expand Up @@ -592,6 +592,7 @@ private void BindData()
this.dgPermissions.InheritViewPermissionsFromTab = this.Module.InheritViewPermissions;
}

this.ltModuleId.Text = this.module.ModuleID.ToString();
this.txtFriendlyName.Text = this.Module.DesktopModule.FriendlyName;
this.txtTitle.Text = this.Module.ModuleTitle;
this.ctlIcon.Url = this.Module.IconFile;
Expand Down
12 changes: 12 additions & 0 deletions DNN Platform/Website/admin/Modules/Modulesettings.ascx.designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 4823a71

Please sign in to comment.