23

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,839
  • 3
  • 20
  • 38

1 Answers1

28

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

Nux
  • 9,276
  • 5
  • 59
  • 72
googletorp
  • 33,075
  • 15
  • 67
  • 82
  • 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