function tripal_project_add_cvterms

2.x tripal_project.install tripal_project_add_cvterms()
3.x tripal_project.install tripal_project_add_cvterms()
1.x tripal_project.install tripal_project_add_cvterms()
2 calls to tripal_project_add_cvterms()
tripal_project_install in tripal_project/tripal_project.install
Implementation of hook_install().
tripal_project_update_6000 in tripal_project/tripal_project.install
Update for Drupal 6.x, Tripal 1.0 This update

File

tripal_project/tripal_project.install, line 75
This file contains all the functions which describe and implement drupal database tables needed by this module. This module was developed by Chad N.A. Krilow and Lacey-Anne Sanderson, University of Saskatchewan.

Code

function tripal_project_add_cvterms() {

  // Insert cvterm 'library_description' into cvterm table of chado
  // database. This CV term is used to keep track of the library
  // description in the libraryprop table.
  tripal_cv_add_cvterm(array('name' => 'project_description', 'def' => 'Description of a project'), 
  'tripal', 0, 1, 'tripal');
}