123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <?php
- require_once 'includes/tripal_views_setup.admin.inc';
- function tripal_views_setup_menu(){
- $items = array();
- $items['admin/tripal/tripal_views_setup'] = array(
- 'title' => t('Tripal Views Setups'),
- 'description' => t('Tripal Views Setups settings page, allows you to select and create materialized views and chado tables to use for searches.'),
- 'page callback' => 'drupal_get_form',
- 'page arguments' => array('tripal_views_setup_admin_form'),
-
- 'access arguments' => array('access administration pages'),
- 'type' => MENU_NORMAL_ITEM,
- );
-
- $items['admin/tripal/tripal_views_setup_new'] = array(
- 'title' => 'Create New Views Setup',
- 'page callback' => 'drupal_get_form',
- 'page arguments' => array('tripal_views_setup_new_setup_form'),
- 'access arguments' => array('access administration pages'),
- 'type' => MENU_NORMAL_ITEM,
- );
- $items['admin/tripal/tripal_views_setup/ajax/mview_cols'] = array(
- 'title' => 'Get MView Columns',
- 'page callback' => 'tripal_view_setup_ajax_mview_cols',
- 'access arguments' => array('access administration pages'),
- 'type' => MENU_CALLBACK,
- );
- $items['admin/tripal/tripal_views_setup/ajax/field_col_join'] = array(
- 'title' => 'Get Join Columns',
- 'page callback' => 'tripal_view_setup_ajax_field_col_join',
- 'access arguments' => array('access administration pages'),
- 'type' => MENU_CALLBACK,
- );
-
-
-
-
-
-
-
-
-
-
-
-
- return $items;
- }
- function tripal_views_setup_theme(){
- $theme = array();
- $theme['tripal_views_setup_new_setup_form'] = array(
- 'arguments' => array('form' => NULL),
- 'template' => 'tripal_views_setup_fields_form',
- );
- return $theme;
- }
|