You are here

function _codefilter_process_php_callback in Code Filter 7

Callback to replace content of the <?php ?> elements.

1 string reference to '_codefilter_process_php_callback'
_codefilter_process in ./codefilter.module
Implements hook_filter_FILTER_process().

File

./codefilter.module, line 28
Text filter for highlighting PHP source code.

Code

function _codefilter_process_php_callback($matches) {
  return codefilter_process_php($matches[1]);
}