function geshifield_element_info in GeSHi Filter for syntax highlighting 7
Implementation of hook_elements_info().
File
- geshifield/
geshifield.module, line 87 - Defines a CCK field for source code with GeSHi syntax highlighting.
Code
function geshifield_element_info() {
$elements = array(
'geshifield_textarea' => array(
'#input' => TRUE,
'#process' => array(
'geshifield_textarea_process',
),
),
);
return $elements;
}