U bent hierBloggggg > Dotnetnuke stuff
 Overriding some module settings

When you developing a module, you sometimes need to override some module settings.
Here is how you can do this.

I think you should use these in the Page_Init part of your code for this to work.

For example. if you want to hide the print icon, you can use:

 

Me.ModuleConfiguration.DisplayPrint = False

And there is alot of other stuff you can set like:

DisplaySyndicate - for showing or hiding the Syndicate icon
DisplayTitle - for showing or hiding the title
ModuleTitle - for setting the title
AuthorizedEditRoles - which roles can edit
AuthorizedViewRoles - which roles can view
IconFile - set the icon for the module
etc...


Terug