function chado_analysis_chado_node_sync_form

2.x tripal_analysis.chado_node.inc chado_analysis_chado_node_sync_form($form, &$form_state)
3.x tripal_analysis.chado_node.inc chado_analysis_chado_node_sync_form($form, &$form_state)

Implements hook_chado_node_sync_form()

File

tripal_analysis/includes/tripal_analysis.chado_node.inc, line 45
Implements Drupal Node hooks to create the chado_analysis node content type.

Code

function chado_analysis_chado_node_sync_form($form, &$form_state) {
  if (array_key_exists('sync', $form) and array_key_exists('ids', $form['sync'])) {
    $form['sync']['ids']['#prefix'] .= t('Please note that if analyses exist
      that were created by other Tripal modules (e.g. Tripal Analysis Blast)
      then you should sync those using that module\'s sync interface. Otherwise
      they may not have all of the proper functionality.');
  }
  return $form;
}