function link_scanner_field_suffix_alter in Search and Replace Scanner 7
Implements hook_scanner_field_suffix_alter().
File
- ./
scanner.module, line 1468 - Search and Replace Scanner - works on all nodes text content.
Code
function link_scanner_field_suffix_alter(&$suffix, $map) {
// Performed on behalf of link.module.
if (isset($map['module']) && $map['module'] == 'link') {
$suffix = 'title';
}
}