function tripal_custom_table_new_page

2.x tripal_core.custom_tables.inc tripal_custom_table_new_page()
3.x tripal_chado.custom_tables.inc tripal_custom_table_new_page()

Renders the tripal_custom_tables_form.

1 string reference to 'tripal_custom_table_new_page'
tripal_chado_menu in tripal_chado/tripal_chado.module
Implements hook_menu().

File

tripal_chado/includes/tripal_chado.custom_tables.inc, line 46
Contains functions for creating, editing and deleting custom tables on the Tripal website.

Code

function tripal_custom_table_new_page() {

  $form = drupal_get_form('tripal_custom_tables_form');
  return drupal_render($form);
}