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!

ModuleSearchBase

Return to previous page

  • 4/7/2015
  • 8449 Views

Comments

8449 Views

ModuleSearchBase

Last updated 8 years ago

Comments

Common

(Enter the content of this article below)

Advanced

 

In order to integrate the content in your custom module with DNN's search index, inherit from the ModuleSearchBase abstract base class in the Business Controller Class for your module.
Example from the HTMLText module

public class HtmlTextController : ModuleSearchBase, IPortable, IUpgradeable
...

Implement (just one) method: GetModifiedSearchDocuments, to return a list of SearchDocuments. This implementation only has to deal with content modified since the last call to GetModifiedSearchDocuments. So an incremental search has to be implemented.

Example (from the HTMLText module), where the beginTime is the start of the added, modified or deleted content

public override IList<SearchDocument> GetModifiedSearchDocuments(ModuleInfo modInfo, DateTime beginDate)
{
    ...
    var searchDocuments = new List<SearchDocument>();
    ...
    searchDocuments.Add(searchDoc);
    ....
    return searchDocuments;
}

In the manifest file for the module, you must provide “Searchable” as one of the SupportedFeatures. Example:

<supportedFeatures>
    <supportedFeature type="Portable" />
    <supportedFeature type="Searchable" />
    <supportedFeature type="Upgradeable" />
</supportedFeatures>
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out