function tripal_cv_show_browser

1.x trees.inc tripal_cv_show_browser()

Renders the cv_list form

Related topics

1 string reference to 'tripal_cv_show_browser'
tripal_cv_menu in tripal_cv/tripal_cv.module
Implements hook_menu(). Registers all menu items associated with this module

File

tripal_cv/includes/trees.inc, line 13
@todo Stephen describe this file

Code

function tripal_cv_show_browser() {

  $content = drupal_get_form('tripal_cv_list_form');
  $content .= "
    <div id=\"cv_browser\"></div>
  ";

  return $content;
}