-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #730 from Timo-Breumelhof/feature/dnn5-skos
DNN 5 SKOs
- Loading branch information
Showing
21 changed files
with
870 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
42 changes: 42 additions & 0 deletions
42
content/tutorials/themes/theme-objects/contentpane/index.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
--- | ||
uid: contentpane | ||
locale: en | ||
title: Contentpane Theme object | ||
dnnversion: 09.02.00 | ||
previous-topic: breadcrumb | ||
next-topic: copyright | ||
related-topics: theme-objects,themes,create-theme | ||
links: | ||
--- | ||
|
||
# Contentpane Theme Object Introduction | ||
|
||
Injects a placeholder where u user with Page Edit Rights can insert DNN Modules(s). | ||
|
||
|
||
**Current Version:** 01.00.00 | ||
|
||
> [!NOTE] | ||
> You can give your panes any name (ID) you want, as long as it's a valid .NET ID | ||
> [!NOTE] | ||
> You have to include at least one Pane with the ID "ContentPane". | ||
## Include in Theme | ||
|
||
### ASCX | ||
``` html | ||
|
||
<div id=”ContentPane” runat=”server” /> | ||
``` | ||
|
||
### HTML Token | ||
[CONTENTPANE] | ||
|
||
### HTML Object Token | ||
``` html | ||
<object id="PaneName" codetype="dotnetnuke/server" codebase="CONTENTPANE"> | ||
``` | ||
|
||
| Attribute | Description | Default | Posssible Values | DNN Version | | ||
| --- | --- | --- | --- | --- | | ||
| ID | The content pane key identifier to be displayed in the user interface and stored in the database.<br/>Remark; "dnn_" will be added in front of the id you set. You should not use this ID to style your pane (the id is not the same in an HTML/ASCX skin and this might change in the future), use the CSS class to style content panes.<br/> | | Valid ID Name | 01.00.00 | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
49 changes: 49 additions & 0 deletions
49
content/tutorials/themes/theme-objects/dotnetnuke/index.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
--- | ||
uid: dotnetnuke | ||
locale: en | ||
title: Dotnetnuke Theme object | ||
dnnversion: 09.02.00 | ||
previous-topic: ddrmenu | ||
next-topic: help | ||
related-topics: theme-objects,themes,create-theme | ||
links: | ||
--- | ||
|
||
# Dotnetnuke Theme Object Introduction | ||
|
||
Displays the Copyright notice for DotNetNuke (not required) | ||
|
||
|
||
**Current Version:** 01.00.00 | ||
|
||
|
||
## Include in Theme | ||
|
||
### ASCX | ||
``` html | ||
<%@ Register TagPrefix="dnn" TagName="DotNetNuke " Src="~/Admin/Skins/dotnetnuke.ascx" %> | ||
<dnn:DotNetNuke runat="server" id="dnnDotnetNuke" /> | ||
``` | ||
|
||
### HTML Token | ||
[DOTNETNUKE] | ||
|
||
### HTML Object Token | ||
``` html | ||
<object id="dnnDOTNETNUKE" codetype="dotnetnuke/server" codebase="DOTNETNUKE"></object> | ||
``` | ||
|
||
| Attribute | Description | Default | Posssible Values | DNN Version | | ||
| --- | --- | --- | --- | --- | | ||
| CssClass | The CSS class of the DotNetNuke Skin Object | SkinObject | "String" | 01.00.00 | | ||
|
||
|
||
|
||
|
||
|
||
## Examples: | ||
|
||
### Default | ||
~~~html | ||
<dnn:DotNetNuke runat="server" id="dnnDotnetNuke" /> | ||
~~~ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
--- | ||
uid: help | ||
locale: en | ||
title: Help Theme object | ||
dnnversion: 09.02.00 | ||
previous-topic: dotnetnuke | ||
next-topic: hostname | ||
related-topics: theme-objects,themes,create-theme | ||
links: | ||
--- | ||
|
||
# Help Theme Object Introduction | ||
|
||
Displays a Help Email link for Users that are logged in. | ||
Either to the Installation Host or The Portal Administrator Email. | ||
|
||
|
||
**Current Version:** 01.00.00 | ||
|
||
|
||
## Include in Theme | ||
|
||
### ASCX | ||
``` html | ||
<%@ Register TagPrefix="dnn" TagName="Help" Src="~/Admin/Skins/Help.ascx" %> | ||
<dnn:Help runat="server" id="dnnHelp" /> | ||
``` | ||
|
||
### HTML Token | ||
[HELP] | ||
|
||
### HTML Object Token | ||
``` html | ||
<object id="dnnHELP" codetype="dotnetnuke/server" codebase="HELP"></object> | ||
``` | ||
|
||
| Attribute | Description | Default | Posssible Values | DNN Version | | ||
| --- | --- | --- | --- | --- | | ||
| CssClass | The CSS class of the Help link | SkinObject | CSS Class String | 01.00.00 | | ||
|
||
|
||
|
||
|
||
|
||
## Examples: | ||
|
||
### Default | ||
~~~html | ||
<dnn:Help runat="server" id="dnnHelp" /> | ||
~~~ |
Oops, something went wrong.