You are here

function theme_geshifield_formatter_default in GeSHi Filter for syntax highlighting 7

Same name and namespace in other branches
  1. 6 geshifield/geshifield.module \theme_geshifield_formatter_default()

File

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

Code

function theme_geshifield_formatter_default($variables) {
  $output = '';
  module_load_include('inc', 'geshifilter', 'geshifilter.pages');
  if (isset($variables['element']['sourcecode'])) {
    $output .= geshifilter_geshi_process($variables['element']['sourcecode'], $variables['element']['language']);
  }
  return $output;
}