function commerce_message_element_info_alter in Commerce Message 7
File
- ./
commerce_message.module, line 127
Code
function commerce_message_element_info_alter(&$type) {
// Our process callback must run immediately after filter_process_format().
$filter_process_format_location = array_search('filter_process_format', $type['text_format']['#process']);
$replacement = array(
'filter_process_format',
'commerce_message_filter_process_format',
);
array_splice($type['text_format']['#process'], $filter_process_format_location, 1, $replacement);
}