Products

Solutions

Resources

Partners

Community

About

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

The Community Blog is a personal opinion of community members and by no means the official standpoint of DNN Corp or DNN Platform. This is a place to express personal thoughts about DNNPlatform, the community and its ecosystem. Do you have useful information that you would like to share with the DNN Community in a featured article or blog? If so, please contact .

The use of the Community Blog is covered by our Community Blog Guidelines - please read before commenting or posting.


Razor Tips and Tricks #4 – Extending the Helpers

On Monday, we launched the Razor DotNetNuke Hackathon with a meeting of SEADUG (Seattle DotNetNuke User Group) held at Microsoft offices in beautiful downtown Bellevue.

For those of you proposing to write Razor “scripts” as part of the Hackathon, I have decided to write a series of short Tips and Tricks.

In this fourth post I will cover how you can go about extending the provided helpers to provide a simpler API for the scripts to consume.

The DotNetNukeWebPage class, which is the base class for all Razor scripts used in DotNetNuke has three additional properties.

Figure 1 – DotNetNukeWebPage Proeprties

   1:  Protected Friend Property Dnn As DnnHelper
   2:  Protected Friend Property Html As HtmlHelper
   3:  Protected Friend Property Url As UrlHelper

In this tip we are going to extend the Dnn property to add an extra method.  The Dnn property is an instance of the DnnHelper class which is defined in the DotNetNuke.Web.Razor library.

Figure 2 - The DnnHelper Class

   1:  Public Class DnnHelper
   2:   
   3:      Private _context As ModuleInstanceContext
   4:   
   5:      Public Sub New(ByVal context As ModuleInstanceContext)
   6:          _context = context
   7:      End Sub
   8:   
   9:      Public ReadOnly Property [Module] As ModuleInfo
  10:          Get
  11:              Return _context.Configuration
  12:          End Get
  13:      End Property
  14:   
  15:      Public ReadOnly Property Tab As TabInfo
  16:          Get
  17:              Return _context.PortalSettings.ActiveTab
  18:          End Get
  19:      End Property
  20:   
  21:      Public ReadOnly Property Portal As PortalSettings
  22:          Get
  23:              Return _context.PortalSettings
  24:          End Get
  25:      End Property
  26:   
  27:      Public ReadOnly Property User As UserInfo
  28:          Get
  29:              Return _context.PortalSettings.UserInfo
  30:          End Get
  31:      End Property
  32:   
  33:  End Class

Imagine that you want to write a script which lists all of the roles on the site. You could use the full DotNetNuke API in your Razor script as shown in Figure 3

Figure 3 – Role List script

RazorTips_01

There is nothing wrong with this – it works.  But what if you could have a much simpler script to do the same task (Figure 4).

Figure 4 – Simplified Role List script

RazorTips_02

For beginner developers who are trying their hand at DotNetNuke development using the Razor Host module, this is much more intuitive.  But GetRoles() is not a member of the DnnHelper class, and I don’t want to modify a core class.  This is where the wonders of Extension methods comes in.  Since C# 3 (or VB 9) which shipped with Visual Studio 2008, we have been able to add functionality to existing classes, without modifying the class directly.

In a separate project, I added a class DnnHelperExtensions, where I defined the following extension method (Figure 5).

Figure 5 – GetRoles Extension Method

   1:  public static class DnnHelperExtensions
   2:  {
   3:      public static List<String> GetRoles(this DnnHelper helper)
   4:      {
   5:          var controller = new RoleController();
   6:          var _roles = new List<String>(controller.GetRoleNames(
   7:                                      helper.Portal.PortalId
   8:                                      ));
   9:   
  10:          return _roles;
  11:      }
  12:  }

This method hides the DotNetNuke complexity from the scripter.   We don’t need to worry about what namespace(s) to include in our script and we don’t care that GetRoleNames needs a PortalId as the helper method takes care of it.

There is one final step that we need to do to get this to work.  We need to add a reference to the Helpers namespace in the web.config file that lives in the RazorModules folder.

Figure 6 – Updating web.config

   1:  <system.web.webPages.razor>
   2:    <pages pageBaseType="DotNetNuke.Web.Razor.DotNetNukeWebPage">
   3:      <namespaces>
   4:        <add namespace="Microsoft.Web.Helpers" />
   5:        <add namespace="WebMatrix.Data" />
   6:        <add namespace="DotNetNuke.Web.Razor.Helpers" />
   7:      </namespaces>
   8:    </pages>
   9:  </system.web.webPages.razor>

In the final release of the Razor Host Module, we will add the DotNetNuke.Web.Razor.Helpers namespace to the web.config included, and we will start to flesh out the DnnHelper class with some more intuitive methods. 

However, if ever ever feel that something is missing you can create your own.  Just make sure that all your helper Extension Methods are in the same namespace and all you will need to do is add the assembly to the bin folder, and they will just work.

Figure 7 – The Resulting Razor Script in Action.

RazorTips_03

This post is cross-posted from my personal blog.

Comments

There are currently no comments, be the first to post one.

Comment Form

Only registered users may post comments.

NewsArchives


Aderson Oliveira (22)
Alec Whittington (11)
Alessandra Daniels (3)
Alex Shirley (10)
Andrew Hoefling (3)
Andrew Nurse (30)
Andy Tryba (1)
Anthony Glenwright (5)
Antonio Chagoury (28)
Ash Prasad (37)
Ben Schmidt (1)
Benjamin Hermann (25)
Benoit Sarton (9)
Beth Firebaugh (12)
Bill Walker (36)
Bob Kruger (5)
Bogdan Litescu (1)
Brian Dukes (2)
Brice Snow (1)
Bruce Chapman (20)
Bryan Andrews (1)
cathal connolly (55)
Charles Nurse (163)
Chris Hammond (213)
Chris Paterra (55)
Clint Patterson (108)
Cuong Dang (21)
Daniel Bartholomew (2)
Daniel Mettler (181)
Daniel Valadas (48)
Dave Buckner (2)
David Poindexter (12)
David Rodriguez (3)
Dennis Shiao (1)
Doug Howell (11)
Erik van Ballegoij (30)
Ernst Peter Tamminga (80)
Francisco Perez Andres (17)
Geoff Barlow (12)
George Alatrash (12)
Gifford Watkins (3)
Gilles Le Pigocher (3)
Ian Robinson (7)
Israel Martinez (17)
Jan Blomquist (2)
Jan Jonas (3)
Jaspreet Bhatia (1)
Jenni Merrifield (6)
Joe Brinkman (274)
John Mitchell (1)
Jon Henning (14)
Jonathan Sheely (4)
Jordan Coopersmith (1)
Joseph Craig (2)
Kan Ma (1)
Keivan Beigi (3)
Kelly Ford (4)
Ken Grierson (10)
Kevin Schreiner (6)
Leigh Pointer (31)
Lorraine Young (60)
Malik Khan (1)
Matt Rutledge (2)
Matthias Schlomann (16)
Mauricio Márquez (5)
Michael Doxsey (7)
Michael Tobisch (3)
Michael Washington (202)
Miguel Gatmaytan (3)
Mike Horton (19)
Mitchel Sellers (40)
Nathan Rover (3)
Navin V Nagiah (14)
Néstor Sánchez (31)
Nik Kalyani (14)
Oliver Hine (1)
Patricio F. Salinas (1)
Patrick Ryan (1)
Peter Donker (54)
Philip Beadle (135)
Philipp Becker (4)
Richard Dumas (22)
Robert J Collins (5)
Roger Selwyn (8)
Ruben Lopez (1)
Ryan Martinez (1)
Sacha Trauwaen (1)
Salar Golestanian (4)
Sanjay Mehrotra (9)
Scott McCulloch (1)
Scott Schlesier (11)
Scott Wilkinson (3)
Scott Willhite (97)
Sebastian Leupold (80)
Shaun Walker (237)
Shawn Mehaffie (17)
Stefan Cullmann (12)
Stefan Kamphuis (12)
Steve Fabian (31)
Steven Fisher (1)
Tony Henrich (3)
Torsten Weggen (3)
Tycho de Waard (4)
Vicenç Masanas (27)
Vincent Nguyen (3)
Vitaly Kozadayev (6)
Will Morgenweck (40)
Will Strohl (180)
William Severance (5)
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out