You are here

function nodeformsettings_element_info_alter in Node and Comments Form Settings 7.2

Same name and namespace in other branches
  1. 7.3 nodeformsettings.module \nodeformsettings_element_info_alter()

Implements hook_element_info_alter().

File

./nodeformsettings.module, line 290

Code

function nodeformsettings_element_info_alter(&$type) {
  if (isset($type['text_format']['#process'])) {
    foreach ($type['text_format']['#process'] as &$callback) {
      if ($callback === 'filter_process_format') {
        $callback = 'nodeformsettings_process_format';
      }
    }
  }
}