DNN Forums

Ask questions about your website to get help learning DNN and help resolve issues.

DNN 9.1.1 and Site Setting

 4 Replies
 0 Subscribed to this topic
 26 Subscribed to this forum
Sort:
Author
Messages
New Around Here
Posts: 26
New Around Here

Hi, I've a DNN site. Current is v9.1.1, started is 8.0.3

I developed custom modules and I add some custom setting inside Module Settings Tab (https://invisiblefarm-my....l_zlQtx0zg?e=6WDx3t)

I used this code

                ModuleController moduleController = new ModuleController();
                PortalSettings portalSettings = (PortalSettings)HttpContext.Current.Items["PortalSettings"];
                ModuleInfo moduleInfo = moduleController.GetModuleByDefinition(portalSettings.PortalId, "Site Settings");
                int GlobalId = moduleInfo.ModuleID;
                Hashtable globalSettings = moduleController.GetModuleSettings(GlobalId);
                if (globalSettings.Contains(key))
                    return globalSettings[key].ToString();
                else
                    return _default;

to open Settings Module

I notice, with v9.1.1, var moduleInfo is always NULL because "Site Settings" isn't in DB (table ModuleDefinitions): what'is the workaround?

Thanks

 

Veteran Member
Posts: 1246
Veteran Member
MVP
MVP
You're an MVP!
Take a look at Chris Hammond's templates (christoc.com) for building modules and you'll see examples of how to do this.
New Around Here
Posts: 26
New Around Here

Thanks Joe, I'll look the tutorial ASAP!

 Which one in particular?

New Around Here
Posts: 26
New Around Here

Hi Joe,

I watched tutorials like you suggested but I didn't find the solution at my problem.

With the code I had posted, I obtain this globalSettings hashtable (this is my module settings)

Count = 4
    ["max_anno"]: "2019"
    ["west_nile_search_url"]: "/cerca"
    ["search_url"]: "/../../cerca"
    ["min_anno"]: "2017"

With DNN 9.1.0, moduleController.GetModuleByDefinition(portalSettings.PortalId, "Site Settings") always return NULL value: why? Is there an alternative? Consider that this method is in an abstract class that is used a in my code by module Settings class

Thanks

 
Veteran Member
Posts: 1246
Veteran Member
MVP
MVP
You're an MVP!
Not a tutorial, but Chris' templates.

These Forums are for the discussion of the open source CMS DNN platform and ecosystem.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. If you have (suspected) security issues, please DO NOT post them in the forums but instead follow the official DNN security policy
  2. No Advertising. This includes the promotion of commercial and non-commercial products or services which are not directly related to DNN.
  3. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  4. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  5. No Flaming or Trolling.
  6. No Profanity, Racism, or Prejudice.
  7. Site Moderators have the final word on approving / removing a thread or post or comment.
  8. English language posting only, please.

Would you like to help us?

Awesome! Simply post in the forums using the link below and we'll get you started.

Get Involved