You are here

function uuid_link_element_info_alter in UUID Link 7

Same name and namespace in other branches
  1. 6 uuid_link.module \uuid_link_element_info_alter()

Implements hook_element_info_alter().

File

./uuid_link.module, line 53
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';
  }
}