Jul 29, 2014

DotNetNuke - ver 6 for Developers - quick start

It's hard to google out consistent and encompassing info when learning DNN module development so here is one :

http://www.dnnsoftware.com/wiki/page/dotnetnuke-6-2-developer-quick-start

https://www.packtpub.com/article/understanding-dotnetnuke-core-architecture-1

http://www.dnnsoftware.com/community-blog/cid/134683/authorization-in-the-new-dnn-services-framework

Jul 4, 2014

Publications / Magazine / NDC magazine

http://issuu.com/developermagazine/docs

DotNetNuke / module development / manifest

When developing DNN module extensions in your Visual Studio DNN Module project template there is manifest of your module with extension DNN.
Here is more:

http://www.dnnsoftware.com/wiki/page/manifests

Excerpts:

It should also be made known that each package equals one extension that can be managed in the DotNetNuke Extensions module, where they are grouped by extension type.


Although DNN does not expose a way to take a dependency on a particular .NET framework version, this can easily be emulated by taking a type dependency on a class that does not exist in prior framework versions. For example, to require .NET 4 as a precondition to installation, one may depend instead on the System.Tuple class (which was introduced with .NET 4.0):

<dependency type="type">System.Tuple</dependency>

There are a few things to be aware of when installing multiple packages within a single install (and thus, using a single manifest). First, packages are installed in the order they are declared in the manifest file (top to bottom). . This means, if you are installing a skin extension that also contains a skin object, you need the skin object to be installed prior to the skin being installed (thus, placing the skin object package towards the top, above the skin package). In this example, the skin object was used by the skin being installed and therefore it needed to be available prior to the skin being installed (otherwise, the skin object would not be rendered properly).