function html5_tools_element_info_alter in HTML5 Tools 7
Implements hook_element_info_alter().
File
- ./
html5_tools.module, line 23
Code
function html5_tools_element_info_alter(&$type) {
if (module_exists('link') && !empty($type['link_field'])) {
$type['link_field']['#process'][] = '_html5_tools_link_field_process';
}
}