function hook_vocab_import_form

3.x tripal.terms.api.inc hook_vocab_import_form($form, &$form_state)

Provides a form for importing vocabularies and their terms.

Tripal allows for vocabularies to be stored separately from the biological data. This hook allows the default term storage backend to provide an approprite form for importing ontologies (either in OBO or OWL format).

_state

Parameters

$form:

Related topics

1 function implements hook_vocab_import_form()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

tripal_chado_vocab_import_form in tripal_chado/includes/tripal_chado.vocab_storage.inc
Implements hook_vocab_import_form();

File

tripal/api/tripal.terms.api.inc, line 114
Provides an application programming interface (API) for working with controlled vocaublary terms.

Code

function hook_vocab_import_form($form, &$form_state) {
  return $form;
}