Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

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!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeArchived Discus...Archived Discus...Developing Under Previous Versions of .NETDeveloping Under Previous Versions of .NETASP.Net 2.0ASP.Net 2.0Replace ManageTabs.ascxReplace ManageTabs.ascx
Previous
 
Next
New Post
3/26/2009 10:21 AM
Accepted Answer 

Yes this is my concern. Ok thanks all, I guess there is not a neat solution to this problem.

 
New Post
3/26/2009 11:19 AM
 

In my experience, the database is a fairly safe bet (especially a central table like ModuleControls).  That being said, we might as well go through the API rather than through SQL.  For some reason I was thinking that SQL was the way to go, but there is an API over that table, so we might as well use it.

It'll look something like this:

ArrayList manageTabsControls = ModuleControlController.GetModuleControlsByKey("Tab", Null.NullInteger);
if (manageTabsControls == null || manageTabsControls.Count != 1)
{
    throw new InvalidOperationException("There is craziness!");
}

ModuleControlInfo manageTabsControl = (ModuleControlInfo)manageTabsControls[0];
manageTabsControl.ControlSrc = "DesktopModules/ModuleFolder/ModuleControl.ascx";
ModuleControlController.UpdateModuleControl(manageTabsControl);

This should work in DNN 4.5+.  If you're compiling against DNN 5, you should be able to use ModuleControlController.GetModuleControlByControlKey, which will just return a straight ModuleControlInfo, so you don't have to mess with casting and checking the ArrayList.

Hope that helps,


Brian Dukes
Engage Software
St. Louis, MO
866-907-4002
DNN partner specializing in custom, enterprise DNN development.
 
New Post
3/26/2009 11:30 AM
 

Ok thanks Brian, so we're still going down the same route of changing the user control path for the Tab management functionality, only now we're doing it through the DNN API.

I assume this could be added to a method called during DNN upgrade, so the path is set correctly should the DNN install overwrite our change?

 
New Post
3/26/2009 2:12 PM
 

I don't know of a built-in way to tie that code in with the DNN upgrade process.

There is a possible workaround that we've come up with, however.  When you install/upgrade your site, module packages in the Install/Module folder of the site are run.  So, if you were able to keep a copy of your module's package in that folder, then it should get run on each upgrade.

Hope that helps,


Brian Dukes
Engage Software
St. Louis, MO
866-907-4002
DNN partner specializing in custom, enterprise DNN development.
 
Previous
 
Next
HomeHomeArchived Discus...Archived Discus...Developing Under Previous Versions of .NETDeveloping Under Previous Versions of .NETASP.Net 2.0ASP.Net 2.0Replace ManageTabs.ascxReplace ManageTabs.ascx


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

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

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. 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.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out