Perform alterations on filter definitions.
$info: Array of information on filters exposed by hook_filter_info() implementations.
function hook_filter_info_alter(&$info) {
// Replace the PHP evaluator process callback with an improved
// PHP evaluator provided by a module.
$info['php_code']['process callback'] = 'my_module_php_evaluator';
// Alter the default settings of the URL filter provided by core.
$info['filter_url']['default settings'] = array(
'filter_url_length' => 100,
);
}