22

I am currently exporting Drupal data to an external source (XML) programmatically. However, I want the data to run through the site's default Input Format (the filter that runs before user content is displayed on the website) before being written to file.

How do I programmatically apply a Drupal input filter? Is there a specific function call or hook for this purpose? If so, links/advice would be most appreciated.

ford
  • 1,749
  • 2
  • 19
  • 36

1 Answers1

27

You are looking for check_markup (D6), check_markup (D7)

Nux
  • 7,204
  • 5
  • 47
  • 62
googletorp
  • 32,389
  • 15
  • 62
  • 81
  • The question is about input filter, not input format. Input format consists of filters and `check_markup()` works with formats, not filters. – Alex Skrypnyk Feb 01 '16 at 06:37