-
Notifications
You must be signed in to change notification settings - Fork 8
/
OpenUrlRewriterModuleBase.cs
28 lines (25 loc) · 1.14 KB
/
OpenUrlRewriterModuleBase.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
/*
' Copyright (c) 2012 DotNetNuke Corporation
' All rights reserved.
'
' THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
' TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
' THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
' CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
' DEALINGS IN THE SOFTWARE.
'
*/
namespace DotNetNuke.Modules.OpenUrlRewriter
{
/// <summary>
/// This base class can be used to define custom properties for multiple controls.
/// An example module, DNNSimpleArticle (http://dnnsimplearticle.codeplex.com) uses this for an ArticleId
///
/// Because the class inherits from PortalModuleBase, properties like ModuleId, TabId, UserId, and others,
/// are accessible to your module's controls (that inherity from OpenUrlRewriterModuleBase
///
/// </summary>
public class OpenUrlRewriterModuleBase : DotNetNuke.Entities.Modules.PortalModuleBase
{
}
}