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.

Related topics

1 string reference to 'tripal_custom_table_new_page'
tripal_core_menu in tripal_core/tripal_core.module
Implements hook_menu(). Defines all menu items needed by Tripal Core

File

tripal_core/includes/tripal_core.custom_tables.inc, line 59
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);
}