You are here

function _codefilter_escape_php_tag in Code Filter 6

Callback to replace <?php ?>, [?php ?], <% %>, and [% %] elements.

1 string reference to '_codefilter_escape_php_tag'
codefilter_filter in ./codefilter.module
Implementation of hook_filter()

File

./codefilter.module, line 119

Code

function _codefilter_escape_php_tag($matches) {
  return codefilter_escape($matches[2], 'php');
}