function tripal_contact_sync_form

1.x contact_sync.inc tripal_contact_sync_form()
1 string reference to 'tripal_contact_sync_form'
tripal_contact_menu in tripal_contact/tripal_contact.module
Tripal-contact-Menu

File

tripal_contact/includes/contact_sync.inc, line 5

Code

function tripal_contact_sync_form() {

  $form['sync_all'] = array(
    '#type' => 'item',
    '#value' => t('Syncing a contact will create a Drupal page for every contact record in the Chado database. Click the button below to sync all contacts in Chado that currently are not already synced with Drupal.'),
  );

  $form['submit'] = array(
    '#type' => 'submit',
    '#weight' => 10,
    '#value' => t('Sync contacts')
  );

  return $form;
}