function tripal_pub_sync_form

1.x pub_sync.inc tripal_pub_sync_form()
1 string reference to 'tripal_pub_sync_form'
tripal_pub_menu in tripal_pub/tripal_pub.module
Tripal-Publication-Menu

File

tripal_pub/includes/pub_sync.inc, line 5

Code

function tripal_pub_sync_form() {

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



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

  return $form;
}