You are here

function theme_geshifield_formatter_nohighlighting in GeSHi Filter for syntax highlighting 6

Same name and namespace in other branches
  1. 7 geshifield/geshifield.module \theme_geshifield_formatter_nohighlighting()

File

geshifield/geshifield.module, line 251
Defines a CCK field for source code with GeSHi syntax highlighting.

Code

function theme_geshifield_formatter_nohighlighting($element) {
  $output = '';
  module_load_include('inc', 'geshifilter', 'geshifilter.pages');
  if (isset($element['#item']['sourcecode'])) {
    $output .= geshifilter_geshi_process($element['#item']['sourcecode'], 'text');
  }
  return $output;
}