Global data processing

You can use the global data processing framework to process all data that is sent to the database. You can use it to define data processors, which are then used to track or modify the database entities upon their creation or modification.

The following sample creates simple text sanitizer that removes obscene words from a news content:

  1. Create a new type that inherits ProcessorBase and implement IDataProcessor,using the following code sample:
  2. In Sitefinity CMS backend, navigate to Administration » Settings » Advanced.
  3. In the left pane, expand Data » Data Processors and click Create new.
  4. In the Type field enter the FullClrName of the processor implementation. 
    In this example, enter WebApp.ObsceneWordsSanitizerProcessor
  5. Save your changes.

RESULT: All the obscene words that you have defined in the processor will be censored. You can also implement more complex logic. Have in mind that this would slow down your save operation for the relevant content item.

Want to learn more?

Sign up for our free beginner training. Boost your credentials through advanced courses and certification.
Register for Sitefinity training and certification.

Was this article helpful?

Next article

Frontend login page