You are here

function xbbcode_filter_process in Extensible BBCode 8

Same name and namespace in other branches
  1. 7 xbbcode.module \xbbcode_filter_process()

Processing callback for the xbbcode filter.

1 string reference to 'xbbcode_filter_process'
xbbcode_filter_info in ./xbbcode.module
Implements hook_filter_info().

File

./xbbcode.module, line 95
The main module file containing hook implementations.

Code

function xbbcode_filter_process($text, $filter, $format) {
  module_load_include('inc', 'xbbcode');
  return _xbbcode_build_filter($filter, $format)
    ->process($text);
}