function tripal_cv_cv_add_form

2.x tripal_cv.cv_form.inc tripal_cv_cv_add_form($form, &$form_state)
3.x tripal_chado.cv.inc tripal_cv_cv_add_form($form, &$form_state)

Form to add contolled vocabularies

2 string references to 'tripal_cv_cv_add_form'
tripal_chado_menu in tripal_chado/tripal_chado.module
Implements hook_menu().
tripal_cv_menu in legacy/tripal_cv/tripal_cv.module
Implements hook_menu(). Registers all menu items associated with this module

File

tripal_chado/includes/tripal_chado.cv.inc, line 133

Code

function tripal_cv_cv_add_form($form, &$form_state) {

  // add in the form fields to this form
  tripal_cv_add_cv_form_fields($form, $form_state);

  $form['add'] = array(
    '#type' => 'submit',
    '#value' => t('Add'),
    '#weight' => 5,
  );
  return $form;
}