function uuid_link_form_alter in UUID Link 6
Post render callback. Load javascript files and set module settings.
File
- ./
uuid_link.module, line 67 - Provides a filter and UI for adding links to entities that are not affected by changes in URL alias.
Code
function uuid_link_form_alter(&$form, $form_state, $form_id) {
drupal_set_message($form_id);
if (substr($form_id, -9) == 'node_form') {
$form['#after_build'][] = 'uuid_link_form_post_build';
}
}