function uuid_link_element_info_alter in UUID Link 6
Same name and namespace in other branches
- 7 uuid_link.module \uuid_link_element_info_alter()
Implements hook_element_info_alter().
File
- ./
uuid_link.module, line 50 - Provides a filter and UI for adding links to entities that are not affected by changes in URL alias.
Code
function uuid_link_element_info_alter(&$type) {
if (!empty($type['text_format'])) {
$type['form']['#post_render'][] = 'uuid_link_form_post_render';
}
}